BitTornado library forked by me on GitHub

I just forked and committed some patches to the BitTornado library on GitHub.

https://github.com/charlesnagy/BitTornado

Right now I only committed basic fixes to be able to use it in our environment (Python 2.7). Namely:

  • Backlog was not always int which should be enforced so I did a force it and have put the related code part in try except to catch the TypeErrors if any occurs.
  • There was a straightforward fix for a wrongly named package in an import statement.
  • And finally an except had the old format which is not supported by newer versions of Python.

 

You might like these too

Useful python – Class based decorators and c... There are many things why Pyhton is my standard go-to language if it comes to implement something. It's either a website, automation, data-mining or c...
Priority queue in Redis aka ZPOP Redis list is great to use it as a processing queue. So great that it sort of became the standard and many people using that instead of dedicated queu...
Stream cypher (encrypt) with digital envelope in P... Generating. storing and keeping inventory of hundreds of terabyte large database backups is a challenge by itself which we do on daily basis. It's eve...