Skip to main content

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

Release files for pybison 0.6.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pybison 0.6.4
File Size Uploaded
pybison-0.6.4.tar.gz 171.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pybison 0.6.4
File
pybison-0.6.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pybison-0.6.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pybison-0.6.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pybison-0.6.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pybison-0.6.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pybison-0.6.4-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pybison-0.6.4-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 17.8 MB

Release files / pybison-0.6.4.tar.gz

Download URL pybison-0.6.4.tar.gz
Size 171.0 kB
Tags Source
SHA-256 checksum
How to use checksums
3a6d208a6bd03f4d1713aeff80393987d8f4522fb593dfa846edff40f5673e9f
BLAKE2b-256 checksum
How to use checksums
c1da5399333e0a5677282b045080cce88324b5b5b0eeb4a3e54177f02a04c897
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp313-cp313-win_amd64.whl

Download URL pybison-0.6.4-cp313-cp313-win_amd64.whl
Size 426.0 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4f2464148aefcf39e667044e5390dd68265373436876f85c364d3a08fa10486a
BLAKE2b-256 checksum
How to use checksums
ad784605a57e1db0c7971bfe3f56c03f94ecdb6ba803e17dcd4f460582dfb3ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl

Download URL pybison-0.6.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Size 838.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6f5882e6b53d1d44b3b6f2d1ee0af82a3e75707859f558dd228c4ad252698619
BLAKE2b-256 checksum
How to use checksums
a4044f0dd306ee3d1355d75266a594d564acd58ef8209b2d062bf1b1bc69c492
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL pybison-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 820.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a54dfe39ac2a60c91975d130cd5e174371ecb3adcce393c9eb6b5a6c4ecf3134
BLAKE2b-256 checksum
How to use checksums
99e4428fd1eea9f37a6e2ea3c17f1834b68ade1dcba61259f21aca3820765ebd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Size 278.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fc2c932a5d8b66d10708b7392688fd785f9a8377aa90f947724bf5a0f6c90900
BLAKE2b-256 checksum
How to use checksums
db102329deb80d1093ecb4279bef4fe49cb17d4a0cf96e2a46010f0c5b5930c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pybison-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl
Size 282.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5e04670edc57b3910139c3a4f85633f594892b8a7a71e71453f026859d1405b4
BLAKE2b-256 checksum
How to use checksums
f859023bd0daf9a060e6751c94112d3e8bcad5872f74c23128d42e207d7206de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp312-cp312-win_amd64.whl

Download URL pybison-0.6.4-cp312-cp312-win_amd64.whl
Size 426.0 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9bb2222616e1a3e93671b28f0e04ab98e8b01e51601a2318987883ed90d0d153
BLAKE2b-256 checksum
How to use checksums
2ba5e10f906a6fc9bea75f11ef7e91b7009eb2facd09bb4733e8aa89ea506ea1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl

Download URL pybison-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Size 835.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
3b7484fad7115a4ebbf8bf84d2acce4662acf1976aaea9f6f54cfb7c34b7282f
BLAKE2b-256 checksum
How to use checksums
c93ea043b3e7041d1761056bf0b8bca52af906f037376d24a8256fe971b86de4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL pybison-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 820.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1fec1a410f7b2178c71d4744ad78c7dfd58d61871947bcb1c8b06150c88776b9
BLAKE2b-256 checksum
How to use checksums
d8c6f9acae9235ff39e0c71a5136fbd03b0ac4808fff2712e68b51a9ca7e0b1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Size 278.8 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7a8ae116c517d25aa72c300090397c8ce0d38709c48d4c3abff5175f31f3f58b
BLAKE2b-256 checksum
How to use checksums
f71a1499b4d1717214a1c67ad0c74e79537dde5005b9137a1f1730adf7ba6a4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pybison-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl
Size 283.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
63e12d10a6bb9051557a3567cf339874fc90c4b1fc71258caf81179bd3443e0c
BLAKE2b-256 checksum
How to use checksums
624dc25940811b6b6a75999f5b9e09cfc4713621a1bddaa10a8e6ab51fddb1c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp311-cp311-win_amd64.whl

Download URL pybison-0.6.4-cp311-cp311-win_amd64.whl
Size 429.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
fc39ed52853232026445a595d76e513b6d457d364c5ce7097413d6df58bd2659
BLAKE2b-256 checksum
How to use checksums
ca4f13966280ace7db845cede27d54548332e1c37210a35cf531bdb7a7bdbc41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl

Download URL pybison-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Size 835.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
92cd4057f1a53d39664528076fbf7099c6d241d067d2cc2e2b1ef0e2537ffa30
BLAKE2b-256 checksum
How to use checksums
faf015b7b1baa3a5a5a8092ea41936490c7dcc3f4d9fd143d37c59e7547cdbe8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL pybison-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 820.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
985d6ec0fdeb7958e447c740bc7000f0d3721c45b2da801d78fa0935f355f2d7
BLAKE2b-256 checksum
How to use checksums
d0c80b7a046effe90fad13a82ee29d067aa367623b3a2167e59618d22fd0be8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Size 280.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
12016f21fcc5b3ee8259d653af900c37f50578759f0996cd45c79a0c43ef014e
BLAKE2b-256 checksum
How to use checksums
a31c1c82118d9423e51c514d0c4cfba1faba44192daf2a24a3721fb01b087ac8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pybison-0.6.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 289.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
711a1f46eba15e1cd01c364a78ac24352e25bf3f62fae27901557efe949a3129
BLAKE2b-256 checksum
How to use checksums
f9d987a83d3ee97d38e34693179e799f28d4f96f190aa662a60c20297949c125
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp310-cp310-win_amd64.whl

Download URL pybison-0.6.4-cp310-cp310-win_amd64.whl
Size 428.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
100a03d954db3a3120cf4a04fe57fef4948385cbb777d3173eb47a08f139c06c
BLAKE2b-256 checksum
How to use checksums
ce2ee421ff39ba313895cf92d8492d4fae411b294a9588eaf9a1a0171821c75d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl

Download URL pybison-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Size 778.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9bbe6d4e40c04b5e70c3f9a344eed92be54e0ef53f0273e7174ff2fed72fbb9f
BLAKE2b-256 checksum
How to use checksums
1d48d739e3250f9ace5f3bd7d1441a07921183ba4c5e82c694eb674f1d0d678d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl

Download URL pybison-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Size 767.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5ae52dbd80b4c7eb7909d8f56649a0a3deb76bb7a694292a03f9287baeae5824
BLAKE2b-256 checksum
How to use checksums
b8a6522a2b0d2f7a9ea4941f783b22ebd6d1e0b5ad3774e7e5254cfe87fcb517
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Size 280.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4ad2cf22fb496c1bac4250e09f1abfe45e7b03cd525fc709c78bf62f6a37c976
BLAKE2b-256 checksum
How to use checksums
cec978fe94270e7f51822b6e75a4c6a5e78da1e1e4f963dc2edd3250714de062
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pybison-0.6.4-cp310-cp310-macosx_10_9_x86_64.whl
Size 289.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d8a4106d89e02fa77060b4a9435d95b260317eba2970a911466dc627c52da395
BLAKE2b-256 checksum
How to use checksums
6db5f0c20bc2b7d77cf1b4b8afff5303d43fb30e3c09fb033ce68d8a2d905e5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp39-cp39-win_amd64.whl

Download URL pybison-0.6.4-cp39-cp39-win_amd64.whl
Size 429.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
86e6e1e5ea9b2d21860072d25144830edd4bca026a0fbb2ff035ca9cf5ecee84
BLAKE2b-256 checksum
How to use checksums
0f5152d71f41a5d3a6c44f16cb8f21272f0329ed6accfc177e18bcdcaa04b78a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pybison-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 745.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2cbb8687df3e05e56178dd1e6157a4d7f87eefeda70e4410eddd28892a4cbffa
BLAKE2b-256 checksum
How to use checksums
867094a706be62345cf9e0e391d0eed4d5fc1960e381c9729f6ec908ade3371a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pybison-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 743.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e6227e51751b601b2583920e7612e2d3d462f62422a52f619fd8d1a72edc9a7e
BLAKE2b-256 checksum
How to use checksums
9d54f7fa3bcb844d7c8cfc5ee0f3fd59747620790f6f5255628d6a881ab38045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp39-cp39-macosx_11_0_arm64.whl
Size 281.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
fe023400e3be5b8e04a17eebafaf097f1c8795575e26f3405d94bdc7087a4017
BLAKE2b-256 checksum
How to use checksums
4183a0b777eb76d9b60e4b2cd4207914b8b9b5277a67ec637388bc63e15cb7d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pybison-0.6.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 290.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9a648e4bf46b2bb6758c3ad24d01262fef8fed75afa4df4ae9a4a0283081c5e1
BLAKE2b-256 checksum
How to use checksums
06cbd48ddd91e659e2e11e41cb196f372bfb9947ffb84c67ae923e8e26bf7e8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp38-cp38-win_amd64.whl

Download URL pybison-0.6.4-cp38-cp38-win_amd64.whl
Size 432.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
7b40a4169ca86969db4eb9b5d0db4b230645624ca11685348c295426c7b13cd0
BLAKE2b-256 checksum
How to use checksums
6749adbbeabc2f3c122c0393c7841d3a5976c51405a742d77a7525c52fbdcab3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pybison-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 768.3 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a66b0ea87d6dc12ec9f76a52187617044d7e38f2151c80d57204f59e4af183c0
BLAKE2b-256 checksum
How to use checksums
88f55d25d52fcfd95503046df7ab3b356aa3debfed42cf5d558c2784d004cf1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pybison-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 764.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d9c0864218c8aa8808e529de090bd7cf0d841e34a6a5a42beacc8b132f0fa442
BLAKE2b-256 checksum
How to use checksums
b20a8f5f855e4526a4434a54cdfec70a4d05b18b7ce9fe68204fe30bbcda33dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl

Download URL pybison-0.6.4-cp38-cp38-macosx_11_0_arm64.whl
Size 281.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ba0d625a919e9e6b5c80ff087b6add046031615e394c14bb398ab3ebcbdd6e44
BLAKE2b-256 checksum
How to use checksums
3448700b66a9d6eb7e50a0c5da58c409fe3b44bf32ec57df4ff5df25d3148023
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pybison-0.6.4-cp38-cp38-macosx_10_9_x86_64.whl
Size 290.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8ca31d035618ace1abb4c1eb5f73142cb928b0b77a19daf6008071777d29eccf
BLAKE2b-256 checksum
How to use checksums
a5c51f53dbc616275741a6085ec0a2741f2c0e6dbed053615d366b14764f5bdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp37-cp37m-win_amd64.whl

Download URL pybison-0.6.4-cp37-cp37m-win_amd64.whl
Size 424.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
cbcc1c9547f8564657bc4c7b71b550ca8b6a8131021320505eb76befd161de54
BLAKE2b-256 checksum
How to use checksums
9167455bf685cfd0f709f753807e4d8c84105f5cebbb3001f5560dbe9369a650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pybison-0.6.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 700.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
32bcfef3f03b4e43228840177458187592437896b780a6c95244232c8de91bca
BLAKE2b-256 checksum
How to use checksums
a3f442c88d4afe507ff1f67d004700504bbdc8e83282ce99a50dd28a0094eb4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pybison-0.6.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 692.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
57cf06f917e3dd5733868d49265f9fcce395204fda087c7ef506cab7278da0b5
BLAKE2b-256 checksum
How to use checksums
b80c4312db31bf00072df2a8159e48f7146073a276be841f7d85a8a0b98f3e54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7

Release files / pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pybison-0.6.4-cp37-cp37m-macosx_10_9_x86_64.whl
Size 287.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3c695c0acc3deccd4ae071cd8c26dbb9fd61c870168865b37992829261db33bd
BLAKE2b-256 checksum
How to use checksums
4f0d9d2ded520a9023a51575af309fd5ea6d6ecb28a9f3f20c69b1a998893ce7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.7
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page