I have a list of torrent info_hashes. For each info_hash, I have a list of trackers that correspond with that info_hash.
What I would like to do is scrape each tracker in the list to get the seeder/leecher/completed count. However, i'd rather not attempt to write this myself as i'm sure this code has been implemented elsewhere
Does anyone know of a python library that can scrape http:// and udp:// trackers?
I have been using libtorrent for other parts of this project, however it can only scrape a tracker from a valid torrent_handle (and I dont want to have to add these info_hashes to a libtorrent session in order to scrape the tracker because it will start downloading the files which I dont want)