Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

fake-tracker.py 271B

1234567891011
  1. #! /usr/bin/env python
  2. import torrentfile
  3. import torrententry
  4. for file in ('torrent.torrent', 'torrent2.torrent'):
  5. torrent = torrentfile.TorrentFile()
  6. torrent.readFile(file)
  7. print torrent.getSize()
  8. print torrent.getTracker()
  9. print torrent.getHash()