Implementation of bencode with optional fast C extensions
Project description
fastbencode
fastbencode is an implementation of the bencode serialization format originally used by BitTorrent.
The package includes both a pure-Python version and an optional C extension based on Cython. Both provide the same functionality, but the C extension provides significantly better performance.
Example:
>>> from fastbencode import bencode, bdecode >>> bencode([1, 2, b'a', {b'd': 3}]) b'li1ei2e1:ad1:di3eee' >>> bdecode(bencode([1, 2, b'a', {b'd': 3}])) [1, 2, b'a', {b'd': 3}]
License
fastbencode is available under the GNU GPL, version 2 or later.
Copyright
Original Pure-Python bencoder (c) Petru Paler
Cython version and modifications (c) Canonical Ltd
Split out from Bazaar/Breezy by Jelmer Vernooij
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
fastbencode-0.0.13.tar.gz
(19.5 kB
view details)
File details
Details for the file fastbencode-0.0.13.tar.gz
.
File metadata
- Download URL: fastbencode-0.0.13.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f0017589c2bc9b715e82ac3065b0a63f28bdf1753c34d7aa495199c05e6c6c9 |
|
MD5 | b04f753ed2e8809e70ba091a31015882 |
|
BLAKE2b-256 | 954c00e971731165f7d8515b00154a5890abe53c00fae1e01fed8fe2df6643ef |