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.

display-torrent.py 205B

1234567891011
  1. #! /usr/bin/env python
  2. import sys
  3. import bencode
  4. torrentIn = sys.argv[1]
  5. with open(torrentIn, 'rb') as f:
  6. bencoded = f.read()
  7. data = bencode.bdecode(bencoded)
  8. data['info']['pieces'] = []
  9. print(data)