Sha256: 022e4b21d54a4926f4a916372f43a0f88a0200d4ff077caae926251b119636c6

Contents?: true

Size: 1010 Bytes

Versions: 3

Compression:

Stored size: 1010 Bytes

Contents

# Copyright 2010 Twitter, Inc.
# Copyright 2010 Larry Gadea <lg@twitter.com>
# Copyright 2010 Matt Freels <freels@twitter.com>
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Usage: python murder_tracker.py <optionalparams>
# Usage: python murder_tracker.py

import warnings
warnings.filterwarnings('ignore', category=DeprecationWarning)

from BitTornado.BT1.track import track
from sys import argv

if __name__ == '__main__':
  args = ["--dfile", "data",
          "--port", "8998"] + argv[1:]
  track(args)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
murder-0.1.2 dist/murder_tracker.py
murder-0.1.1 dist/murder_tracker.py
murder-0.1.0 dist/murder_tracker.py