Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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()