You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- #! /usr/bin/env python
-
- import torrentfile
- import torrententry
-
- for file in ('torrent.torrent', 'torrent2.torrent'):
- torrent = torrentfile.TorrentFile()
- torrent.readFile(file)
- print torrent.getSize()
- print torrent.getTracker()
- print torrent.getHash()
|