Skip to main content

Create DB from bio data

Project description

bio-data-to-db: make Uniprot PostgreSQL database

image PyPI - Downloads image image

Ruff rustfmt Actions status
Ruff Clippy Actions status
doctest Actions status
uv Actions status

Bio data is a little messy to work with, and everybody deserves a clean database. This package helps you to convert bio data to a database.

Written in Rust, thus equipped with extremely fast parsers. Packaged for python, so anyone can easily install and use it.

So far, there is only one function implemented: convert uniprot data to postgresql. This package focuses more on parsing the data and inserting it into the database, rather than curating the data.

🛠️ Installation

pip install bio-data-to-db

🚦 Usage

You can use the command line interface or the python API.

# It will create a db 'uniprot' and a table named 'public.uniprot_info' in the database.
# If you want another name, you can optionally pass it as the last argument.
bio-data-to-db uniprot create-empty-table 'postgresql://username@localhost:5432/uniprot'

# It will parse the xml file and insert the data into the table.
# It requires that the table is already created.
bio-data-to-db uniprot xml-to-postgresql '~/Downloads/uniprot_sprot.xml' 'postgresql://username@localhost:5432/uniprot'

# Create a table that maps accession to pk_id.
# Columns: accession (text), uniprot_pk_ids (integer[])
bio-data-to-db uniprot create-accession-to-pk-id 'postgresql://username@localhost:5432/uniprot'

# It will parse the keywords tsv file and insert the data into the table.
bio-data-to-db uniprot keywords-tsv-to-postgresql '~/Downloads/keywords_all_2024_06_26.tsv' 'postgresql://username@localhost/uniprot'
from bio_data_to_db.uniprot import (
    create_accession_to_pk_id_table,
    create_empty_table,
    uniprot_xml_to_postgresql,
    keywords_tsv_to_postgresql,
)

create_empty_table("postgresql://user:password@localhost:5432/uniprot")
# It requires that the table is already created.
uniprot_xml_to_postgresql("~/Downloads/uniprot_sprot.xml", "postgresql://user:password@localhost:5432/uniprot")
create_accession_to_pk_id_table("postgresql://user:password@localhost:5432/uniprot")
keywords_tsv_to_postgresql("~/Downloads/keywords_all_2024_06_26.tsv", "postgresql://user:password@localhost:5432/uniprot")

👨‍💻️ Maintenance Notes

Install from source

Install uv, rustup and maturin. Activate a virtual environment. Then,

bash scripts/install.sh
uv pip install -r deps/requirements_dev.in

Compile requirements (generate lockfiles)

Use GitHub Actions: apply-pip-compile.yml. Manually launch the workflow and it will make a commit with the updated lockfiles.

About sqlx

Sqlx offline mode should be configured so you can compile the code without a database present.

First, you need to make sure the database is connected to enable the offline mode.

# .env file
DATABASE_URL=postgresql://postgres:password@localhost:5432/uniprot
SQLX_OFFLINE=true  # force offline mode. Otherwise, use the DATABASE_URL to connect to the database.

The database needs to have the table. It can be empty but the structure has to be accessible.
If it doesn't already exist, you can create the table with the following command.

bio-data-to-db uniprot create-empty-table 'postgresql://username@localhost:5432/uniprot'

Then, you can run the following command to prepare the SQL queries. This defines the type information for the queries.

cargo install sqlx-cli --no-default-features --features postgres
cargo sqlx prepare

This will make .sqlx/ directory with the type information for the queries.

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

bio_data_to_db-0.1.1.tar.gz (29.0 kB view details)

Uploaded Source

Built Distributions

bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_data_to_db-0.1.1-cp312-none-win_amd64.whl (926.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_data_to_db-0.1.1-cp312-none-win32.whl (870.8 kB view details)

Uploaded CPython 3.12 Windows x86

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_data_to_db-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_data_to_db-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_data_to_db-0.1.1-cp311-none-win_amd64.whl (926.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_data_to_db-0.1.1-cp311-none-win32.whl (871.2 kB view details)

Uploaded CPython 3.11 Windows x86

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_data_to_db-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_data_to_db-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_data_to_db-0.1.1-cp310-none-win_amd64.whl (926.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_data_to_db-0.1.1-cp310-none-win32.whl (871.1 kB view details)

Uploaded CPython 3.10 Windows x86

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_data_to_db-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_data_to_db-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for bio_data_to_db-0.1.1.tar.gz
Algorithm Hash digest
SHA256 b5083ba3e908a0dedbfdeae325f511e71f597e95000bf0fd133c149b99f43879
MD5 688fce12bc366fc8850a822994cae6e5
BLAKE2b-256 e8df4da07fdf55b4d1f8234a395ad4e04300d6173dcbc1ac8251bd27f7f298c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a6db5fc75619e8d7485e526f5156ad92d7e4f7da20bee78e57da95e2faea383
MD5 a415967b75e87f87530d52ca1f53fcc7
BLAKE2b-256 c3ec6cf5986f8ddc4c5a492c67f19c97d3f6709eea4ff5a4204ad9ad04a89488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 66476b6ac51ba84a5de394b6fa98a955b7a0b7387b7153f6b9c246df44dac341
MD5 4d1cbc1a6e673d930ce93dac50ba497f
BLAKE2b-256 619873d6761b9135a9154e5fc2fc14bd1043b8835fe120f28c38f5e02c688b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63686a9f18887275564f7cb0868fba80ac4c7724f563edebfae2d8d6f8338ada
MD5 3451c4fea267907f974d2d33c6e98722
BLAKE2b-256 5579dab5493d636450308a5f4284fb0a2291befd47bd73e89c21961d2b9c9a00

See more details on using hashes here.

File details

Details for the file bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d755255149dc8ce11a39caaa739e39ded9b5ebc84882a892426932bb7fc969e
MD5 f5eac55222eb7fbe509bbf2595e0f649
BLAKE2b-256 1d05c922a9ea595e826230203d8f8e07f56633f4f3376e90ca29f431b9e2a21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe24543a25b59fc02e54a1bff119e8315d69fb7dce8467485c698d06dd430be6
MD5 072a66212207742d5166dc072631dbb1
BLAKE2b-256 318c617676c6d5cf62b03c15e7538107aa954a0498e852aa7c14a54aa5b19e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45914be6b0dab36d509e4646a05f784db087000d408f0820766ca13c8be9878d
MD5 0cd80a7292c2d4dfea8a28471fc9ff8a
BLAKE2b-256 26610b9a058a4ba8c4c9239e772f30b30dfa20f5535a6cc46d2b4307e94b5d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5bfaffabcf23656bc189ab349e8209d16ae24b94aed27e08e52693d8015d9a5
MD5 a3a7269954af70eb18efdcbb8263792d
BLAKE2b-256 d462492d5fe7e2a1555cd865cdc50b92e5fecbbb24dc1bafdcf539e70d744de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 722e477acd92c2c56680ed66cb939a5addf285278a2987acb112e4fab443c67a
MD5 806b50ce36b953d875e3b335e12e223d
BLAKE2b-256 b4e7309fd386904f0b249886e98deebd511c227002e5592b777208546f3168e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a109e28bc5360b94e429a5550e19692bd9db96b3420501c907b42ed344037ce7
MD5 e51dc4878c5cdaa64674b841e607b599
BLAKE2b-256 32496ab55ffff9d442fc0f75d016ee5b6a5f72f3fa87a327a51778887164cc15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a06245a79e4c9c730486ee1bf1bdf2ba3db37ebc89cca2e7e03dfcd92d8c23ca
MD5 6dd3b18cd64282b9cdb1d64b8c572381
BLAKE2b-256 f7c50094aad13f58369b0580b2bb3e11fbfc6bddab0801ebc361bb11a55a7d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3ad9aed26b06517dc1f05a7a63683a3d825d25c49a1a1a3ea0360df9b53a9b5
MD5 f52a3bb6c76bf79a47d744d9d2252324
BLAKE2b-256 a6b9223f9a1b8e4354228978df24dcb087bfc7d1e28391d037b7789d42cf93a1

See more details on using hashes here.

File details

Details for the file bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c371ab8bf17f68ac646777061272993d6e3cb0f48fe08062f93b48370c752633
MD5 16be31cd57a436e644970a35b50c60ec
BLAKE2b-256 91fff1ae2c82aed3946e0264a28a996a3bef1f6b656c75e3ebb8a920a6c1315f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2e7f45d1b9deb44106e6e3e384a4a6fe9b4b7de412231ee14e0973bfdb8f09c
MD5 4a307c1b122e5ec0c00763b0eaa2530c
BLAKE2b-256 f2b7eae637e3356fdde9b9c32e8466c96a9bab7205d4d143530a2ac6028f7b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d618ce6ddb42b1450d3136f6459068ad467b73e1554e9686c6f5af344bfde5
MD5 b4badc8e87656deea3985db52e8a0dff
BLAKE2b-256 f18886be10271335353d807f87cb75b075b3097b68ca44622afbed3d10f23e3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3321ca4bf79455ff0e753a80fa45f00fe4bb4fdd1a884d6c9693f46b4be7273b
MD5 70063606b542b6c530b1d33397183643
BLAKE2b-256 699a19f8b9d4921e675521d2d1857d7c5e434ac56411927f23773192f8082405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c6f07e587af58f1a198fd08ed4f4dd4246069e0ff67e044674b52f2ae4da6cea
MD5 0dc286c36ae2a25a8bd7ee982b589f99
BLAKE2b-256 079d33bbfd3953b96953118b5ddb397b28c2415c93fdd912776cf011dbfe4b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3fae903db3b93a2b0683e06024dc242801c0c134fc78f98e8e78506b2c244359
MD5 ed7cfa73b0d60d728055805b6b91e486
BLAKE2b-256 c1e2c480aaa2707f0803e8d228b4cd6d624b1274ac72f91bc6d30fdccc3dbffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a1c65165057c28088368579e6ba61fc128d9e8ea2f21759a33c83b29061f02a4
MD5 25f69ace2312fbeb6f4bf9f7c9af7a68
BLAKE2b-256 bcef438033660ac835ab241dadfe4ca598ebb38a11f74174b747e293dd629e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 744813453a6d8c51ebcf93c904c5d53ac7ccc4f2755b846779a483e40fdc4cd8
MD5 fa38ef883c75b586e4c43d41b5212567
BLAKE2b-256 0c006f95829943471433ddaa280eab8b2fbdadbef17491d74b4ec3d20edcbf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15f0170e82b7c92d17e5ccb311e93fd1efc616ae87b6e604f407db0750f7cc27
MD5 3f70d0a79e772f6fd8953b781872a74a
BLAKE2b-256 42a95d930083e47a78c909ed513c72dcc613e4a6945b5ddbfa87af414e59b888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebb1cb86633583c6cab8c55711bf4c65daf436261e6e427a2ad0226c2735d772
MD5 c0903e42057907f9fcf3db63330ac512
BLAKE2b-256 920cdf99e1583006a21762a4b95483a5435ead79d94987e180c67e3581296fbb

See more details on using hashes here.

File details

Details for the file bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ab68da0ce36585f8a0fa83c52e0606ea2b9f2ac548aa32a3d5977980682bbbf
MD5 599689be5c7aecb662cf0759f02407d6
BLAKE2b-256 04b8e5fdaa22f77c7206022ae45c42eac06d006d46e1a70a1582b287f36342fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1127a156702a0459d86eaa1c52fa80b02d23ce438746b52ab2b2bc0b3a941ef
MD5 739dadfdae076c0f37b96ca58ced16b2
BLAKE2b-256 aac188e688a2431b5f177cfb797acebc03f9b6329d4959912f3712721cd21428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14b0cb97bbcaba0461b7ddaaaa6b8aaa309be83fcd32e25afd87138755b05343
MD5 6b73bea789c84cbce835f4b65a8f6c3f
BLAKE2b-256 58fb0dc9973c8974c3774c90b599d8faaed454b926e2bc601bbdc5082af7ec0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 691710426862d4f03f4264144bd86e92a5216055bd348cb623e7a9ac23ae9191
MD5 e9b9697d07e7ec459e0ab2e5ff29b953
BLAKE2b-256 5330df7f888b0a4565a8c1f3fb07f87122b7f3ae2e100626eb6cea748b961e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 133f236cd6305e8fabb533793dbe826bdcc3cbb990182191b355ff85a7a57dc0
MD5 4068401dfe6a371e12e73e2008aa3144
BLAKE2b-256 9f6e1fb23ff7aa2ca8f18679b699a1bffe1b6f19339a1b38857d5f89a91fd029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f2bd520d48e9b8ff72f74c731f82524b396e1e602eb5ac509298720ed2f2452d
MD5 0bc5691078e105f92440760c7fe2c74e
BLAKE2b-256 882d8bba29faab499975b9294ecc6c4add4778563b587a6b16c62354c9c9ba6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8689d994f2512dc90c82b5ba3c20c13d08a1a8f2eba8868be2c52e16530a29cb
MD5 f564894d5b979386225a41c009a8429a
BLAKE2b-256 b1cf0ae87658d43626143412d1c58f7581a433b8e588f39520318c4b6dd9ca96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2db9b8091ad9fd48512385d8c082d7919916699e3fe1056dfd0b6e12e8e9d1d7
MD5 c4afeacf8c202d3f9b979513959be17c
BLAKE2b-256 b23d8065c44550595467cf8d7964ca8b509bccc571e037729d831139efa5250f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7127c24b1f12cf3cd6b5366a329cf09d78dcd60021c7a21cfdb2e4dad48cb19f
MD5 4dc07338b85d884f9b8343b962c94929
BLAKE2b-256 7e210cba22182f10a630e6362a832d88e3e24067e7bdd29c8ebc019a07988961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a47b09fa768b17b11883b2d3f92266b026b8277ba0c80b462e2ca700227b10e
MD5 25558cb2c66ded2216ed92f759de87ab
BLAKE2b-256 46ba3a7dc27d0f521fc5c0b3e6cbde84738f233e60057d9b4f9435b2b09eebf4

See more details on using hashes here.

File details

Details for the file bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f74e51a0796a504822671ce709b0a562db66d61c07f6d7c20a2bdff5f412c281
MD5 45aff9a346848d59b7c4836aaf7f4d66
BLAKE2b-256 dcca42de5222e02f99d4375166b395407e9cf4450153cc0ed0c1624982478728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d634ff5001f8485134a1ffb9779d45c2de8a708fd7f4dd0faf66ea4e7d9dc4f2
MD5 96a9c6368d6f767bf56741a7489c6c5d
BLAKE2b-256 389e1315ea183dd65a896941f6f2a8e75c11a6cd91226dc403d1ab4ea5285693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e98c3370bbdd3b206509cd62473c72f72ed9a854db84f4818d31f82319a5f3bf
MD5 b4bd9f8565dded6b5a178a023725e67a
BLAKE2b-256 1cd44ef7730e0cca1aead22fda668c43438f5c9c9ff1da6a13654140282d2cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62933c365a7af4565d2d7a104cfac9e6c07d362035b5e4ca136f88ef62b6e18c
MD5 4d7926b783e8ae076fb3ea563c915cce
BLAKE2b-256 932768f26f576d2fbcf7e368d2fff66724832690ea4777f67177cd80897fc48e

See more details on using hashes here.

File details

Details for the file bio_data_to_db-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bio_data_to_db-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3b85d203a6d71f1e19ff5edfefad598363cc1b1b0fffd75617c36d7b786cf65
MD5 333007734a64e1aef9e99cbfddfea6f0
BLAKE2b-256 a50acee956df363b5fd31f65ccb70ab56aa71536cd8669cb87435b1a78407b7d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page