Skip to main content

Bison is a fast, lightweight NoSQL database, written in Rust with seamless Python bindings.

Project description

Bison

Bison

Bison is a fast, lightweight NoSQL database, written in Rust with seamless Python bindings. It combines the speed and safety of Rust with the flexibility of JSON storage, offering a MongoDB-like query language to easily store, query, and manipulate your data. Perfect for developers who need a powerful, schema-less database that integrates smoothly into Python projects, Bison is designed to handle complex queries and efficient updates while keeping your data operations simple and intuitive.

Features

  • NoSQL Document Storage: Stores JSON documents in collections.
  • MongoDB-like Query Language: Use familiar query operators such as $eq, $ne, $gt, $gte, $lt, $lte for filtering documents.
  • Insert and Query: Easily insert documents into collections and retrieve them based on queries.
  • Update Operators: Modify documents using $set, $inc, $dec, $add, $substract, and $delete operators.
  • Mixed Queries: Perform complex queries with multiple conditions and nested fields.
  • Conditional Updates: Update only the documents that match a query filter.
  • Python Bindings: Fully integrated with Python via bindings, allowing you to use Bison in Python projects.
  • File Commit: Changes are committed to disk only when explicitly requested via db.write() or db.write_all().

Installation

To use Bison in your Python project, install it using:

pip install bison-db

Performance

I decided to compare Bison against TinyDB as it is the most similar database to Bison in terms of purpose. In our performance benchmarks, Bison is around 2-13x faster than TinyDB (depending on the type of operations and number of documents).

Bison

You can re-create the performance by running:
pytest -k comparison

Basic Usage

Creating a Collection and Inserting Documents

from bison import Bison

db = Bison()

# Create a collection
db.create_collection("test")

# Insert documents
db.insert("test", {"a": 10, "b": 20})
db.insert("test", {"a": True, "b": False})

Querying Data

# Simple equality query
result = db.find("test", {"a": 10})
print(result)  # Returns documents where field 'a' equals 10

# Query with greater than operator
result = db.find("test", {"a": {"$gt": 5}})
print(result)  # Returns documents where 'a' is greater than 5

Update Documents Conditionally

You can update documents only when a filter query is matched. If no filter query is provided, all documents in the collection will be updated.

# Conditionally update documents where 'a' equals 10
db.update("test", {"b": {"$set": 30}}, {"a": {"$eq": 10}})

# Update all documents in the collection if no filter is provided
db.update("test", {"b": {"$set": 50}}, None)

Committing Changes to Disk

By default, Bison stores all updates in memory. Changes will only be committed to a file when you explicitly call db.write(collection_name) for a specific collection, or db.write_all() to write all collections to disk:

# Commit changes of a specific collection to disk
db.write("test")

# Commit changes of all collections to disk
db.write_all()

Update Documents

# Update document by setting a new value
db.update("test", {"a": {"$set": 30}})

# Increment a field
db.update("test", {"a": {"$inc": ""}})

# Decrement a field
db.update("test", {"a": {"$dec": ""}})

Delete Fields

# Delete a field from a document
db.update("test", {"a": {"$delete": ""}})

Query Operators

Bison supports a range of MongoDB-like query operators:

  • $eq: Matches values that are equal to a specified value.

  • $ne: Matches all values that are not equal to a specified value.

  • $gt: Matches values that are greater than a specified value.

  • $gte: Matches values that are greater than or equal to a specified value.

  • $lt: Matches values that are less than a specified value.

  • $lte: Matches values that are less than or equal to a specified value.

Example Queries

# Equality
result = db.find("test", {"a": {"$eq": 10}})

# Not equal
result = db.find("test", {"a": {"$ne": 20}})

# Greater than
result = db.find("test", {"a": {"$gt": 10}})

# Less than
result = db.find("test", {"a": {"$lt": 100}})

Update Operators

Bison provides several operators for updating fields within documents:

  • $set: Sets the value of a field.

  • $inc: Increments a field by 1.

  • $dec: Decrements a field by 1.

  • $add: Adds a specified value to a field.

  • $substract: Subtracts a specified value from a field.

  • $delete: Deletes a field from a document.

Example Updates

# Set a value
db.update("test", {"a": {"$set": 40}})

# Increment a field
db.update("test", {"b": {"$inc": ""}})

# Delete a field
db.update("test", {"a": {"$delete": ""}})

Mixed Queries

You can combine multiple query conditions, including nested fields:

# Query with mixed conditions
result = db.find(
    "test",
    {
        "a": {"$eq": {"myobj": 20}},
        "b": {"$gt": 19},
        "c": {"$lte": 120}
    }
)
print(result)  # Returns documents matching all the conditions

Handling Errors

Invalid queries will raise exceptions. For example:

from bison import Bison
import pytest

db = Bison()

# Insert a document
db.insert("test", {"a": 10})

# Invalid query
with pytest.raises(ValueError):
    db.find("test", {"a": {"$gt": False}})

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

bison_db-0.1.1.tar.gz (45.3 kB view details)

Uploaded Source

Built Distributions

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

bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (550.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (574.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (651.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (566.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (550.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (574.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (650.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (566.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (550.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (575.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (650.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (566.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (455.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (429.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp312-none-win_amd64.whl (245.5 kB view details)

Uploaded CPython 3.12Windows x86-64

bison_db-0.1.1-cp312-none-win32.whl (234.8 kB view details)

Uploaded CPython 3.12Windows x86

bison_db-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (550.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bison_db-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (575.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bison_db-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (650.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (565.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bison_db-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bison_db-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (449.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bison_db-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (405.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

bison_db-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (338.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bison_db-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (342.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

bison_db-0.1.1-cp311-none-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.11Windows x86-64

bison_db-0.1.1-cp311-none-win32.whl (234.4 kB view details)

Uploaded CPython 3.11Windows x86

bison_db-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (549.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bison_db-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (573.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bison_db-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (650.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (565.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bison_db-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bison_db-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (451.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bison_db-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (427.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

bison_db-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bison_db-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (343.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bison_db-0.1.1-cp310-none-win_amd64.whl (244.8 kB view details)

Uploaded CPython 3.10Windows x86-64

bison_db-0.1.1-cp310-none-win32.whl (234.4 kB view details)

Uploaded CPython 3.10Windows x86

bison_db-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (549.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bison_db-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (573.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bison_db-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (650.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (565.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bison_db-0.1.1-cp310-cp310-manylinux_2_34_x86_64.whl (377.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

bison_db-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bison_db-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bison_db-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (405.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

bison_db-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (337.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bison_db-0.1.1-cp39-none-win_amd64.whl (244.9 kB view details)

Uploaded CPython 3.9Windows x86-64

bison_db-0.1.1-cp39-none-win32.whl (234.4 kB view details)

Uploaded CPython 3.9Windows x86

bison_db-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (549.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bison_db-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (573.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bison_db-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (651.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (565.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bison_db-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bison_db-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bison_db-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (406.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

bison_db-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (337.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bison_db-0.1.1-cp38-none-win_amd64.whl (244.6 kB view details)

Uploaded CPython 3.8Windows x86-64

bison_db-0.1.1-cp38-none-win32.whl (234.1 kB view details)

Uploaded CPython 3.8Windows x86

bison_db-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (549.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bison_db-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (573.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bison_db-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (651.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bison_db-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (565.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bison_db-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bison_db-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bison_db-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bison_db-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bison_db-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (406.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file bison_db-0.1.1.tar.gz.

File metadata

  • Download URL: bison_db-0.1.1.tar.gz
  • Upload date:
  • Size: 45.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for bison_db-0.1.1.tar.gz
Algorithm Hash digest
SHA256 152877a8d11b15f103f379ea4c8c520044ec1eb3303a4cda151f25e848d4f5e2
MD5 029c181822548c39207dc83f18a82b69
BLAKE2b-256 9a2b2cd7762f0b2ee3bccca456ec54d3df2a44704d0e5d40a91066b3fafd182b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a97cc67424af2719239b9a84adfc8139ed6759272c4adcab49a221d3e86713d
MD5 e0e4b02e827b1a56241d2ae7c6f9d7cf
BLAKE2b-256 a13da88a2509342594d7ddaf289365953d99c1304c2a18f97b23328baccf9d91

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4db951e9a1a812c3717da347b004f0b21234418407f780d3a59dee6f153ba5e6
MD5 6f9af13b4665aa2a44038fb636f07fdc
BLAKE2b-256 2ff246e3ce6b0fab5a2725a16ec585654dad779f1207f9b9dbd1a25818a52857

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e26d79108159c094443a8309a3a9b38f033f75762405087ff08291d8cf6dc7f9
MD5 4a88224cc77257921fc59122a098167d
BLAKE2b-256 18ab3382a017af20af781e492ab3fa6bfe5bdd912cf69595b377f76098e43c3b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dba515132953f1fedb72570cb85909074a786adf61ae2b41e6b8b83ece03012b
MD5 6871bbdea231b430f26b3f904779e3c9
BLAKE2b-256 8f28f65f78b8e32a6f624b5f1741cbf7bf4bda1b3a4d9749f173e09c8e41a16a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d54922606f7ed73dcd803bc96e0415f9076ba64d69a71d4016b62481b1111aaf
MD5 ec7680f75313c1b7c967ed0f67bcb56e
BLAKE2b-256 15d66539d88f0b89aac02b164c2509300180b199ae7fee178e2c3f9c5b37e822

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59227294ed87d6f9ffb3c90fe39d790904bfcec311e8bed80e3ca147dd692d74
MD5 ae4cc7b83e4674e7475cdf2a986fd8f9
BLAKE2b-256 7ef4c839be2d3c6143251c9daf01e0c8e2dd9c28c51c4725165b7f57b74f33fe

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9573436541cb0d8bb93338cee9fc8aef28075de6670203f1d31bf07f85e8330
MD5 0e000d5087004740867ef0b9638d282e
BLAKE2b-256 bab14ae47ca74294834f657bdbc7312a0e5fd90080680af1a868ff489cc666ea

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bd4b7068623ea96eb37a42ac449f393402c1721e3cec359be76cb8cd73b5ea6
MD5 094669cb5e0cc9d02d6d3f9e727a2c5f
BLAKE2b-256 038a6004d813bc2573c327064ccf32267d3f81cac9ec20d3e67469f82987efcc

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 907acceaf1f335d817e74bb3a8018a409de9006f1a47d59219fbf3684951ba27
MD5 170e43e391195ab9536f68f409af63a4
BLAKE2b-256 22f80a83353d53ea72fce87a4093d55d17c7d7602fd523c7adac990725d7c7cc

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a961a50a72acb5e51de8d6b769bf40c0b28049989a1ec0652bcaefb9641207d2
MD5 c5362631b3396be7d5fd5bbaaa02d9e6
BLAKE2b-256 305e1a8c5994789df511c6ed24aa5be55dd72eb9b766557fe8ac9e69b16faa1e

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95cbb566be2d8a70b3683339fefeb3a056823616f394d8fc4bc89c39e66aabf9
MD5 765daa683a8bca7e310ad56f0a4254d4
BLAKE2b-256 40b77deae82c8d8d6a7796670c9d6dc4e52cb52c7bdc3611ef81536a72d66d0e

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8fbe4851bc1c8bdfcdd33ba84cacd0b2cc11309c07febb4830ad24c089e1bb36
MD5 9a3528efd9bc48e232e4c0da5473a686
BLAKE2b-256 302a473ab85fa0595da38b2d7606ca08a9aea46b02881d3456e1bdc242e5eba3

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba4543e2df1f4d7fe0ed64bdd12f0ebcd8e9ca3a3e54a866eb601d56e2397ba7
MD5 5ac743d179554ad743ac24c7d5bcee55
BLAKE2b-256 973b0db0bbf4b0f30a139c9613fa637866830b0b6988b8c5337de1e2e0cd4d5b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9713b0c5ba6aa71222e0de379c3f1a3d7e9f862cf6b49cc4666921cafb3302f
MD5 593562dee1c00f5687731c054eb75007
BLAKE2b-256 68cd9168fc30e31162c39e0db56a06fd0472dc4193cf76cacc3732bbfa2a53e0

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 097cb5aa79e514a9e1ee10e3e39685104223c0691ed232ee8b47ddecb629dabb
MD5 3b13f964094e1f23d3cee7798f5f4017
BLAKE2b-256 b30cc1271c5e3fd21af38e0da10b06befd0706aa232b75f19567cda96cb1bddf

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa60d4dff277a41035c150f02d5a7762969c64764144c15d778cd8cfd4863cd9
MD5 25f2725f3927614886b9ad3bb0787d6a
BLAKE2b-256 2e4e239940a7cc5e86eaa5987d008e09a06893d2f70e2dcf67e55769ec53f6d4

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b9e1a78868b22ee08c2c6e87cc88ec577ab5074f00657d1b111ebfb62b1b6a1
MD5 aa38293375e72d164e0001b1e667116a
BLAKE2b-256 82fe96aa43fd9c4b86fc99bcad828545706d7b88f8abe20f0879a03029b33006

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc99f4286d8f5f0b272e0f2046e161f6c3a75cf10400be6f99bd6d74787bdf74
MD5 5a34b0ed54902bbb8993ee1587895fef
BLAKE2b-256 dc30e7e5fbc3c5acc6f74cc275e5e096e7bf4758ef5e6b0e785c1470bc72619f

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af3932dc217d75f869ec44b3811bb1d13c58fac20e38a9038c75786504eccc93
MD5 627e3197b06553bb8e84dcb9436a4e61
BLAKE2b-256 ba2e8718f64658ef22dfaf81c8c29ae10805e95ce011d26ef99e298cb5469658

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5216f225475c8af1b3530606db2d0556e4b1f99adc1bdf620dbc3fcfd58eff2f
MD5 04424838e9ea9cb37694e67c4cbe40a4
BLAKE2b-256 8e006677de24897a356c82eca13eb4c666d4e66c7938c48ff4d080e04e201214

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58013d24fc1720f368dcba0aec7b77fb0ff118201efa6025edfa0741bae45da0
MD5 1172fe7599a72e7657c8424c1a888eea
BLAKE2b-256 da1f0d9a303304a441c65f360d1bac0b6deb13a79c7b625d766f718d0b3b8ea5

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e62d35ce385dd745fbdcc62803ffaf10dc85878d8b14b8f706b5e8483a1da158
MD5 4e9fe77e16b6fda26b350ef6932fefd3
BLAKE2b-256 6e5063f8f9d3283b4e5772af02798627bd9b3b5b7dff76eb8659d613bd32ecff

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 74e220aea092cef5b02a1a74da8efa67469c55284351c58ceab738632dfb78c2
MD5 8f6be3a6cb3ecd84154a782d026a5f23
BLAKE2b-256 8fc1361ccced75890d39accdf67b88107e4e36cae844a6333ed4abcb6c05d4e7

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfeb1e1541ca5a76e5170d048d1b3e51410ec143412c6eaafbf947f6cc7f1d44
MD5 fc1256205aef4fe1026c2620aceab065
BLAKE2b-256 d49e417d9d17ee51edd4a9c704c3c6b731fb8fc08fc423aef74afd0161fd9dc3

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce99f1421c87120d30e2d2d74f2616cc2ceb0d0baad646c8f3308c6d92e3a4b8
MD5 43498274f32a2e39808ff9f420cb3e14
BLAKE2b-256 8d269e782cde774cd6b817bde6c32e18e645950eaa2a720de8e3ff73d56bca32

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 986a785c1a921db362546c1b5bec65f62db15b877bb35c5dbccfe772d1d65b39
MD5 10dc811dd4bf6f4a6fb3d136023cf0a9
BLAKE2b-256 a9b738957ae7cc80f12dc9b9c604dbb4d79b89f69ef4d65ffd2639f3048e011a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22109e932c5bed663f78035794a88a4a326abb23ef0e7743abfe2e2d772c1c60
MD5 72acdc956338686026342832201d7a13
BLAKE2b-256 0ab80b930ea5cb51849511c3c82a7efe89024f6c7427246650cb2029e1c45c69

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e47640283cd7024a8b4128ec45e26d134cfb069db14a12959642163a4404ea0a
MD5 56f32015d728644465e49f2be38f317a
BLAKE2b-256 29db9c44c2709898aae3047d45fc477a366ae69927ef35d4ab8aa63a9fbbb8bb

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 245.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 da091a5e02f07109e6a45a6c7c2c34d27483849da9ebe0d33008599fd942f543
MD5 cdec5d3299fe1c85577793a81b4bd7ea
BLAKE2b-256 79dff260b6b2ce5726bb6a2a0a4b791c4785b9a21972269ac0fe1c462e474d81

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-none-win32.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp312-none-win32.whl
  • Upload date:
  • Size: 234.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c5d1185c640825461f19d774644a43d8afd63e2b79f3df37b940b8d95e7b8e70
MD5 b8f20610048ad24527db3f9458bd221f
BLAKE2b-256 2fa7d6672ff022f7808e477eb27f451d472cb0fa83ac0f2ce36aaea8e05fc65b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c0721a8df3eed3c96aab45e662f4815d759d5281a82a76146066de4b785c74
MD5 5849f605bdb2945cf212a99c66aefec5
BLAKE2b-256 961de235cd84a1516ac373a41219cd89469b0773cb0ab3b19b5651adde893305

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3694c720ad7e7a26ad9a27732e35ae2eff1a24a6618386deee93893b2f155e28
MD5 b8fe47db7a5596826dc7792b7bbead47
BLAKE2b-256 36618c83bc47fb869eac07dc64567cdaea01d81f3ec2ec6da64d9d759d22247b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 767a422812ba528bad0e10ac1cb361eb9da91e632fcdfb7ca626661b7c7bae4c
MD5 67530468096839ac941188938c1a0655
BLAKE2b-256 f1257231bca47934bb90a68cf2395cdae5888dc1646fb6a10ba4f2d142c187cc

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a92bc928ff5049696fd990493c5bb025031c4bc6fa8d09bda4b17c55e03f5833
MD5 7a1667f44b14186394612c2ad13706e7
BLAKE2b-256 ede3d7f481e66edc07bc761dca1bac48f0d250fac8a11b8a2a5517511019d086

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 909e62dd926977dfa12a18ae91cbf36d4fadd86b971748e5170ade6e93fe54fd
MD5 56ebb9af5306878134b549a588976a3d
BLAKE2b-256 5783402152189082ed04e2595756f5c8bc60b55c24a9e16b9effeed03fdb12c6

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cd1e7631e1b13922c1f11e8182f981004738d45a8627330c08f813a9a3eedd9
MD5 a082205e91c911deecce8687ca3ea117
BLAKE2b-256 cc066e344c7b4d235262108e756dbb1bdae6a6f2ba41e939739222372f9b416b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 378ada6fd86ad60fc1e660d3e8c755ede354019912454f57273c57afa5816201
MD5 694edb5aecbff4e3f07d9474768e7cf3
BLAKE2b-256 0f45aa6e508e964701cd7fd4bfd88a9f6e512736533bfeca1bc7ee129dc790f0

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0af6a4adb26cfdb4cb5ee3f487af0d3a0390922c46e242fc99937871c2452ef3
MD5 2010f9cd8effea4a7f15cc6a5aadea7b
BLAKE2b-256 e26069c9a591c94a9e3c6aa8e8464c90885638996d920450b5f3bdaba0028642

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73afe9aa0a48319fbb2adbb47f2aab71c050cc4812496f959d9a57f998b307c2
MD5 cc3a796a2dea3043046dfe161a715102
BLAKE2b-256 e2b913bb785ac36a3927f20c513598ac689a449c9ca45d2d64884c2198aa3868

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cca3c8b159f4c492641ae6fa94ae070f8a3a401991b18c5dbf4d8a760760e69d
MD5 95730253dde1fda103e4b601cbb083fd
BLAKE2b-256 a0f7a9064c3169be6d85325439d1312d3b3e51d21511d19f8f66b0fb9f837aa3

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d2eee2cf954ec74bbfa8d84e9738ccaf6fc6df178a1e1fd6204d59265ac867
MD5 421ea53b0e8b51719ab90acc7ca7f806
BLAKE2b-256 4322cf8b187c3d2a19f74246412b79609fe2e84d703a778a2a817a68562dab2c

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b2e007be0fb0cbd2b9531f2c0e795eccb53f85b683b66cdd916b571f8d02942
MD5 a80d6a050a81dc1fa287ce04c2d94aa1
BLAKE2b-256 2a24d62037ea67d26dc4272c4b46f88b0941ba4049836e6cfade2e3252f3b53a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 243.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ae988b4498dba78f59ddd66a7f4b435819af0482f3b5d825979cc6a08a1a27c
MD5 16af86d0f3dd121bd182309dbacbf04f
BLAKE2b-256 35247947fddb6df6ab6ef0c8adf380db550290fa71b956e701f44071b7b0e366

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-none-win32.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp311-none-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e4f3c8a3c91d13bf50539c0ba2f6bd63cb283288943bf751df4bc791d5dc2a83
MD5 4614dfa890bb8b2a11a6351418b7631a
BLAKE2b-256 55c7f17477467e3460c1aee7c0d9f694d24bc2fbe2a91bdba2601f0978db1cea

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cfcd993aa19f8f3af872fbf5a2fdf682d2fc53b0900d6e5d3da685309e20572
MD5 ee31851db6d365e6f51380d545425b09
BLAKE2b-256 8298aa7a08a6151d3ecb8c5f07ee11d569654a874375933044492d00f781cb2b

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd171a9c734b99cc56d27211bb7cf58b74af9a88a55b216355895cdaab6b06d0
MD5 f8213503c30f45817b8e79cf9001c7d9
BLAKE2b-256 5c33814b6b00456989dec2c4ab2fd2cc70a08180e91dd484b3c1542f0a63bad9

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42e6cde6a8eeaf4bd6c7ad95ca42fe1be1953512ee7f0815dcf9b60d58539919
MD5 4395ecef712ddc63939382a1f13ba613
BLAKE2b-256 c716aa3eafbabf955fe6f0782c4177ac2146d8ac78c31bbc76f5057c382f5ce2

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc7420dea6a354f04257f22a1c82c218bfdb81dc2b9c8b13da30d375a722a8b8
MD5 9676b40030a304d72821291d4d716721
BLAKE2b-256 34b19bad0e0a4a24f407bb04b40de0ca425cfc2e7a8cb7635022e568e94bee13

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e15ae856a1dc5266d4dac1822a3cf25729236966bb81de79a002115066636ba9
MD5 03de84ec8447c68ab3964ec0b3f61de8
BLAKE2b-256 d701e9a468fb2ba3eb5d61040018c3c72b3c8088c1d9533524c5a5c2b9bdf40a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eae0336513bb21ed4463af924252f55dc774a1fe7a227a331ffe2480cfbd68db
MD5 2ce1676017fcd306ea71d5fa6f1c0ab0
BLAKE2b-256 0e94f1a05dfb52470440c462b9ede575914c8cec2d67c2ae3a59a4e16191b62f

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1a835ffd46775ed99fc1d82006ba64226267cc6c6909da4271f42ce5e6b5125
MD5 c73f8aee7a5a272fc2476bd3aaaf2b8b
BLAKE2b-256 6002f735b91d3d96241ee21bca3be13b2838f3f205e14df046cad49e1cbcb1c6

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 962f96e0f6d01bf74dccf69101aba7a84e2bad2f6bda6243bb3f48b9eefcce5a
MD5 662981f302c24d0159e8d66754f1107f
BLAKE2b-256 02e73d157390e751e21026134e4358bfe0078751f870c140bb3ca86620a4ef4a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d52ddb76adf1ae103c5d8e0a1ee15621a0a392bae0ee2e5340af9515f53c031
MD5 7eef186b8507b60e92d48ebfced7e9ac
BLAKE2b-256 9a88e679f7e28b5699cf9bb52676b5f97bd2b60ebe36f81ec4712e5a41dfb433

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 660ed7fa3fd25d682b43e112c0f9e2ea809f5ab0241cbe7ca4aba5385c555563
MD5 7005605c1b48bc4cd54be4e10dcb71d1
BLAKE2b-256 75cc7d281492708adab8245e3c17560842ab24fcb5a1283e45f46f610bd65fd3

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8dba889bc3e12d1b24a1543482ba8f5d9756c24229d14f4216bf851d748ddd7
MD5 8710d6075ff0898bfd984390c1f5b193
BLAKE2b-256 ede51131028be4e81e6601269243dd66397c3cc919769d01299796132f95ac5e

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0e537172c63d896f16b83952a850977ea4a51993eb92798c77e44d5ea6d7ab4
MD5 a32f8702e6b25bba6d9a3e1522aaa6f9
BLAKE2b-256 cdb2820e78f65cb3910527acedb5ed07189640113609e949a8fb8d24913c2326

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 244.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fefdf5617ea2ac68fdbc2ae96f9a4c9a59b572998e16959bdcc153625c34fc76
MD5 93963d098eff4997813f13772fbb7183
BLAKE2b-256 a0a3494ce61089a0de2859f49e39b9badb8442cae1d25640890fafe665e13bdb

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-none-win32.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp310-none-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 433c9024a53944f27a12afff941b2b2d5439c5b45bd03f3ef5b9b3ef0cb7dfe2
MD5 bdcd0ec00f55f8de3b2490937c370f97
BLAKE2b-256 ef44d7ee48744a37ab9875507ca930960e7ca9c701a9b2c2452c4ab94fb150e8

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16c62b533394c7ea511ac5cd37fdc3210d93b55e53cabecd117b161f969e0b53
MD5 7b76ef783500278e66a0133148fbc84c
BLAKE2b-256 4699fbb0a9a3c34abcfa7c59c9347dc06b3c2bb4c9e01bd9184f6b270ae4687d

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab7b17ab88f9e9a1e15934d7bffe31b8a3b57ccce8b05dfd08a5dd958ee16a54
MD5 d2b24cdbc89d20c12043c690996393cc
BLAKE2b-256 2758638bfc60f7377e98c93be591fa2a4d7b6dd91fbf9e2c6f0b89dba5552ae4

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 004b4042d6ba73c2a4d10bfa7ad009bffcadfabf52ad95b65033e88323b21264
MD5 f9d2c9bce3c4671206c7f5897ef210c6
BLAKE2b-256 d0aea21261a22e18336fe51df8b2a10219630261e348bde25a44f634b6e029b7

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3220914340d279b88f2245a208e98eda3a4986b0fa1011bd870be090dd60c533
MD5 d9c5a68391205430f49ed83dc8713e5c
BLAKE2b-256 d834861d7f74d86026f87b666ac11ee0b72077d27935473f0051d70f780ed79e

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ccc8478d9147a0d9dca25fecfa2e1b7be763efd30f1a7440f5a72f3c500e9cd8
MD5 101c75a4a6b30b31b2adf3d0d54031bd
BLAKE2b-256 7217d87caf62dd797af7dff40c6e1e5e7fced63c8352376c41d4f907075ecb87

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8058ca523b3f488e2f852e39c587817dfee777aa2605f351da5a83b7a7423270
MD5 73c788320925d73e92b666fce4717437
BLAKE2b-256 d1d9210d21997fa0cfe7581770ba44388da10ebe3c9c65c18fcce788e5132952

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5db3e211fda768a6b22215794e34fc27c069c242e5a70822f68544ee94e9789
MD5 009cbdb8c480c490c61df83baab1d46a
BLAKE2b-256 19baaef0e9c8c8f7ea8505bf36ba45dc15bdd47db227910166a0e78afd49c5d5

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23af6abf29a9bba0552927dc22a81e3da02356ad3216a530fb3267e91e6cd49a
MD5 454ba1efa3a3635904226edf6f131e95
BLAKE2b-256 5a5da82d2a8d3784c3a423a21064128cde1f9f9be717470983a3fb86677eb78f

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3996639ebfaaa2a73b5efd99230dda1a29e896d2e86645f18c229742321ed49b
MD5 6bcc5f5fd8e14f6f5d452fbcd1cdf752
BLAKE2b-256 923d000af766563809b745ed38e56bffba067f2a50f7d271eed24841046fdeef

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e7fd9588f1c6e38f96a78a3ced6036d2a01f35acfb52dd694d88027162a66e6
MD5 c7e6364e0078058c150eedcc47ebfb68
BLAKE2b-256 bc8cf29a58ed20654dd7aee532ad62c10a87e2810928e8da04efbd0b46107192

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12e6663f57b9b58c84864a48516d43563070c2f24d97e008fa4b3163310f4a36
MD5 6ded92f07014151a896b54541e458e60
BLAKE2b-256 b6dc8a05750844e63f9b8dbf1493783522a6d76323a8509e016501ff9288c30c

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eef4f7a1f4d59bf726fe81845a24599270ef2a292943537ffd99f438d603c4c2
MD5 caec4a3645a0d50ca8790a59a86612de
BLAKE2b-256 47160838b30f90ce113323ca573d9f80e30eb7520bee217773a2372e1aff8122

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 244.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d653fe68e6e07ac62c383374f9eecebb099affb088b5e5eac191f1916bef542e
MD5 c93e4235e33fbd3e76a057bf74deeba2
BLAKE2b-256 82e551cf20359610633ea76609b7a2186d2868dbc900381245e3901967039116

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-none-win32.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp39-none-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9e09cf33cc61bbc32580417b12e908328887c6796dba879887892ac13cc053df
MD5 49a89c49f048ecab4f07541eafe535d2
BLAKE2b-256 abc8d122efb9e41879da8a4240766ef08c6dbeec411417a2495dd624eb479cbb

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c60b00b1810ea6de2d98612dda7c63c8555252021ecc3350b3675f01c1d84333
MD5 2b85b49b92e84025760bb151c00ede89
BLAKE2b-256 0f8c22168d0a1d5520da7c8f09d4e5ddb424be906229fca9d6a98b519efe8003

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4150066fb06c42bea7fd01ac7bf1a51276267940ddf9dc218645786cac10277
MD5 c010fe64fb0fc7d0bee5ed2cfbde2d31
BLAKE2b-256 ac2acb1aec7eafaf38b2ae2dbe6eaf91c4e23dae96042091970e0590dbd795d8

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17127989dfa08d9c255057f538888d258300f5284af0126b9f8d92a99fccffb9
MD5 3a485b189da4fbb20158397c7abe6f8d
BLAKE2b-256 e050e87799ab76cff665dbbaf5d8a49eb6717c62e809dd8946a16c521146d590

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9563f1b1167737b76b4f126f26ececaf525d365d5ec0d0e5055e898e73e6d61f
MD5 188e59050d50d0f289e71bbbc3a56a77
BLAKE2b-256 7c017cfc0e6fe49d12a4cf0524a2e6db8147dbadaebc47a0d1ac0bbf784eb985

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7607e9919a353966f40481deed8f0dd265438a25407b01af4bd57eb1a7bb2cb7
MD5 7137056be24e9c88af93edd7397aa8b1
BLAKE2b-256 b6baf15cc99b640b1109979418e4411eb3aef83f3d3b57244c401787f53d4545

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c62fc1e92fa533f6c4275b42a8c31959549abddfa22128c3b9be6b5060382951
MD5 0261530f34ffbed5e3d39edde5dc026b
BLAKE2b-256 5295f00df5738e9a88280dc230ed976c5a46dbf665fad8ab4df745977ead88f4

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b9de82a6888345c6b8f8c03cd8834319a37b792edf15995ba6c5e3148c7d174
MD5 9125b346bde42303967e8447ecd7e013
BLAKE2b-256 d5efd69868e7aed6235f0a55c4d8fedcb85079a8e63dbf0001d9501bcd5560b0

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 535bf4444f76ca6cd464fda204c903eff9256b5a3d73fb49358f08fbc003847f
MD5 02d9fa1835783c5b07283058a34e8201
BLAKE2b-256 e3e3028298724ab5bf078a6764d3922b49c4fe0bf6bfebe9705da4475bd6a082

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 553fca1809ada0b9fc766cc949c7187780ac79b733e06e788dd7099882340eaa
MD5 32e0e6cffc7b83065e28ad283ae05eab
BLAKE2b-256 15a8098e216534a3aa6aaf4f761b7595569e7dc47cdd08f159c8c962951e20f6

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e75bf4c50bc6c4ce40e17280074850c9041dbed2b564ce6e2a8ac5d3d43eac33
MD5 ded252529e8f16c88c7ea6726242e4d0
BLAKE2b-256 27fbd4988f5c7d4445b91d025f875d645d0f7d50b8d518580db4e8818ae209e5

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e703091afe58205ba73143fb49b2ef286194da1861a2d37a934ac14b22b4a4c5
MD5 418b889dd774df50119705187c4dcd96
BLAKE2b-256 8d18ef4393fb93dc02cbc6f92a94ec91bae954f20bc41afd0a7a4a81e7f675df

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 244.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 46f4bcfa0a4530d0a338e8f4e0e188079273d03fe8ab91ec9ac88d7dd92803ea
MD5 d2b650ce5e1da355850af6b57e6bea49
BLAKE2b-256 490c1f32b21b91cdc34ee444ad3c946eebe6765b4e7250115023682cce54a25a

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-none-win32.whl.

File metadata

  • Download URL: bison_db-0.1.1-cp38-none-win32.whl
  • Upload date:
  • Size: 234.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for bison_db-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 32e3c1f8844aa5a96885fd6883018c1597a5a2b460f79ed1ab6b392099f69b2f
MD5 f9db1b9f39d2da9a00c9b8b18740d74d
BLAKE2b-256 53809d23a2015c9ea9e013595885a2fc15a24d1577e9e1f54b4bc823eb8dc8be

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 796add6107f31824bad491292f1a64da6fa42f03dcdf552bd9615eb6be24b1a6
MD5 d2b5d4cdc44b9dfe0f231b14782a5d53
BLAKE2b-256 7472aa1edf818486397b48716263720c9cf4dde9443d79f27dc39412b71c21fc

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 779bf1e66a8405c8bedd9c5a81e213ef6de7c23a60db6773639a730c3baa1b88
MD5 f4531e0b18fdaef7df3b17d137cd5d79
BLAKE2b-256 be6557db5b21772bcf1de0b98f0224aefd7d2a6c69a7ff745906381cf095d8ab

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc474ff7033dfbd8524cd294a08b4032e4b1c3c492f3bd2261eb7898baccf702
MD5 d19d8e44424bf6944f0075f47f936638
BLAKE2b-256 20ed2317708a3655fd026881ff5bca7dff4e7364cd8b37c552cead102f353dce

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 998ad8c38ffdaa92e5e3fa5864e3eff73b6a52e2a5f42d48ecbc4c50decd0635
MD5 960492e1c72c5ba9a93f625a3cc67294
BLAKE2b-256 f71fb19c115f47f3b0817479ef4ee305258b27cf27bf592a67ea3f1a37ea8e29

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbe971510402f94acaeb2e191871b40636a40b78623218f02c3dd4dd42e244ba
MD5 17c8f5c2ceab9041b2b53e04d38b811c
BLAKE2b-256 41a7bf90222bc355e8719edb375da42543014535c065e1ffae03d5cfdee0614f

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37b9b86a646b60e5810ee54e09963012aeb278245c7bb5917360c729e926b655
MD5 b68c339315d2ea9c074ab189a0c4adc5
BLAKE2b-256 70a682921d0172cd88476eeae573c0a9b755e9b578bafaa7a27cba0715525047

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56efaf57a6b572c485c56e9075be21a7d56f4f820e19f3e297f823045b62d0e6
MD5 6f6f2e92f282c4ce3dda5885c7bfabfd
BLAKE2b-256 bdefa6f40443fa2866fa013d4e6243b23ea6c2917c2e05bebc2d7b769f27a5fe

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01dcf933a5c9913c3f34a3dfa0128cc8f7ccc30fb2c1200660dba90c8d85711f
MD5 64f992df9c928ebfb91b2293d144f902
BLAKE2b-256 a86555a4f93dcea595d92a901cc4327969466dc772878a6cb24f426580bbe842

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a76f89e0937f079dc6b4a1f44f76fc022b2ac9c1862171ade1fd345e07c1e6b2
MD5 47130895c734025c8e8319279c4944c0
BLAKE2b-256 4b8a29fdb2f9596f4b142aa50f1f093e31fabb03286416284c6f5ac8c65c9842

See more details on using hashes here.

File details

Details for the file bison_db-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bison_db-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d004e554ca8502bca0cbb13944e38941290b98639af897c229268ed4c37bc765
MD5 e91ac0cabf491eeefdca7ffda5af0475
BLAKE2b-256 0f725d058b3e5c90818ea80e1b5d7404e9a10a2ab95655e193afb40070aa1e70

See more details on using hashes here.

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