I am trying to get the peer-list: list of IP addresses from a torrent tracker
Similar to the question here: how to get the peer list from torrent tracker response
I wrote code which decodes the torrent files using the python bencode Bit-torrent library I wrote code following this code here to scrape torrent tracker.
At least for http request like to mininova tracker I get the following output for a specific info_hash
{'files': {'\xbf\xff&\xcdY\x05\x9b\xb2C2j\x83\xf5F_\x9bg\x9d\xe2G': {'downloaded': 25416, 'complete': 12, 'incomplete': 0}}}
I do not see any of the other keys that the BitTorrent documents here in the spec. (like tracker_id, min_interval, peers ...etc)
How can I get the peer list?