Skip to main content

Bencode encoder and decoder written in python.

Project description

Bencode

Bencode encoder and decoder written in python.

Installation

pip install bencode-python

Usage

Decoder

Decoding bencode data.

from bencode.decoder import Decoder

decoder = Decoder()
decoded = decoder.decode(b"i42e")
print(decoded) # 42

Encoder

Encoding Python data types into bencode format.

from bencode.encoder import Encoder

encoder = Encoder()
encoded = encoder.encode(42)
print(encoded) # b'i42e'

License

Licensed under the MIT License.

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

bencode-python-0.0.2.tar.gz (1.4 kB view hashes)

Uploaded Source

Built Distribution

bencode_python-0.0.2-py3-none-any.whl (1.5 kB view hashes)

Uploaded Python 3

Supported by

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