home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / bin / bttrack.bittorrent < prev    next >
Encoding:
Text File  |  2006-07-20  |  190 b   |  11 lines

  1. #!/usr/bin/python
  2.  
  3. # Written by Bram Cohen
  4. # see LICENSE.txt for license information
  5.  
  6. from sys import argv
  7. from BitTorrent.track import track
  8.  
  9. if __name__ == '__main__':
  10.     track(argv[1:])
  11.