Skip to main content

Implementation of bencode with optional fast Rust 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 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.

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

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

fastbencode-0.3.10.tar.gz (17.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.10-cp314-cp314t-win_amd64.whl (151.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

fastbencode-0.3.10-cp314-cp314t-win32.whl (144.1 kB view details)

Uploaded CPython 3.14tWindows x86

fastbencode-0.3.10-cp314-cp314t-macosx_11_0_arm64.whl (255.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

fastbencode-0.3.10-cp314-cp314t-macosx_10_15_x86_64.whl (261.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

fastbencode-0.3.10-cp314-cp314t-macosx_10_15_universal2.whl (507.1 kB view details)

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

fastbencode-0.3.10-cp314-cp314-win_amd64.whl (151.7 kB view details)

Uploaded CPython 3.14Windows x86-64

fastbencode-0.3.10-cp314-cp314-win32.whl (144.6 kB view details)

Uploaded CPython 3.14Windows x86

fastbencode-0.3.10-cp314-cp314-macosx_11_0_arm64.whl (255.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fastbencode-0.3.10-cp313-cp313-win_amd64.whl (147.7 kB view details)

Uploaded CPython 3.13Windows x86-64

fastbencode-0.3.10-cp313-cp313-win32.whl (141.3 kB view details)

Uploaded CPython 3.13Windows x86

fastbencode-0.3.10-cp313-cp313-manylinux_2_28_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

fastbencode-0.3.10-cp313-cp313-manylinux_2_28_aarch64.whl (287.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

fastbencode-0.3.10-cp313-cp313-macosx_11_0_arm64.whl (255.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fastbencode-0.3.10-cp312-cp312-win_amd64.whl (148.1 kB view details)

Uploaded CPython 3.12Windows x86-64

fastbencode-0.3.10-cp312-cp312-win32.whl (141.5 kB view details)

Uploaded CPython 3.12Windows x86

fastbencode-0.3.10-cp312-cp312-manylinux_2_28_x86_64.whl (293.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

fastbencode-0.3.10-cp312-cp312-manylinux_2_28_aarch64.whl (287.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

fastbencode-0.3.10-cp312-cp312-macosx_11_0_arm64.whl (256.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fastbencode-0.3.10-cp311-cp311-win_amd64.whl (150.0 kB view details)

Uploaded CPython 3.11Windows x86-64

fastbencode-0.3.10-cp311-cp311-win32.whl (143.8 kB view details)

Uploaded CPython 3.11Windows x86

fastbencode-0.3.10-cp311-cp311-manylinux_2_28_x86_64.whl (297.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

fastbencode-0.3.10-cp311-cp311-manylinux_2_28_aarch64.whl (290.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

fastbencode-0.3.10-cp311-cp311-macosx_11_0_arm64.whl (258.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fastbencode-0.3.10-cp310-cp310-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.10Windows x86-64

fastbencode-0.3.10-cp310-cp310-win32.whl (144.8 kB view details)

Uploaded CPython 3.10Windows x86

fastbencode-0.3.10-cp310-cp310-manylinux_2_28_x86_64.whl (297.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

fastbencode-0.3.10-cp310-cp310-manylinux_2_28_aarch64.whl (289.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

fastbencode-0.3.10-cp310-cp310-macosx_11_0_arm64.whl (258.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for fastbencode-0.3.10.tar.gz
Algorithm Hash digest
SHA256 849b6872b6dcbace6f8a7b0c094fc3f5b2ab17aa987e4efb6041293487b360e7
MD5 5a4c78732f5e00313fd5b933311538a4
BLAKE2b-256 22c48d3aa6b53dcd74193005ee40632176143b980fccef9235162a0060a30841

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10.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.10-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cc36bcb00415fccccaa450f255f6667124f07825854753d83e4f8f64c45cfdd1
MD5 3f1f580cccd2a31126ec43cff1f257e0
BLAKE2b-256 158e8b593197b890fcc65d2ef84e587d41720b179d1c878a2364a2a595914be7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cb6d11c02db30d13c995e7b23bf78110bcebae4b007a2148884930e385414bea
MD5 c16fb2f5f8f271992d0dff90a338116f
BLAKE2b-256 c2d0528cd178d621e7de4f06d6f92eaedfa89e7474bfc8528cc23834aca72bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2494cf72fd18a0913f50887aa21416e728b91deedd57c0bfd79cbaad299b95bd
MD5 7f330fed06b383131e4d5282ba919672
BLAKE2b-256 8ba888717ffffca179c7d23aa9b52d6ff6950e58425e0b7f20f7b252de7792fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7b276165182682aafb866976aa09421d871d5f411201edb648bde9a221552e3c
MD5 dc943f29aa666f94fbc8ace73be2a173
BLAKE2b-256 e68c9a0ef1fd871c03bbde2cf5d69c0e19dcad4a5967af2db8f4a2f5ced49dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 5267c64cf0a23cd24cd1b61df44e1e3db3a971f687bb29b720289c5b55f0c39a
MD5 39dca302c6be66788e480348d2cc29d9
BLAKE2b-256 d6c5e730dddf1828f92678f0d8be2337ca55d2c3219aee619991bfd90f9aef23

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c6e0c7e3aa4eb235768634ccc98a2def20010bc1782004c2c9835a25ead44bdd
MD5 faa71c468abca2e2267e51f0794f74a8
BLAKE2b-256 570bea5df5958591669b0d6857e0085bcb07746376171c1bfd07eb3d987a77fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7cd4c966da7df709cc63810df29b2b79c38a7f74e0e7f6900550a790766368c0
MD5 1a5c75e37195bea1f641405e30802b00
BLAKE2b-256 00abf7461749a9a4026a22010c12c76f7c4731e8e27859cea1cbaabec5cd805c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d70031905c472fb247bf865841d466e4c6fc39f7f7f53d0e18c1fdb4d81d1c
MD5 7f9f27c6d8261d60f3fc98dfb11963b4
BLAKE2b-256 2aaa29ec958a729d7cb1640291e6763f6aaa11bd4a2aeed0a340d24d412c90e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61fe0647eb6f60de02dc722c8daed6ce002eec2fd32363da18dd88da2d17ace5
MD5 c0985aeaa89bbf4daff721f2bc2ca453
BLAKE2b-256 796cd4caa15a8c96eebaa6df715f789e81342032854c0e949a9944946aeb6103

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3438a4accfbb906d00b74ae22a5df7452097c0e9839611a3f8ff730900fbc7f1
MD5 62ea70b3f8858d0a7e5e3de3fda8f496
BLAKE2b-256 e10a140e3522892d5644f6a3312bc820ce05b83188b87780b2829bb9eabfacb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82b05216b9cd281b2f709c565825ca1aadb152fcbdd7c8f412ba89ffb2ddf136
MD5 a7da2b39d192d7796c5ebf1020396cde
BLAKE2b-256 88e0dc31a6abf310b124162e7c07d27cc8a713c7faaffcc0e0afc0259ec8e748

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 590a1e1d8e950f4e2b271fd6ced1b294720212742e39cc53e11b89001b9048c4
MD5 54bc1a49eb8eeff4f9a1807c1e50d685
BLAKE2b-256 a9c7d1da84f36dd17cdff6a9edbf79c5e4763950be7ac5f581def2476a5594b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed1d99cf0d98ebb1706ca51568b69822328ceb5ffacc2e6e879bb145c76d5c82
MD5 fe87a5ff601609c837ccfbc427852695
BLAKE2b-256 c91c62ba8271a1f3043b8086cbd49b7f3a121d49c691535cac2c7e42afdc50af

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 998f09c48f52e5cecb75df89dcbdc2797045036111d21a6b1a18a735e8496b96
MD5 3a578d0ef2e5d2c99706f02b3ca54c2a
BLAKE2b-256 2a4122e7a000439ebc5479e5a6122f6402539422758a5c643cedd5d64b86e3f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 97786e8873239a8c312ed92571e055f670c85871e8926c9ed85a0e5a900efe29
MD5 cc4de1e13c26391ee04350feba7a09ac
BLAKE2b-256 04a9100f573a5e65772eeb23116f975caf6c354de6e1636aee7cf271912682ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 608688bf7557bd0ad10d52528c7725b08f6c1460b0029f0ae1f2ba0fc80dd000
MD5 a05be77b04270894aadff5f36a332365
BLAKE2b-256 1573dc9cac3e739e6fecb63a8714ea34d1f06997c8f43d22e8d688360aeb9c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af5c8585d7cb709b3b45e5c7c87b6f6d82f131786bbc3d304d6b61aa127f01e1
MD5 94fa52e7eaa74ecdfa59d3632a71f7f1
BLAKE2b-256 ef4d7fcf902a455ba3dd453aa2b82012a6d3baa2213fd2788844ee71838293b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e32020fff77c44789dcd5bffb01311371c5c90ad701ee008435d1bbf6a2f2daa
MD5 6de2779bf4b6432b0e096ce298317f37
BLAKE2b-256 5b57fdb890905d940a0beb5447e344a8d18001ebfa64bdea27cc8d777b212876

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 654c7629e21f3c8b7b823f668c81ea0f790d08aba0e74eebbdb1b169a8188ccc
MD5 8f95f20c85a581b647f3a3ad7a05408b
BLAKE2b-256 ce8a7b27bbdbd68246236f951bd171ebc9b5db3c270a81d718abfe221c0ba0d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42754128a24c60eed3bf08374cf0a52c670c7d28e8ad22bd3b55f23b65e6fdd1
MD5 09d89517e3cb65659859e4bb01a47461
BLAKE2b-256 f1317c1715ccd31a1980abaf4524eacaeb23902fece5642c3bd1e68a85b9dc77

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b26621a11b7d65ad016f69bd1fd8b9b05af93c666e79465816935fef40ce24c4
MD5 708d1992d732202c157f3cbe4bf00bd4
BLAKE2b-256 aaadb7112f539cb8ae632781364d76d30ca2c8f78646b3e90c8ac1630fb23fb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e36b8bc9a835dc3ccd328cbc4557a0d5679ca056f13d5bfdc1ebbe1a67bb25b5
MD5 616b24c074ea0a7ffc66307cd503aacc
BLAKE2b-256 26ad137cca7b2640a91a37e56c5e17669dc5db529c4016fdb4c1a23dfa8be2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27d2de6c4af2b63b85da95b1e7f226fed88ee361da11b35753b26ab9ee6e50ec
MD5 fceb71353881dd9589511e1fc19c412d
BLAKE2b-256 5ac59fd177922f903a0cadf83ca21838ab9d39b8a478e7df6e4c22c565601feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35fc55d5261e48bb85416a534ffc316e4686e2e85811f46e562c5e39a6450280
MD5 c13d8f225926341e741f148baf4f3c33
BLAKE2b-256 f800c0c0c1be4e3b3b6bcf2c09767056e3fbc81655125056ae7fd5fc3e4f42d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for fastbencode-0.3.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f2ea2a76c0b1e1dec6b042523cb0d7ac935e9a2ed5a6f01462878b3d69f78b4d
MD5 506b59b7d4d866d243741a1099caa329
BLAKE2b-256 7391cf8faef57a2e331b5f4cca225ea173391f90be4cbb70c568291a6a0f1805

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e976b219601b0a25e0a45b45610e37c148fd654ee37e1be79c9857c23303683
MD5 1beb43e49d3393028b17270944e7a193
BLAKE2b-256 91298ceb5cb7469169cea75322f665c90701381432e83846bbf7259db2ff9599

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc586f17ed67c3bf73bbe5d983d6c886a0e009155017c06507239570a931aa9e
MD5 7578ecadf55e81ea0e2de85d33a0ed45
BLAKE2b-256 efc11cba47fb1d9d50d4ef3253d7e4ffb42d295c75002b680ca582eb06017ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fastbencode-0.3.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09022ffd77f4a925f930c6581147a287cd079a63fba94b9b5e6305d53d4b84b6
MD5 66f5c5ae430d8617ef01a950ce8ac1c6
BLAKE2b-256 3dac3660c3802743f1fc54eac4ddf8c8261df04a6368a1cad25a19000c3ba98c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastbencode-0.3.10-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 Pingdom Monitoring Sentry Error logging StatusPage Status page