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.
  • Simple nested field access: Access nested fields using dot notation.
  • 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). The chart shows the median time to execute 1000 operations on a database with 1000 collections. Each update triggers a write to file in both Bison and TinyDB.

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": {"nested_field": {"myobj": 20}},
        "b": {"$gt": 19},
        "c.nested_field.really_nested": {"$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.2.tar.gz (46.2 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.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (550.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (574.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (650.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (565.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.2-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.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bison_db-0.1.2-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.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (550.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (574.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (650.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (565.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.2-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.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (454.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bison_db-0.1.2-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.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (550.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (574.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (650.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

bison_db-0.1.2-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.2-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.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (388.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

bison_db-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (550.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bison_db-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (575.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bison_db-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bison_db-0.1.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (338.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bison_db-0.1.2-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.2-cp311-none-win_amd64.whl (243.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

bison_db-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (550.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (565.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bison_db-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bison_db-0.1.2-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.2-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.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bison_db-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (406.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

bison_db-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

bison_db-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bison_db-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (573.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bison_db-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (650.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (565.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bison_db-0.1.2-cp310-cp310-manylinux_2_34_x86_64.whl (378.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

bison_db-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bison_db-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bison_db-0.1.2-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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-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.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

bison_db-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bison_db-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (650.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (565.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bison_db-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bison_db-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (452.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bison_db-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bison_db-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (387.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bison_db-0.1.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (337.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

bison_db-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bison_db-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (573.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bison_db-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (651.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bison_db-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (565.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bison_db-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bison_db-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (453.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bison_db-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bison_db-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (386.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bison_db-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bison_db-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (406.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for bison_db-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a183b563f12f2ab44eee471f30e44e62278bac7ad1d130c96b1781d68e0fd45b
MD5 2e208e0a674819b4c61aa4ca2fe5dd99
BLAKE2b-256 718d65e5f09ab757cfcd3b4a56e8d290ccf58781249e60348e09aa791d1efef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89b8181d418dc8d0e82db78f5c3345e7ddc4c3704f1780f543183141ceeb01d0
MD5 e2e93f55c8f387722007b4f60f7adc41
BLAKE2b-256 8fb2158921f32cfa6c759a55b6e603d8814820a221b668566c77c3d475634ac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bb094a02c61b38d90cf0f54440a5cf5e5dae07717ad8448a97f15e1929d130b
MD5 c0f26d64a72d3b7473a8054be1fa0607
BLAKE2b-256 c420abc158b6b72c18c25568bee13125b0d7e1b514f1978f80a0d81b9d88379e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b09a01196849b113a0366101115b1554519abf33d824dd5a07b04299ef7847b8
MD5 f960083044fee1b127445975baaae65e
BLAKE2b-256 1b2790fc42b05888689546c52d8df2c85cfa455c5a590b265a509d90001ba416

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06fedb74eb6a09d78a6591e9b202c59687829c0d3fc4429f6fee280f98050f69
MD5 d6e77c582e7de8e31a9ff1baf0554e55
BLAKE2b-256 9164d6817abecd90d2c43215b437b12b94c3fc7c6675d49a88711e467b55668d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c3534ea77f5fbbc30c60d49dd23a49774fb1fd358a1e31d572ec22c48f0cd69
MD5 18a4cb1db55316fbf584d0fac54d2351
BLAKE2b-256 793901b4bf2df63bc7f04373cf77ab4dad4b1c97f41b7c570530b43252cc7a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75b9f7176e2a3d5e4edc7e209bbdee57305b7459f4523ae945bf34ec48d894b0
MD5 ed6acd104fe4863061e8f6f10f05eb3c
BLAKE2b-256 202a4d0f5b4f473ed955d088bf015a1b213b1b632e20d9a5156dfe7300ae3afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dfe5b948c33b53b6ae28f6fd5fd5ce7fc5e0c3386de36dce1eef3716d66bd82
MD5 dcb9febed18ca9a1cd95debc7bf6c350
BLAKE2b-256 3ee06766b61c8538ecc31af91b8ecf37bd8c843cb133000fa1568c71b7c938ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89539241ba1235fdc5b10a2365057e5906cb522f9adf6775c909ff03e952ed4d
MD5 235a607554a5b0f348c56c0e4140a7a1
BLAKE2b-256 e76e0c824e77a8f555fb908a1df78bf4f94dc6faa4d9e12547745e149d3f5407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a5fd6305553cf80557077210d83b6875ff146a14406c43311ab74cc691edc6
MD5 0de68448865b839701b42e12acc33fb3
BLAKE2b-256 e439314c1997d6b5ba2fa920a0acd09601e4c1cd4202a626dfa11df84e08d21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd3388ffa056bfbec7b9308b3d7a32f05880f738b47a6f74ba9f65a9676bfca9
MD5 f81df03986c8ecd37fdf2b70ebab8014
BLAKE2b-256 4fd867cafc4e428e7fc291e538e27b98c07e8fc6bb91b5f9e3355cd04d1eaa14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2355b9027bf61e0de55a0f10ec1ca4e78bda29c9806dccd8cac01567310d952e
MD5 c35af735bd4e43deb3d50e178a228402
BLAKE2b-256 b6c80323fc4c8fe7664449af53ea448c1bc20b59d82a488ea56b484fb63c7edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4119107a4ddd6cc83cfa8a94f0bbbf3e620d7c1726f28e432440666e0d570964
MD5 d5bb5e5ac989438b2aeaa5c3c26a5e27
BLAKE2b-256 bee3982e61c1b3d3ce2d16693a3ead064bb2ce965e7354d566cff0c26edf94bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2b5f4096cd27b629a09ad1dace8ba30e8c85fd8390d01b399fecce5191dd7d5
MD5 289d80aaa3c27ac92c8db54cab97af73
BLAKE2b-256 7a3cc203e10a0ef6a5668c6876434276b696c31238afadc5435444191382f3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49b777aaefe5dad1892458f6fb938886069c46efd1b9da6032ec204fb51c24cd
MD5 bfef682df9fdad164917e2fd9fcaeb4c
BLAKE2b-256 a45560f80cc4ed1f2a7bce5de604691cc93257a3ef47584d3fe2449423f350f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d403cf0bb07cdc23cee70a240b7af9cb037d81c11ab1157609f9fb4cdbb407f8
MD5 f41b9aff1cd527fc6c83d200cbeab899
BLAKE2b-256 6342cc4958a0f1247fa8577a073dc0fdb95ed4d4ac8265d797d23489f0ede904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7784d4536dad8f7edaa515bc43ac435f4f81a3535d0448359f8146572f41f776
MD5 94fed2602e500392a897ffc22f18891c
BLAKE2b-256 19d9e0456741af96ef4ca9a8c08a44fb077f0c4b7d76b9262e28e772669216c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ca6d56babafdfdf0f3928e5e72e210de2cbcc151703e07d25304d47273877c6
MD5 3f618b815faeb93cb5a107b12e8dbe25
BLAKE2b-256 c8581b941d0757567d02eb97d8e0742edc0e78774d2697329808e094ec28a06b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac3c4a391f64fde050dcf90616f40893976652fcef48e9835c4ab9e3032f2201
MD5 99207aa9564c8b156bd46279c42b235a
BLAKE2b-256 f1d0e3513447ed6e69b55c1e92ff6e4b1961daae5181421e4c7a39d930a3b091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80285ededf2af3e3bd0bacde08ce6e813d9abe419068a00f6924da90e37bb419
MD5 681c708946b9e219024155a163988431
BLAKE2b-256 bd8a8678b33cf5370325da720818fce5461216b29c8416915cdee5a6ac3f7b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65029baf93b0f5b5ffffaf3853cd3159f5a7e6fd9277b7d5850847b8feb416f7
MD5 727630bf9f7f4748f9ed9f8f9e825639
BLAKE2b-256 3753598acbcea250f5b4b13b54fdc78fe9fa2ff09fb201b818eb183316d1b702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48b09404ed849c993c3e8522991f3183479cf88c98ecfc6f006f736960f9ae1b
MD5 753f68cbd2c766dd79265a6f9ec76933
BLAKE2b-256 22a773e44224c90a7b4e865e0cde22dcbaffe79580f98ad26e2a2959c89da4d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9ebb782841a374ae736570e581ff7f5caa0709f030b3a84944d7f8da6b49b38
MD5 9bfeb6d757c5f7076d957fa41a7b5dac
BLAKE2b-256 13a87732ff020e1ead9cd925b597babdbf82b8ed011991e1babd51c738e0e65e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0fff48a26c60827977fb6923461b208c25c156acbfe110da62cd5fe5b2033d9
MD5 87e5e83484715385440d7b4e450b9677
BLAKE2b-256 f413e4c31b0d5564940fa8c387e069c8ec69522434ec8a57c6201a430a025ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97d875faf743ddb6c5c028a61a24247b11025b8ed75b64a7853ed6668815a307
MD5 8ae01f4d0d4bdaf87cdcfaf61542840b
BLAKE2b-256 87ec03ce3de2429455be982143452a9a3ccf531e4e3ec3543dae4b26381b9398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 068a21be13e2fcc4e53647a532f251ed07e2c4e68a209300da0afd2fab2f7176
MD5 8143a1f88d4a6b1d72ff58952416e37d
BLAKE2b-256 3b6be5c5f0bd947a7579f3315d1ced73aa52544d54cd1261b251e5038e83305d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79b78d3834716ed43a96cd43f46eb99edc33a710a9bbbaae223eb94b1ede8fdc
MD5 cbd57e7766ecbee758b50676f6eac38d
BLAKE2b-256 cddb507167fc8645975444f83ed4c927c04c0b674ec3cd2a493d844f327de10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee8e850e042fd789b37c78db7296511fa5641b29ea161bf6471b2f2e06fc8de1
MD5 1b0b04b0355447dcbee7fbaeac7c8255
BLAKE2b-256 6c277c7bfd9205650ceca4764ac3144ed440f202b3c34737fe645a659561dab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9b5229ff7e6265ae714e5e711ed4a3b1f873fd2515b765161d5cc1f2587ba74
MD5 ab8a95cfc034620ce78510c01ab01e75
BLAKE2b-256 0dd678fc3856ee9c5056b264f0c802253adee2db521479aaeaa7799014b05a41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 42db576912055effa16318bbc331bb8a8758830c7dcee49d14f5f1f628a5e6b6
MD5 1e8c56611daa78735999edc30188e802
BLAKE2b-256 37380ceeccaf0bb629f97c326ec2125a78542bf76a7cf866456aabdf55a6fc27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8380e6a0aaf9c15e1dac7245abfb598c42cbfa8e7bf63f6b617e214494a7ddbe
MD5 24dc7058d742542e85114b32983d2741
BLAKE2b-256 f7df22b0ad14d25af25ba541e167eabdf5de51ee7f46ac16d5709ffc1ab03d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1184d9669a27812da8096a3f8a57c77d863f07b936bd26b337a62aa70067ab85
MD5 8e4e9f54bc4666883320caf28ab0a15f
BLAKE2b-256 4f95614a8ecaca897254d2188f8ef6aa3ca91680fe7e81946e4e3bb0f3ef8b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba6b4d504816d725dcbc495413a1ac27fddc105aeb96648f9181631ec5f8ef16
MD5 a1f0be7830bf2548892b128463074e5b
BLAKE2b-256 428b305d9b3848437037162d29c6a578cd9a5504df49fd4c36619d41a31e2cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ec50f6f88c31109b76963a4b6fc9a6d48c9fb99d8063dad9a46cfb1cba74072
MD5 f63c7ad2696dce0aba00878fa3889ce8
BLAKE2b-256 6d23b428bb60d9cd8ba99ddd4170a207523919763e2d9d2608ab4838d56beaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acd72891e6c03c8bba03e45dd2fd7a954d9aa6b1329577b0e0ad17151f445c6d
MD5 e1b6a699fa69d71d90f8a8ad1ef40dc8
BLAKE2b-256 d715b3f4f0ba3b999c99a6c6c918b289c9c794d976da3561fafe5dbedc8994b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a804143770ba69bff72cc1aa384c53297b8e3f07edb7bce5769b1f079f271ac2
MD5 e5f26f94f875dfe5b138f04533602df7
BLAKE2b-256 403f653d3c617cddc3f8714d2243c98a33478c0f81f15c09b8010cc62cd39d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2a90a1426eff7901c1bcd823a7df5af1f1e6330150df35662a38e685a64ea56
MD5 57d9467335a043926237a181bffcc8b8
BLAKE2b-256 e865ac069ddbf571f13fae52492a22369d544b0293b7b2ca0a0b66610e894433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ecebb470a6a96f00ddadac59844e8bfaecd4cce86fad8c800d47c88f8daef08
MD5 778f4a47fb8fb6e0e281d586d7e6d415
BLAKE2b-256 2d46e9ba3f24bf00ab1d8b6eea83d7ea1d87fadfa3c07914f01523b987752bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef32406a1f24ab584de7a00f0bbc72aaa894a493df55e4be937c53f562076565
MD5 6408eab0c1699f75fb2128e7ba4da96e
BLAKE2b-256 f0f22655142c75b3f3ad4f3637f1135d80443157272d83a0576baa7cc0f5764e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cf42a74490cc9c92c955581051eab3cf3a7a1e8ef0f82776fe168b6ad770133
MD5 155dd40dc88ed1504e7bc64c21b21c0d
BLAKE2b-256 54841e40e39375acde85586b183d04f8fd42a678da917606622ecceeb676af73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b158cfa6e8e92b77ae577fb5b520fe0b6739627895da8ee923b42f58e5fefbf1
MD5 0cb5c31e576c8d9544cbbbc7b77170e3
BLAKE2b-256 cb4e02858857067faa72b424fd81eff908d696068c94a1d0f8130f8475d7f563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05bbe5d3da31a26a2dc050f3bfe5f16f5fdbf65091249a28c37cbf9b4fcea0bd
MD5 33b6e934bd3c50c355cb7430692dda19
BLAKE2b-256 7263d0324dd249d98878131563698bdd3a568513fc5d90851a385bf032a6d580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38ab3be89611d62ffe3197004286a953047d31fd06f01c87cd7fa6de96df4d2e
MD5 95b10870e36de44af1371c08c76ba2c4
BLAKE2b-256 62f81838537b8d23ed1ee92705297223bead2759d5ae0974718fa25a9d01a902

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9e62272fc2ba360267b70dc6cc20dd570e917ac69b577f954c9bd533d6eec6ec
MD5 21d4d53fd2b934d134e4b467b3aa5801
BLAKE2b-256 09d72cb48a90d0e043e2f8475f192c876cf391c8edab26374ca4c30262cfa8db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 001456252db772054714882e26d084e4a69266ffb0d415b9a8d42a50b44d537f
MD5 fda11d89a13d604e8eed13f6fc2c4b2e
BLAKE2b-256 0e06f221c67becc4a2706405c02a0e6e507bb31a2606133ff0536b786fc3719c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acaaf9b96aa81356bc116f422e4017c42d2ac2122858fc876da70484cb394eec
MD5 7722d96c07dfbfd02d6526cbbdeabe03
BLAKE2b-256 10dda7d1b0adfac499fc95beb9f8db04e5c1869d5726c988f0de86cfc6c011db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b033d61a8852e95b9a9f3eb7f7b0bcb42af1f544de08d686a8a90b49c43bb692
MD5 26bd5392c9b407f1e5ab88461a7c17a2
BLAKE2b-256 a097307e38fbfbb6f258699e28036738bf5b27983b7a9fac6e1cfc04ad3f26e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87af943adce4eac0a2279b8bfcb491219a82a143df11cc74826dd1833653ec71
MD5 d44fdfaf149d0cf1fda67b385754f275
BLAKE2b-256 5845c5d49f720fdd3148ccdf8fae17b93d7e49c7c935640f7505af4bf963a2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec20bf914581db89cc75f6df570248f410045b26b5632b2d45c0d817b064a0a2
MD5 33a64b1ed160354a0b59653ac2d590a7
BLAKE2b-256 021881f5114c4f96dfbdc902f8d56fea77a2aaea6bb0fb633a2c0b9e1353809e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c733b68840af97336cd957adc160ae74eb842d4d24c31abf90f143be75a10f7a
MD5 67361efe27d320a43725d5bb5f3fa45e
BLAKE2b-256 b04b9e2fdc7f328ca8b5e674f37ea9c82313f892c6518b0a4790da70a5734fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aece88290a182fc44a6dec74ce16aa3748d243e4942ab3cb687fa1a1d4f86e94
MD5 965fb72401c836d027e013d1e3e220cb
BLAKE2b-256 f8477b47f84f63857e589e82c21715808a6a8558cf6df5d99bf9417a48aff291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c53f31e0b9d515d8bb0eb7ea7805a2a227711c490460380d35459dc83b265ec6
MD5 3ce4e51fdcb28f56fbefb744b5bc2ba9
BLAKE2b-256 2ef94c36a68eeda50852a2611e8ea6e95048e08e6a55ad5d9298781eaac5a7d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 453c15fef0f9a4b171d87fe2a5d356b71c89870ca3ef50cb44c0c3fca0dd76be
MD5 9bf95f95eaee6d537382cca8477434cf
BLAKE2b-256 fb4ac56e6d3b27665b5500a61fcfc225ef2ede0f176c56424f071f0901a325f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fba56d87131ff6f5b07411e07b4608fdfd2214f6cf9aa03d7a1c3265a77a7f92
MD5 dccafa5a86a3e13c1950222534d90360
BLAKE2b-256 59f25c080b72dc80bbd12f07a4b76a9e27094b0cd0feeee84fc5e8061c05e65d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 083e8c8ab0247b1869ae9311301974a1f39482b65b54fa59d1380fc569e19e1e
MD5 27e25a154f263c5ab1437cca7f0c3e83
BLAKE2b-256 2368054b505ca1d82189b3427e27afbff84ec63324f26dbc65d18b76e9182e26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6741585fd49ec687d13ca7c02f0daf631326d98eb0f5f4d2042f966942bd05b
MD5 6bba59d309be1938ab3d3f845b51d1d0
BLAKE2b-256 421f46e75da7443d3d83226c060a8cacc643ad25139d5919ebad4cf7827145ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d57ffd0bf0341d05bb98eca11453cddfacac829019db1bad7deb0d0b105417c2
MD5 497105d1818f6dbad53512703f256f92
BLAKE2b-256 69d04f46ee8548c9326f7dc55aa7912e4c438b2d58e6c24bd3dc82561cdfdcb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bf7db67af362d46e8035dbe0e3ae5fb0ab187b99a0e82917a473b15eecb02d83
MD5 0f7b8711743d7d5a85a81b28f71be039
BLAKE2b-256 77bc769726fabbd08564636c1c0fc5b3710fc8ac39463b08998de766121c4250

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 af99bd28570815b90c6a46cd3c6fe07273a11dd0b24e871f5c7d26e8d806485c
MD5 d073bc30a0cd9ccaa1627581c6bbd263
BLAKE2b-256 ace6a7f2db518cc5fa82ea208c042c9712d14653ccf5c8e09572ecd0fd754e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84543155107ab1a136413b00b42584347ac490998eebff97e6255a23561e526c
MD5 6e57a59379e9edb8c331cd27024a99f6
BLAKE2b-256 f857443c8ee04cb7af49320a91b221af6523eb58ac1bfa477730beceaef3bb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41ae5e6f49e4900f0d02122ba954b020937770dbc3b71d4a651405ac0f918238
MD5 defd84acf6a67bb80e273a237948c8e9
BLAKE2b-256 c86bf8b140d50a3a57f440f8e56f6ffade54cce5c9c0564072a1c86b3a0bbd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf1c586bd5584c3afdddb9b2ed0b32262b9e7247790c3cddae85bc961fb687d0
MD5 d97cc463443ba836762cf22f2ab98ace
BLAKE2b-256 9d9065f65a7077608811cf4f4a631f7778535adcb34a9a47d6cd1fce33427138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46b31ca42c39fc391cad559f890b19534bee801cd43f0c3b68a30c02711eebc3
MD5 52ba25683201b3049e864cd1d21d9445
BLAKE2b-256 d6d1e8d99e6dafe5e0819f664e854765af6ca1dd9fa5e100ff877b2e7736797b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 556f40cb284c960e6675a396d35719fc072128e55c8eb6caafffc614def9f318
MD5 ddbcfff8650de602a36906a1c6d4375b
BLAKE2b-256 5ab1a14dda9ebd1f6606256024ae4d162fb0ddeb9a1e8503fb4fd3e9e0a7cfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 348c7e89f70495cd7bdd8ef8f17a9513420f66bf1a459ba8910b736da973d2f6
MD5 75c9bd99025ab5590e8c57a5c71ce4f0
BLAKE2b-256 49a9a74edff390bfe9d10ba2ee6c995357248a51ebd21da196b43f4741d778f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f639f689f84d304f7d69ad847ddd8b3c2b0264fb401eba37467430def76a882
MD5 12f0b0b3022995d62797970ca24ff61c
BLAKE2b-256 22c6b2f5b27f4a53aa6dd18c51c3fec965c2f752b28ad233cb1d387d750b332b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 faf96219601e04d953a054f2787fd6a210fc6ec1a5033f94e79ac04b137aa54c
MD5 f8abd3b6379677db5b6563f4e29ac7d8
BLAKE2b-256 d2441cbc76a488fb65e39290ae9a623901182109e08369f36db72c89981816e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52d1de24724724c42fa014e9aa79c78b5e93e8c246a22dfbf0c91d1bfc9a19eb
MD5 3c189aba6a6e0435f1278e3f41e80c4f
BLAKE2b-256 5520d0d2628e83577391755d9600c58cf10eb3f53b52e6143e12de8cf9240fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a292f43c115ca5078c9a89ffe19d9bb1d7d3cd8c6ba5f4261b2975c99197b1
MD5 b954751948844da7ab18c4d2e7405fe1
BLAKE2b-256 482b295507a4e2a9c8a66d3f2b95f86bcbd37f2a33a1888fa2a10696d0aa4131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e103d6b703a5a509fd55009cbd9e207f8942557178dc854e573753d466353239
MD5 8c5b6ecd49595e23ac4e81f2db0d6b5e
BLAKE2b-256 bc3aa04bc0ab1fb5201febef5b378c3fb515647baedcbfb6b8e5c2945ff65943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5ba2f55d420f70428d4576b7ede7a0d28b0f424d7912dbcb8c676994208b067
MD5 6289bf4f16f1f3fed77d3479eeaa8797
BLAKE2b-256 0aabf480dbd86c33bb33c0fcc17bdabded11cf5bc18f814611bbb97648879c0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 75b55b88ebc9706cb241e61efce173165f7619e38419682ae52fbaa1ca0502f7
MD5 f3b8affa237bd5511b8e93a481bba0b6
BLAKE2b-256 8741ca71c6ff0fa6ca55975ff63d15715b895e2871d652c57b4c56e840358342

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2f66311a95fa60b1222653db086802f18eafef84414175d85fa5158ab0e02aaa
MD5 d671472d4bfd6ff2a378391711e206e6
BLAKE2b-256 cb942ca24b9e8ca54fd1d9f0279234f48910527d7d863ddd18aaa8af8be45309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1658c4df94d7bf34e81c94f38c43195a0f2b2093b2d9043a978f3de2ec6c4e66
MD5 5507b7d16acb91c677c2dbc2a3fe9f13
BLAKE2b-256 aaf574be72087c413968ebd515e5e094975a8c576087fe921424f14be741cb6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acfe456b6b393db9b4c7717d36c87372ff6c554fda01b65ed663e7ee360e976f
MD5 9b65b52e1a5730fda532919b56248ce2
BLAKE2b-256 8d9c932376be9b707eba59240fecd274509e05801c951612d556139184d7c138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a866da52779fa98cc209085fdf476e368e91f10aa9f92c8b07bf519e89d277b
MD5 a8292c72726d3ef0d9b05dcfc864d8da
BLAKE2b-256 827b51a0f405fc271804929d407f3670d3e90b35029140436b1423a27b9bb67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0fde9cfea05677986baa964d2fc36587245d7413862175e57bfaf68fb1b4f4d
MD5 90145473486232f522ea4e4f7a499c3e
BLAKE2b-256 64f3a48a368c6d59c36038ac2f4ae763a5c08b8c865fd3542ba6b5c54e2e3c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82f05b830f6ad074fe1ac651114337023ebc8bcd1464942e5c17395092aa4beb
MD5 17f3d4ee99f356fd5279ef5c3022d083
BLAKE2b-256 6e34e5a840f7063d593a0505773b616d16d5810557110174c053c905c21abf45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40a6fc359923e985e3add5e8caae98b65d8f7ccab08c2303cddfd5d3f09ee2e0
MD5 b347962cfbe668bdc3dc668810e8b60b
BLAKE2b-256 b68c21449c9ce27e430789bd9efb0bb4e4e80fc1b2f12d2adedd262368521b89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9278748f0e59a937debde8915eccb1a0f42395b91e9eec6919243d6b1d3298b
MD5 1a24c2be1d24fae76413390069747ccf
BLAKE2b-256 3c4ab6b111f6e66dc66d017fe1948420d7ca8be82875d39e757dfa81e406bcda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 632d02f1c90f76ce60c25e1681af167ff23a7d5ee46da61dd35e77fffa95a842
MD5 2214d2b272064cc15569438bb377589e
BLAKE2b-256 694d3dd9138d33bd424f93cf5430d17e3377ab866a4ae056548bad5194e0e0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b07569426c9e772ab3d850459661b40b8beb64adf0b1de7f47b4e0da1d48ff0f
MD5 a3612d13bdd2d818660927e33edfa03f
BLAKE2b-256 83cc416c444a821a952cecc65fd51376d00a7ccbfa6ea70cf32e28dd90fd0269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ba8fcaa1c7a90ded6c02d538c1250cd8f89c70d8c6e659a0e306583fbbc51fb
MD5 1dcf379b4ea672b207ed61d6946f97b3
BLAKE2b-256 acbb7cf574f9ed35dee6bbbcab71912dc2d820e17e7eea5448f6c3d6e5ad127c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044421a98cc0b60811990bcde4081322a01e75cd2f1e1cdb44cc2c1318229cfd
MD5 98312362eb3e487fffea1befd9ee4765
BLAKE2b-256 441bdec3f85ef3cc0b4c0f7afb4e412a58806e993b63675e7b61eeacb1f4a27d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 eb5d6af4e2a65b91d31fd9fb20f007e93477ddbcc9732e3ee3caece8566eb6e1
MD5 670afea211ac233c1beb0f4284100dff
BLAKE2b-256 7c1adc836461477097d090747c5db6b866cdc4c72fe3e2cfa7ae4af4eccc897b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bison_db-0.1.2-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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 10fedb73e843d75d24b1ec9f3e97a2e6289e432392470081afc9e649c0bb3552
MD5 ff673e135b5d41ba9720dbe7e392767f
BLAKE2b-256 4947ebec3524b27378792d18f822a1b340d793bbe9e578f214887e78233778f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac4c316d7a74ecd382663ed211ec764f315e7fa19b66c83f0d4adfd83f9ea759
MD5 c786a370a5b2f6adf5a4e2073d0b4390
BLAKE2b-256 a62e99f43823fe09c8cd73701b251c0d29509f4a7f3d4a600902f21bd67ce903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a60bb85748ad6bbe496313d55dcd08af4126dc0cb0b616b6aa2eaa642668ba0
MD5 95d9452fa318e5360b07e8665ee7fac1
BLAKE2b-256 9272eac44a45b0abb38174b1b430fc27758ce89c895ca4b379fcdaafa1db7bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f324e39ba72cc778450b0a61c3f4282888a624e5e8da3d64e5d14765e6078db3
MD5 4858098cdf7cfe72c4771b4c004660be
BLAKE2b-256 4268e3fd4da24c11ce3080578db75e0725386e9653c17bfa576d87f11fbaf739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5bb61422b531f6e1797675f324fadf4f4e17f86ee90304be88cacde9c58737a
MD5 542a7a4616c1e91f1d0bd91f637dd199
BLAKE2b-256 8b019b5198d6169793ad3183d1a8ed5759351cf58251f2460c3eb339c3af8345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3567735f772df8d7ab46ece171baa767cfb01e7b35a5e517b03cd20d59ab933
MD5 6c1658c4ccd35ecb5ebc3be0f9544940
BLAKE2b-256 7f273b1f275c55fa39ab19199ce3542a789e7810c1835b1b0b30ed3559dd5100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17d672f6a4f779a516314af843d0ab5ca94dcf617b0e9ddc5f38d39030978fc5
MD5 e4a703eb37570b409a861bf44483c58d
BLAKE2b-256 70d665a2be38a698c500d00a77a985afec988c9abba6c8a245ea0581588196bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd6fd115903f6cf26d121d538b862ea534a7af5ca4c18967f05f3b9973f2a52c
MD5 0dd78686a2419ed049985fe859005650
BLAKE2b-256 1576c4bedfbf1dbd069fa9f36457cbd7b3660b0875349b9c7259be312f51c06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b87d34f9838631495c104aa59424f052f4d2703f12c7cf980910b3b3bd6d926e
MD5 39afd4f1f953cce6e0fa4b977645c108
BLAKE2b-256 390b9adb942e1388a2092b1fc216d92050d48e8bfe3ca7d4f90bb2813930e8b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 833fce03164b0662a4632cef7650c0840b1f6dffb3f7a8f5e69a422ef7926bab
MD5 a0fb502e5331f64fb4adc5a1a9f920d5
BLAKE2b-256 feb18f886b0bed7d83d01dc801e6f1c935bd1ac1816dd7f4d78d33141b5fabf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bison_db-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ffb38850e19992946353b8bb0b4be625d4af78c4fcacf100ee213613c92c93e
MD5 fd4452c48ceae8a7fa0a7e122142923a
BLAKE2b-256 bdcd23185cb65c154242747696d722df39e57c614447d1c23e70ab1d6b5ee592

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