Skip to main content

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 Rust extension based on PyO3. Both provide the same functionality, but the Rust 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}]

The default bencode/bdecode functions just operate on bytestrings. Use bencode_utf8 / bdecode_utf8 to serialize/deserialize all plain strings as UTF-8 bytestrings. Note that for performance reasons, all dictionary keys still have to be bytestrings.

All functions accept an optional max_depth argument that caps how deeply containers may nest, raising RecursionError when exceeded. It defaults to None (no limit), and a top-level container counts as depth 1. This guards against untrusted, deeply nested input.

License

fastbencode is available under the Apache License, version 2.

Copyright

  • Original Pure-Python bencoder © Petru Paler
  • Split out from Bazaar/Breezy by Jelmer Vernooij
  • Rust extension © Jelmer Vernooij

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.3.11.tar.gz (20.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fastbencode-0.3.11-cp314-cp314t-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastbencode-0.3.11-cp314-cp314t-win32.whl (146.3 kB view details)

Uploaded CPython 3.14tWindows x86

fastbencode-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl (251.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastbencode-0.3.11-cp314-cp314t-macosx_10_15_x86_64.whl (256.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastbencode-0.3.11-cp314-cp314t-macosx_10_15_universal2.whl (499.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

fastbencode-0.3.11-cp314-cp314-win_amd64.whl (154.5 kB view details)

Uploaded CPython 3.14Windows x86-64

fastbencode-0.3.11-cp314-cp314-win32.whl (147.1 kB view details)

Uploaded CPython 3.14Windows x86

fastbencode-0.3.11-cp314-cp314-macosx_11_0_arm64.whl (253.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastbencode-0.3.11-cp313-cp313-win_amd64.whl (149.8 kB view details)

Uploaded CPython 3.13Windows x86-64

fastbencode-0.3.11-cp313-cp313-win32.whl (143.4 kB view details)

Uploaded CPython 3.13Windows x86

fastbencode-0.3.11-cp313-cp313-manylinux_2_28_x86_64.whl (288.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastbencode-0.3.11-cp313-cp313-manylinux_2_28_aarch64.whl (284.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastbencode-0.3.11-cp313-cp313-macosx_11_0_arm64.whl (253.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastbencode-0.3.11-cp312-cp312-win_amd64.whl (150.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fastbencode-0.3.11-cp312-cp312-win32.whl (143.8 kB view details)

Uploaded CPython 3.12Windows x86

fastbencode-0.3.11-cp312-cp312-manylinux_2_28_x86_64.whl (289.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastbencode-0.3.11-cp312-cp312-manylinux_2_28_aarch64.whl (285.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastbencode-0.3.11-cp312-cp312-macosx_11_0_arm64.whl (253.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastbencode-0.3.11-cp311-cp311-win_amd64.whl (151.5 kB view details)

Uploaded CPython 3.11Windows x86-64

fastbencode-0.3.11-cp311-cp311-win32.whl (146.5 kB view details)

Uploaded CPython 3.11Windows x86

fastbencode-0.3.11-cp311-cp311-manylinux_2_28_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastbencode-0.3.11-cp311-cp311-manylinux_2_28_aarch64.whl (286.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastbencode-0.3.11-cp311-cp311-macosx_11_0_arm64.whl (254.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastbencode-0.3.11-cp310-cp310-win_amd64.whl (151.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fastbencode-0.3.11-cp310-cp310-win32.whl (146.5 kB view details)

Uploaded CPython 3.10Windows x86

fastbencode-0.3.11-cp310-cp310-manylinux_2_28_x86_64.whl (291.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastbencode-0.3.11-cp310-cp310-manylinux_2_28_aarch64.whl (286.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastbencode-0.3.11-cp310-cp310-macosx_11_0_arm64.whl (254.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file fastbencode-0.3.11.tar.gz.

File metadata

  • Download URL: fastbencode-0.3.11.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11.tar.gz
Algorithm Hash digest
SHA256 7e2be45bfe81167cd79986698a2cf270eaf61add5b1bc711378c2bb3f05396d5
MD5 7a314a5c09ea2aa8530636671ce745c6
BLAKE2b-256 57ce70e4db33a5393433ff45c5307e616127807735faff4d12f002c20de16688

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11.tar.gz:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5fbf804d645bf985f439a6bee3a6847a8ae875792a1f5cb11e71dd665f020e4f
MD5 3d12b2205a2b74937619fafdf699c774
BLAKE2b-256 91213936a0194d0d8fef543401770b9dca267867d2138c6084296dec22ac20eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314t-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 146.3 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ddd49e85bf1aa0621893abacb5280dc3afaa85a510bffc8241aae8bb627132ba
MD5 282266628db90b42c97e1ac3f7b4b4ff
BLAKE2b-256 e8d2090e3199d9427f9b989abf0db42a1e783d9d1536168cad7851ec554509c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314t-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09de579c95e6509ac2aaae5b1547be1eebf7f3687e5d19aa51678a9bb2234a90
MD5 1b77a9edccc83a20feb07d7ee0a93bf8
BLAKE2b-256 3a83226b6d8383832926b3e880609491014d9d3209cc35f02a63b9290dc1ef50

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c295cf6c4e838142c1656e051f9a002f2cea9fbd9f24c70a47354732a668d24c
MD5 07917c7138eecd61136023060a8f497c
BLAKE2b-256 5993e7ea96b731e71b4ef51336fc0836b22a5abe80efc1a34bed81841bdbedc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 f8f6e9c9d668a07a8fae9228323f5a68286f36bbec7ca96cae087d645413c6e8
MD5 779a66d1d654cb2b5314bda63260c68b
BLAKE2b-256 6c9373bdb01a9bc460f6f5e17bd3d0c9d2bdd802b79a69ec371b332e88704e7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d128d8ffa9eb5e80de3cb8952e76a0d93c5f510254f4480ac12c02388b587c49
MD5 d5c73a5aa255d8d3613da4a630565b0f
BLAKE2b-256 bf173f01dd967554c065de8096f2d6f988c8276e0d142f488199c07f8c43c87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 147.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b9aa76a7315100ce2a541fcfe151a7a9a22d528c25a12b1e566dfdc8ff239474
MD5 35e9e2d480342c15c843f126dc5951ce
BLAKE2b-256 af6f4ef5b092bf7e6ee4e4d3bf58b4103c893e0ed85ecae7f2735b022767e8fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68a4acfa4b78edf1f5a1458856fac797f104d96b049aebb03291f1a984085cf2
MD5 97177116aadb9c3f05a1070d263ff780
BLAKE2b-256 be8b59914a7aba55316a261a5fb9c2d037695202c555885ce2a200ea927117d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2b840ef406d83dc6c3a6272a76d15ae32149d770050bb92f78fb1bbaabb595e9
MD5 f0466d65d667b9e17bf1cb8b6a1c0987
BLAKE2b-256 91e24620dc0ced5ee70f8486912b71a676ca59b9f81ca5207b2801f0fcf1c5b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp313-cp313-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp313-cp313-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 143.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2d2fb527d7f2cf877b80a4199df1db90224e4ba1a16e1460b621caaa1b319a9d
MD5 1dbbb5a4ac28592e846fb2bdbf534011
BLAKE2b-256 e6d539169673129a13241fa81ce7cba08242ed4852049112a9c9a08c372868c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp313-cp313-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f85ea909bb2b95d6f62a58b21eaa55a5102f8d7d812cf63bfb305ad526407257
MD5 1842b8856b06dcf384a372671a802dac
BLAKE2b-256 9f7a5c1120225714f2398220c47d378ea4573561bb2de45649f2ed7c5f51dd01

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2c821a268e5330d719aef9bd63595d5fc292ccf76d753c8ce6d6755c4c2c828
MD5 870cf359a1891f0535632b198e2803fc
BLAKE2b-256 6fd21fc33d0a8b77f6ebd1fddb685ca285aa7f2502db6061a5b54d7049113a00

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d96005c3589439dc4d1a6806c31885a039acaafdb237bd2717fbe577ddae14a
MD5 27f7130eec64f5ddded656ea3dc6c2fe
BLAKE2b-256 90b4741f3caf595d91b624cb3ccac9ba6bc5fcea52bbb8ac6525c5645b3025b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d9f246055a3294c1a82f73b27998f2368e7cd4801cc367fb13a0a01d4380bbde
MD5 f1c134b86c73ae76547595587c19a690
BLAKE2b-256 377ab91d5ae903c96db5d79f3bec46f1387f7ad840ab08f583fb73a41e54b6fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp312-cp312-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp312-cp312-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 143.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f9a89b523f122640c8ce5a40da7763d29036bb326deff46921801ee7b0a56120
MD5 508744dbac31ab300c52b53a136495ff
BLAKE2b-256 fc308cefe6c958410628b8ef1c4c991200b087c50fa76d93f671f0f1c803710e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp312-cp312-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fb7d30d9bfab22710aab03641df9d79a971345a04bb5044b996dbfe21d17563
MD5 92962880df5ab485a5461e2e1ab18c0a
BLAKE2b-256 ef026c9fe0d5dc16c2313a35dd91b8f65e3a0ce882d45c9a312d2913a52ac709

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59856f78cdf671a7101e6424fb62208f6d8f18f78bafd2088b52b61d1b97a148
MD5 57b4cf9a4512966dba42020c47f7042b
BLAKE2b-256 b83793cdf7583159c4390f49d45239d43c3998f20d3c02c1b22594bd3c3fca7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b12856bb89c324f353a7472a46487e27e27858385e0c24714f1a3b6b2661771
MD5 40d8b3591698839d1124a5d13d361267
BLAKE2b-256 017b1a4f8aad266d1392e5b3b079e5ec389481df4d03ef9bf4f30ff39785004b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af930323fdf7d050ffeb7f312a1fc679a14666d0cbfff9b5130c5cf2bf732fd3
MD5 1fd5c16121d0e1803e1fdf8a5af90429
BLAKE2b-256 566dcf463660cb3581a35803ada09b9727ad317e8af5f380e9211ec7686b41c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp311-cp311-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp311-cp311-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 146.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55b0f0b1b1430d95ea97810744fc6dd030d7ddce9ab021a3c1f558761bda7109
MD5 efec4a1aeabdcdbffc6b0b8df10ff8a4
BLAKE2b-256 ab0df037b606fdfbd610b9d0f73267a0b4b92d5d9175d3001636f657f06d0171

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp311-cp311-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fd18be5fdd183fe5ce700e89e52379bcc5e254cf3ed225b455f9a7b662e246f
MD5 7b3326b7779dfa3ad107e4237b191a75
BLAKE2b-256 137a788e38d6d683a94ed307e780eadef7081265d722f4379bc1471d3a04eb74

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1fcaedaa99ec01aebe72435f18d1e05a1a261a08fde33bc343b190214c2ad10
MD5 1044eeecb083d38387a3c3983cb402b7
BLAKE2b-256 5940eac8f3f43e7ae5d757f0043cacb720e9ed618025a277111256bb65c12947

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bf8b666f8af412a2e82bb24a719be69f064b1b1562e25d86e227c71c1e37007
MD5 476819839c7a35a93579b167bcdec36f
BLAKE2b-256 d38b1052216e05990f852bd60cd9ccd4b9b9ac0427460d4612de54e6336057c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08bb2fa11f07efdfe9a3473ddffa9ad6e55193c93e3176dd318df001edd8be4d
MD5 fdb873e690ffbeee4c9294d32701adf6
BLAKE2b-256 97df82b92cfa23d161b6f67af8d97df824bcf5dbc48537ec48fc5026a9e21913

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp310-cp310-win_amd64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp310-cp310-win32.whl.

File metadata

  • Download URL: fastbencode-0.3.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 146.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for fastbencode-0.3.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ada66577b5038359ba00a8359c1496088c498538ea71e9e0629e6bc3dba6c65a
MD5 9c66151672981364eff171af829cfd04
BLAKE2b-256 074472975549b4151ad3195f7fc8ad4b9e552e991d0ad8f9c050c40587e5efbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp310-cp310-win32.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28bdd7b0884c723bf3fa7b74957a7e3801efd8ef6ecf5c8011db6d8bd79ef6a1
MD5 3a618bd86bfbbaf67816ed66d2bb41ba
BLAKE2b-256 9b4035985d9cd960aab8834ddb0e7dffa51eaeddada4feca336b0e78a1c03161

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ff8b7fd464da73fd0e2421df9ae89a0663850dfaf3a7d5d3fa3400401b2c41d
MD5 604872a518f6954c87a911db9752dd21
BLAKE2b-256 f611ddbc5df803872a0325b05fb94e8d771c85a6125268cea568633648e0f987

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastbencode-0.3.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2308c6e1912464b4199ce2224fc4eab70bb4cec6c2f053da8b9353e12d91aacd
MD5 0a412147faa3635d38c5c9dab4342506
BLAKE2b-256 5b326623d096e5bbf100cec7076c6c175cacc6dd268149e7ae4180a98c26d0fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yaml on breezy-team/fastbencode

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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