Skip to main content

An implementation of Bencode encoding in Python 3

Project description

An implementation of Bencode encoding in Python 3

Usage

import bencode
bencode.encode(OrderedDict((1, 2), (b'eggs', b'spam')))
bencode.decode(b'i3e')

Type mapping for encoding:

Bencode type

Python type

Dictionary

OrderedDict

List

list

Byte string

bytes

Integer

int

Type mapping for decoding:

Python type

Bencode type

dict

Dictionary

list or tuple

List

bytes

Byte string

int

Integer

If OrderedDict is passed instead of plain dict, the order will be preserved.

Compact peer encoding

This package also includes functions for ‘compact’ peer encoding as per bep 0023. Though not part of bencode itself, compact peer encoding is often used with it. Mainline DHT and most trackers encode peer information in this format.

Usage:

from bencode.misc import pack_compact_peers_list, unpack_compact_peers_list

pack_compact_peers_list((('127.0.0.1', 8080), ('127.0.0.1', 9090)))
b'\x7f\x00\x00\x01\x1f\x90\x7f\x00\x00\x01#\x82'

unpack_compact_peers_list(b'\x7f\x00\x00\x01\x1f\x90\x7f\x00\x00\x01#\x82')
(('127.0.0.1', 8080), ('127.0.0.1', 9090))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torrent-bencode-0.2.tar.gz (2.9 kB view details)

Uploaded Source

File details

Details for the file torrent-bencode-0.2.tar.gz.

File metadata

  • Download URL: torrent-bencode-0.2.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.2

File hashes

Hashes for torrent-bencode-0.2.tar.gz
Algorithm Hash digest
SHA256 bd04f8116776271ba007e151418276301226fb6978284bc0e20f4c55d784ca10
MD5 f3b1092af74415ffdd9492b25fb85123
BLAKE2b-256 dede9c6b868a63c0fca362bfa47a345c5161d2b6d2f3bf450d9862a66bd6885a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page