Full implementation of the BitTorrent mainline DHT
Project description
pythonTorrentDHT
A Python implementation of the BitTorrent Distributed Hash Table, extending nitmir/btdht with additional BEP support.
Overview
pythonTorrentDHT provides a full Python implementation of the BitTorrent mainline DHT. It is a natural evolution of nitmir/btdht, modernised for Python 3.10+ (pure Python, no Cython) and extended with additional BitTorrent Enhancement Proposals:
| BEP | Description |
|---|---|
| BEP 5 | BitTorrent DHT Protocol — core routing table, get_peers, announce_peer |
| BEP 9 | Extension for Peers to Send Metadata Files — fetch .torrent info-dicts without a tracker |
| BEP 10 | Extension Protocol — peer capability negotiation (required by BEP 9) |
| BEP 51 | DHT Infohash Indexing — sample_infohashes for crawling the DHT |
Requirements
No C compiler required.
Installation
pip install pythontorrentdht
Or from source:
git clone https://github.com/Sprooty/pythonTorrentDHT
cd pythonTorrentDHT
pip install -e .
Usage
Find peers for a torrent
import btpydht
import binascii
dht = btpydht.DHT()
dht.start() # allow ~15s to bootstrap
peers = dht.get_peers(binascii.a2b_hex("0403fb4728bd788fbcb67e87d6feb241ef38c75a"))
print(peers)
# [('81.171.107.75', 17744), ('94.242.250.86', 3813), ...]
dht.stop()
Fetch torrent metadata (BEP 9/10)
Retrieve the info-dict directly from a peer without a .torrent file:
from btpydht.metadata import get_metadata
info_hash = binascii.a2b_hex("0403fb4728bd788fbcb67e87d6feb241ef38c75a")
peers = dht.get_peers(info_hash)
metadata = get_metadata(info_hash, peers[0])
print(metadata[b"name"])
Sample infohashes from the DHT (BEP 51)
Walk the DHT and collect infohashes being announced:
class CrawlerDHT(btpydht.DHT_BASE):
def on_sample_infohashes_response(self, response):
for ih in response.get(b"samples", []):
print(ih.hex())
dht = CrawlerDHT()
dht.start()
Announce a torrent
info_hash = binascii.a2b_hex("0403fb4728bd788fbcb67e87d6feb241ef38c75a")
dht.announce_peer(info_hash, port=6881)
Extend with custom message handlers
Subclass btpydht.DHT_BASE and override on_<msg>_query / on_<msg>_response:
class MyDHT(btpydht.DHT_BASE):
def on_get_peers_query(self, query):
print(f"Peer request for: {query[b'info_hash'].hex()}")
dht = MyDHT()
dht.register_message(b"get_peers")
dht.start()
Save and restore routing table state
dht.save("routing_table.dat")
# later...
dht.load("routing_table.dat")
Development
pip install -r requirements-dev.txt
make test
Or run pytest directly:
python -m pytest tests/ -v
License
GPLv3 — see LICENSE for details.
Credits
Originally created by Valentin Samir.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pythontorrentdht-1.0.3.tar.gz.
File metadata
- Download URL: pythontorrentdht-1.0.3.tar.gz
- Upload date:
- Size: 70.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cbc4a3ce75a402cc40c14d539b18e90401cca039311cddd99f31480b3b33a05
|
|
| MD5 |
881b41351e758a8753e5eb93397f8bb1
|
|
| BLAKE2b-256 |
bbaaa92a3d3673624f6ce4befcdcf446cc995c007be3d2e950cd14a882c8829c
|
Provenance
The following attestation bundles were made for pythontorrentdht-1.0.3.tar.gz:
Publisher:
publish.yml on Sprooty/pythonTorrentDHT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pythontorrentdht-1.0.3.tar.gz -
Subject digest:
6cbc4a3ce75a402cc40c14d539b18e90401cca039311cddd99f31480b3b33a05 - Sigstore transparency entry: 1108908600
- Sigstore integration time:
-
Permalink:
Sprooty/pythonTorrentDHT@993edacbcc3a4ec4d050af1d54f76c90ece6727f -
Branch / Tag:
refs/tags/1.0.3 - Owner: https://github.com/Sprooty
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@993edacbcc3a4ec4d050af1d54f76c90ece6727f -
Trigger Event:
release
-
Statement type:
File details
Details for the file pythontorrentdht-1.0.3-py3-none-any.whl.
File metadata
- Download URL: pythontorrentdht-1.0.3-py3-none-any.whl
- Upload date:
- Size: 74.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b622f42e3c6ca0a33a55e449cb96031efd83f20e1f6e25bb6da69400bdcad57a
|
|
| MD5 |
89570b2223e45631e0ec943c18f4a652
|
|
| BLAKE2b-256 |
c871f0f68e259b949ff8775117eebc06be8cdc453a3e62274770abb30dcac25c
|
Provenance
The following attestation bundles were made for pythontorrentdht-1.0.3-py3-none-any.whl:
Publisher:
publish.yml on Sprooty/pythonTorrentDHT
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pythontorrentdht-1.0.3-py3-none-any.whl -
Subject digest:
b622f42e3c6ca0a33a55e449cb96031efd83f20e1f6e25bb6da69400bdcad57a - Sigstore transparency entry: 1108908636
- Sigstore integration time:
-
Permalink:
Sprooty/pythonTorrentDHT@993edacbcc3a4ec4d050af1d54f76c90ece6727f -
Branch / Tag:
refs/tags/1.0.3 - Owner: https://github.com/Sprooty
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@993edacbcc3a4ec4d050af1d54f76c90ece6727f -
Trigger Event:
release
-
Statement type: