• This repository has been archived on 14/Jan/2018
  • Stars
    star
    307
  • Rank 135,265 (Top 3 %)
  • Language
    Python
  • Created about 14 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple, clean, and efficient BitTorrent library, written entirely in Python.

python-bittorent

python-bittorent is a BitTorrent library, written entirely in Python. It aims to be simple, clean, and efficient.

Dependencies: (obviously) python, nose for testing. Also, as a final note, python-bittorent is very much alpha software right now.

bittorrent.py

This module aims to make it incredibly simple to incorporate the BitTorrent protocol into your program.

To run a Bittorrent tracker from within your application: from bittorrent import Tracker tracker = Tracker() tracker.run() and you're done!