Skip to main content

Python bindings for bison/flex parser engine

Project description

The pybison logo.

PyBison

python versions wheel Build

Welcome to PyBison!
Bringing GNU Bison/Flex's raw speed and power to Python

What is PyBison?

PyBison is a framework which effectively 'wraps' Bison and Flex into a Python class structure.

You define a parser class, define tokens and precedences as attributes, and parse targets as methods with rules in the docstrings, then instantiate and run.

Black Magick happens in the background, whereupon you get callbacks each time yyparse() resolves a parse target.

Install

Now, install pybison with:

pip install pybison

The following command will verify if the installation succeeded:

python -c "import bison"

There are already parsers for Python. Why re-invent the wheel?

I looked at all the Python-based parsing frameworks.

IMO, the best one was PLY - a pure-python lexx/yacc implementation (which I have borrowed from heavily in designing PyBison's OO model).

But PLY suffers some major limitations:

  • usage of 'named groups' regular expressions in the lexer creates a hard limit of 100 tokens - not enough to comfortably handle major languages
  • pure-python implementation is a convenience, but incurs a cruel performance penalty
  • the parser engine is SLR, not full LALR(1)

The other frameworks utilise a fiddly script syntax -

How do I use this?

Refer to the examples and the docs for usage.

Development

You will need:

We assume that Python, pip and a C compiler is already installed.

Dependencies

First, install the dependencies bison and flex.

Arch Linux

sudo pacman -S bison flex

Ubuntu

sudo apt-get install bison flex

Windows

With Chocolatey, you can install the packages as follows:

choco install winflexbison3

Additionally, if a C compiler is needed, mingw can be installed with Chocolatey as well.

choco install mingw

Debugging

See the short introduction into debugging.

Collaborators

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

pybison-0.6.4.tar.gz (171.0 kB view details)

Uploaded Source

Built Distributions

pybison-0.6.4-cp313-cp313-win_amd64.whl (426.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (838.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (820.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl (278.3 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pybison-0.6.4-cp312-cp312-win_amd64.whl (426.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (835.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (820.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl (278.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pybison-0.6.4-cp311-cp311-win_amd64.whl (429.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (835.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (820.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl (280.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl (289.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pybison-0.6.4-cp310-cp310-win_amd64.whl (428.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (778.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (767.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl (280.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl (289.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pybison-0.6.4-cp39-cp39-win_amd64.whl (429.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (745.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl (281.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl (290.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pybison-0.6.4-cp38-cp38-win_amd64.whl (432.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (768.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (764.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl (281.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl (290.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pybison-0.6.4-cp37-cp37m-win_amd64.whl (424.4 kB view details)

Uploaded CPython 3.7m Windows x86-64

pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (700.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (692.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl (287.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file pybison-0.6.4.tar.gz.

File metadata

  • Download URL: pybison-0.6.4.tar.gz
  • Upload date:
  • Size: 171.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4.tar.gz
Algorithm Hash digest
SHA256 3a6d208a6bd03f4d1713aeff80393987d8f4522fb593dfa846edff40f5673e9f
MD5 266bb96c856cb9d25dcb58a638647820
BLAKE2b-256 c1da5399333e0a5677282b045080cce88324b5b5b0eeb4a3e54177f02a04c897

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 426.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4f2464148aefcf39e667044e5390dd68265373436876f85c364d3a08fa10486a
MD5 45fbf2c9c80aabbd47c857837dfadf20
BLAKE2b-256 ad784605a57e1db0c7971bfe3f56c03f94ecdb6ba803e17dcd4f460582dfb3ce

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f5882e6b53d1d44b3b6f2d1ee0af82a3e75707859f558dd228c4ad252698619
MD5 fef3935cb5905fdc000f6e7bc089efc7
BLAKE2b-256 a4044f0dd306ee3d1355d75266a594d564acd58ef8209b2d062bf1b1bc69c492

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a54dfe39ac2a60c91975d130cd5e174371ecb3adcce393c9eb6b5a6c4ecf3134
MD5 2e1d1be906e7af68e3e1b3f1bd8973cb
BLAKE2b-256 99e4428fd1eea9f37a6e2ea3c17f1834b68ade1dcba61259f21aca3820765ebd

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc2c932a5d8b66d10708b7392688fd785f9a8377aa90f947724bf5a0f6c90900
MD5 42004743b104a6d46b6d99b6543ab233
BLAKE2b-256 db102329deb80d1093ecb4279bef4fe49cb17d4a0cf96e2a46010f0c5b5930c7

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e04670edc57b3910139c3a4f85633f594892b8a7a71e71453f026859d1405b4
MD5 dc5587a56ed90cfc834071d9aaf5212a
BLAKE2b-256 f859023bd0daf9a060e6751c94112d3e8bcad5872f74c23128d42e207d7206de

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 426.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9bb2222616e1a3e93671b28f0e04ab98e8b01e51601a2318987883ed90d0d153
MD5 4d4ffa281d66fc1a4a284bca9a88b119
BLAKE2b-256 2ba5e10f906a6fc9bea75f11ef7e91b7009eb2facd09bb4733e8aa89ea506ea1

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b7484fad7115a4ebbf8bf84d2acce4662acf1976aaea9f6f54cfb7c34b7282f
MD5 f4fdfb99f61b49fe89099c733e46f8bb
BLAKE2b-256 c93ea043b3e7041d1761056bf0b8bca52af906f037376d24a8256fe971b86de4

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1fec1a410f7b2178c71d4744ad78c7dfd58d61871947bcb1c8b06150c88776b9
MD5 6551d57f1121338c86752d979f56625a
BLAKE2b-256 d8c6f9acae9235ff39e0c71a5136fbd03b0ac4808fff2712e68b51a9ca7e0b1d

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a8ae116c517d25aa72c300090397c8ce0d38709c48d4c3abff5175f31f3f58b
MD5 1e4f0608e2c224ef20dff088976f8f07
BLAKE2b-256 f71a1499b4d1717214a1c67ad0c74e79537dde5005b9137a1f1730adf7ba6a4e

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 63e12d10a6bb9051557a3567cf339874fc90c4b1fc71258caf81179bd3443e0c
MD5 9f684d513774e7aad673eb3b7b99e8ba
BLAKE2b-256 624dc25940811b6b6a75999f5b9e09cfc4713621a1bddaa10a8e6ab51fddb1c1

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 429.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fc39ed52853232026445a595d76e513b6d457d364c5ce7097413d6df58bd2659
MD5 9b7dfcb0dd14ec5b9e60d31f06b2e1c4
BLAKE2b-256 ca4f13966280ace7db845cede27d54548332e1c37210a35cf531bdb7a7bdbc41

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92cd4057f1a53d39664528076fbf7099c6d241d067d2cc2e2b1ef0e2537ffa30
MD5 6f5d227b075c4c9abda3ac68e2b92fc6
BLAKE2b-256 faf015b7b1baa3a5a5a8092ea41936490c7dcc3f4d9fd143d37c59e7547cdbe8

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 985d6ec0fdeb7958e447c740bc7000f0d3721c45b2da801d78fa0935f355f2d7
MD5 958d506d810621ec12bdb23625c44cae
BLAKE2b-256 d0c80b7a046effe90fad13a82ee29d067aa367623b3a2167e59618d22fd0be8e

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12016f21fcc5b3ee8259d653af900c37f50578759f0996cd45c79a0c43ef014e
MD5 cba25446ca02955062895931ebf5f70d
BLAKE2b-256 a31c1c82118d9423e51c514d0c4cfba1faba44192daf2a24a3721fb01b087ac8

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 711a1f46eba15e1cd01c364a78ac24352e25bf3f62fae27901557efe949a3129
MD5 91337093b4fc6a8710e445f7d4529e78
BLAKE2b-256 f9d987a83d3ee97d38e34693179e799f28d4f96f190aa662a60c20297949c125

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 428.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 100a03d954db3a3120cf4a04fe57fef4948385cbb777d3173eb47a08f139c06c
MD5 0ea767df24ab3558b30fd6e7788e1083
BLAKE2b-256 ce2ee421ff39ba313895cf92d8492d4fae411b294a9588eaf9a1a0171821c75d

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bbe6d4e40c04b5e70c3f9a344eed92be54e0ef53f0273e7174ff2fed72fbb9f
MD5 05002d82203d890f83b9af7c949d254e
BLAKE2b-256 1d48d739e3250f9ace5f3bd7d1441a07921183ba4c5e82c694eb674f1d0d678d

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ae52dbd80b4c7eb7909d8f56649a0a3deb76bb7a694292a03f9287baeae5824
MD5 71dd660a7b8de33b2e55c26d2de7c2e1
BLAKE2b-256 b8a6522a2b0d2f7a9ea4941f783b22ebd6d1e0b5ad3774e7e5254cfe87fcb517

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ad2cf22fb496c1bac4250e09f1abfe45e7b03cd525fc709c78bf62f6a37c976
MD5 00804edc741f59d943604fc14c15b7cc
BLAKE2b-256 cec978fe94270e7f51822b6e75a4c6a5e78da1e1e4f963dc2edd3250714de062

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d8a4106d89e02fa77060b4a9435d95b260317eba2970a911466dc627c52da395
MD5 a18f5d97773117dcb5487d32b1e2bfa4
BLAKE2b-256 6db5f0c20bc2b7d77cf1b4b8afff5303d43fb30e3c09fb033ce68d8a2d905e5f

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 429.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 86e6e1e5ea9b2d21860072d25144830edd4bca026a0fbb2ff035ca9cf5ecee84
MD5 9fa7813cb8698337b21e14263c2f43a2
BLAKE2b-256 0f5152d71f41a5d3a6c44f16cb8f21272f0329ed6accfc177e18bcdcaa04b78a

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cbb8687df3e05e56178dd1e6157a4d7f87eefeda70e4410eddd28892a4cbffa
MD5 35e15ad579af438a1625b90ce8a2b949
BLAKE2b-256 867094a706be62345cf9e0e391d0eed4d5fc1960e381c9729f6ec908ade3371a

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6227e51751b601b2583920e7612e2d3d462f62422a52f619fd8d1a72edc9a7e
MD5 9dccc2dcba73f9bc7f916bdba4776ef2
BLAKE2b-256 9d54f7fa3bcb844d7c8cfc5ee0f3fd59747620790f6f5255628d6a881ab38045

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe023400e3be5b8e04a17eebafaf097f1c8795575e26f3405d94bdc7087a4017
MD5 5583039f3a4e3dbdd3c00766cd329263
BLAKE2b-256 4183a0b777eb76d9b60e4b2cd4207914b8b9b5277a67ec637388bc63e15cb7d3

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a648e4bf46b2bb6758c3ad24d01262fef8fed75afa4df4ae9a4a0283081c5e1
MD5 f7ee333c99bd332659e44ae4028064b1
BLAKE2b-256 06cbd48ddd91e659e2e11e41cb196f372bfb9947ffb84c67ae923e8e26bf7e8a

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 432.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b40a4169ca86969db4eb9b5d0db4b230645624ca11685348c295426c7b13cd0
MD5 6fb5e642a102fd2c709032b122654245
BLAKE2b-256 6749adbbeabc2f3c122c0393c7841d3a5976c51405a742d77a7525c52fbdcab3

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a66b0ea87d6dc12ec9f76a52187617044d7e38f2151c80d57204f59e4af183c0
MD5 aaab5ffd88b6f4cb713d10b21ca7ab54
BLAKE2b-256 88f55d25d52fcfd95503046df7ab3b356aa3debfed42cf5d558c2784d004cf1f

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9c0864218c8aa8808e529de090bd7cf0d841e34a6a5a42beacc8b132f0fa442
MD5 e0bd12c1d07eec15146425f019a6afe6
BLAKE2b-256 b20a8f5f855e4526a4434a54cdfec70a4d05b18b7ce9fe68204fe30bbcda33dc

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba0d625a919e9e6b5c80ff087b6add046031615e394c14bb398ab3ebcbdd6e44
MD5 b25d945eaea1a1fcf62e460ddd86547f
BLAKE2b-256 3448700b66a9d6eb7e50a0c5da58c409fe3b44bf32ec57df4ff5df25d3148023

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ca31d035618ace1abb4c1eb5f73142cb928b0b77a19daf6008071777d29eccf
MD5 f99f18db35ac90e6c0e94226403b2286
BLAKE2b-256 a5c51f53dbc616275741a6085ec0a2741f2c0e6dbed053615d366b14764f5bdb

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pybison-0.6.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 424.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pybison-0.6.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbcc1c9547f8564657bc4c7b71b550ca8b6a8131021320505eb76befd161de54
MD5 4ca370ab8c57c8e9feca9a7e6ab7ba94
BLAKE2b-256 9167455bf685cfd0f709f753807e4d8c84105f5cebbb3001f5560dbe9369a650

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32bcfef3f03b4e43228840177458187592437896b780a6c95244232c8de91bca
MD5 f21d8ab4500aa0613468cc5c25c594c4
BLAKE2b-256 a3f442c88d4afe507ff1f67d004700504bbdc8e83282ce99a50dd28a0094eb4c

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57cf06f917e3dd5733868d49265f9fcce395204fda087c7ef506cab7278da0b5
MD5 2bc02945e24388020e1050a0f3f3908c
BLAKE2b-256 b80c4312db31bf00072df2a8159e48f7146073a276be841f7d85a8a0b98f3e54

See more details on using hashes here.

File details

Details for the file pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c695c0acc3deccd4ae071cd8c26dbb9fd61c870168865b37992829261db33bd
MD5 7640e9bb17973a56e80b320c9e39b549
BLAKE2b-256 4f0d9d2ded520a9023a51575af309fd5ea6d6ecb28a9f3f20c69b1a998893ce7

See more details on using hashes here.

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