Skip to main content

Create DB from bio data

Project description

bio-data-to-db

image PyPI - Downloads image image

Ruff rustfmt Actions status
Ruff Clippy 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 table named 'uniprot' 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.0.1.tar.gz (28.3 kB view details)

Uploaded Source

Built Distributions

bio_data_to_db-0.0.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.0.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.0.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.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

bio_data_to_db-0.0.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.0.1-cp312-none-win_amd64.whl (925.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_data_to_db-0.0.1-cp312-none-win32.whl (869.6 kB view details)

Uploaded CPython 3.12 Windows x86

bio_data_to_db-0.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.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.0.1-cp311-none-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_data_to_db-0.0.1-cp311-none-win32.whl (869.9 kB view details)

Uploaded CPython 3.11 Windows x86

bio_data_to_db-0.0.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.0.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.0.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.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

bio_data_to_db-0.0.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.0.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.0.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.0.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.0.1-cp310-none-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_data_to_db-0.0.1-cp310-none-win32.whl (869.9 kB view details)

Uploaded CPython 3.10 Windows x86

bio_data_to_db-0.0.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.0.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.0.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.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

bio_data_to_db-0.0.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.0.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.0.1-cp310-cp310-macosx_11_0_arm64.whl (927.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_data_to_db-0.0.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.0.1.tar.gz.

File metadata

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

File hashes

Hashes for bio_data_to_db-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c0cbe4f36b585ddfdf21aeb65018de5e6e507ea31ca56a26671b04fb18ad7c5e
MD5 498f4038bd11be4e75cdc8caacf38ff1
BLAKE2b-256 d7141e6455b7bd37fe90c5c0588295c0ff086421b47b52e480cf0677aea90a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cfc956b05ad7f38ca6b4ef4d76df428d417a7331ac14b1a751b9b099276a3ad
MD5 0d671c056a7a6db46558d392505f6279
BLAKE2b-256 d7adfd5923023a8862ca8533208c2922d505bda55385bc83a18468b15cc41313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 314ffae36ee04f4e360f09efc73e7e1e6a0b833c0c520277c5b490c1bde74198
MD5 939600ecb435301db0089db401e95a0b
BLAKE2b-256 67501bf5d8b8e77b57b69841f37ecc436402278b21ffbff8cb1ed18f9cdeca39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9141b98179d68de7abcbbef02ef4d79792921d9ef4fcafc082c604240fa0bd5
MD5 b82a02ec1abb0530dc16a83f51be12b6
BLAKE2b-256 e1622dc3373a3ab6318a7d65797844243463e7a763d16865d0259bc8ff05b988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d51414fc23b3567559c90e47e942ab9a0f902fbc8f3766417497743c197a5e34
MD5 de838a75d41bdac5f8c705d247153d07
BLAKE2b-256 1e22673fd9a05d35c5494cd0dd2029f817dc1bd19d527b380598f5541c6f6626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7df1764f4cd1f248e079b7ea4336fcf3e07a6296b32b84cc4f219bdb45e30739
MD5 9873fe187248db83e7f8b0f75d5aec83
BLAKE2b-256 a8d0817f1338d9b4be6f83110ad51b529a73b2642348018ab95a3ebc603e6264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f31ca1dc9b20d634f38b9fbe6088ddc03b31036a52c6fa9d31d648764600f687
MD5 4680cab2f1d5f5bc175f4941719bba84
BLAKE2b-256 6177073678bbb3bb0b33a8d38978da66ff0c9b3b4e5d460a1f7362132b80e701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9bf50c937c481a361ac4bb845f1758511f26cb28cdbcc2e27ad432592a6549dc
MD5 0055e041f4f29b8913e7b854b310712f
BLAKE2b-256 046d1c712f98d62a1a5172e0b86cb8918d80347f7015455242d9eea6049fbe25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fc3d72a347d828ee44b61857cdca32082941b446252782eed6f66a0394b0bff0
MD5 d1e1a43efcb6076d60685e6cf481a694
BLAKE2b-256 ae53126840a476bce6fdbe142eb59e60777ba12c4f41181b499cd80c38484d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69d827cbe955561d5b88900a2c599e70aeca77284052707f35798940fc40152b
MD5 99c812b8945203150ba2f9f60d5a5857
BLAKE2b-256 2ca2926f153c6d85f8a86ecce2c84cb58b823c665e345d1704c76b616935b511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af6553c6b3271ca634263f045b9df37dcd79ff59e3831fa3716747a68a8ef888
MD5 1eddcc3f6c0e938256495e88d4641071
BLAKE2b-256 039626e427163aa5a3ab36a8ef77780117192a17d541b3a3c377dc8940d8868c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a9e0e3e6ae6cf43a261bbc32b8ff8734c3fc6b30718d07c8682bad0ae8c056e
MD5 a9aafd8120987b87e4d6a65fb583718f
BLAKE2b-256 492e4563f77cec7df014eb21c373e2eef2fdd75090d070b1b93bd745fa5e741f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8576f82a2d6b5d9a4567d4e21320003816dece69341bbe949550199d2ac04cc6
MD5 a4ad7c8ba544deadd476eb3c0ea6ddc5
BLAKE2b-256 66c7fd1ee186469780cad40b997b68cf2413870274360a0762f7e8c64ee11b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f08266ebe93a2376a52247b8f2f6dbe4792dfd6bc3583d037c4a3e5b5480b23
MD5 0d8740a6361b0b246b86828e7fabe7e3
BLAKE2b-256 5423702d2902f0fa458d905360921bc3a2fbe876f7ac3677b8f5f24954815587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd6ae72f72594ab0188eac66d908be832dd38249c75052ad596cce4071b4ff39
MD5 071f86a334469c30db822cd6b0c89f94
BLAKE2b-256 0e9b9574455ba3875ee10d0297fac2facaf69c6c327e54d44550d69dfccf5ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 769920aa04f0c97aa572655e208a80ad0a860e722987e1cb45361ab3a6510d53
MD5 61b1f3418a4c1404d8af2fd8cc4b65b9
BLAKE2b-256 42503043d44527682e4d572c1c0256475a090cc3a456343e16083df9c5cbb4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4008e0e7dc074dfd1dc99b1a031f07aff52dd80a7143baed2a19a6cdfdf62974
MD5 5779fabeb8b8aa71686990f452877c28
BLAKE2b-256 0fe9a5ef381c202bd58461928dac81249e730e6db5a0142721096163e80740be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 72814bebcecf5cc3937facf31d940861c1ad03326c0426487517adc8a346c4ed
MD5 fdcec3bdc881ee007793ac0a49a12c15
BLAKE2b-256 4b57921b344d97be0fab8194af205e5ef06bfec8f4633e8d0a48eccaacf69717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 589fa4735e414494671de17ddbc1ffe64771d9e04dde5bc827bc26bd8fb6d23b
MD5 2cf4cda50b27528c96cb7253d5b3935b
BLAKE2b-256 cfd8182bc8a49ef2d49f7930aab4b5c1c640ad7d31496d1b66f069f7f6785bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73c0fbc76a1909cf7b5757d170bc74a4245cd9e8c7707b1a7ea0ec43c01e7a17
MD5 77b590f4723d540d244ac0657714a8f0
BLAKE2b-256 13040ba6199c7474966ca521fe3391c4951b490800bfdf6f6d1cb3c3af47f4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5bfd5b7ee40cefbb8386ffeb69455eb11d8567232e3ef9a03b507b7266c7862
MD5 3a7f56edd9a38ad4b15c7711945a404b
BLAKE2b-256 34c80c8a805e2d810ebe9656a01abb68c164200e2a73207a2a52df8a6d1c92ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2eed918a9995ec7fb0bf2ba52c2e83a128d8678ae849257737b160aecef152a3
MD5 2a50663b961d87dee3e325c928d508cd
BLAKE2b-256 1aa47198225b44f8713a16a1811dd99563fa87aed45cbb3fabac906fb4befda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bfbbb9ac632546326114a0a503e4120aad5e365f71fb88f4cbb18bfce3e28fac
MD5 5acc257eb28ae57a75adcbbef1d95fa1
BLAKE2b-256 8502e70562fc713d540d4e7ddb20fd27a6a5b83916d3130b862bb520db9eb3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0a54244f565f49ec168197a2fab6974c2200ad74a21d2c7ee5d0c3543d1f0bf
MD5 f73bd1e50de3908971c64ae117f24e0b
BLAKE2b-256 391455621ca7e22521d12960c84883c6f20179218dd625b043cf9a758f7bc59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d711b4faa71b4532fa10670098f76de8bc6157626702f134069357f2723a6cf
MD5 929b8b8006abdd856aede865b7272c59
BLAKE2b-256 7cb5af49e7bf3c67fff8c8cdb1642cd194b0efa7473b90563b19d403cbb20400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ace06ee233f90f33e0252f4ddd28812491bf9db76290025383e70f10288ff67
MD5 63d39b3b5f72c412a8d1d4579a55f607
BLAKE2b-256 6aa28e9121d0e3bca300ab15bf9f23803bbe64af3cbcbff14febb8731eff5a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f80726dcad4490694d06faae994ffae8781bcfa6805bcdf9bd980e460c8d8e0a
MD5 c0d21d3f927e84fc8a8d3eae109ed27d
BLAKE2b-256 08c0bab951dd99bd73e959c448070851c741cc0ce8c6398bc42fbabfc1f56926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ef063753cc4fbabee9efb49c17f086029cfcd7540924c6882d5a8fd81699cd4e
MD5 f7da6400ec33f70967c3fa65556f7e70
BLAKE2b-256 95f87dc6e0a64f83a2437fa4fa5a96c2ac9f1a57847c1851002699f72301defc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 df4f6d29a6021397ca5900fc4392eb8a6eefe76ec1bd8a9eb24c0d0fa6a1a4aa
MD5 5c5b43e75dcd6ca8bc8d4409857b4306
BLAKE2b-256 bd50db91480747d37f18ade3a6e19c15240a5636c7ff7debd451fe6ddd7bf2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b4a599b1ea316edfc5770027101b4c53d840873e5c0c48ea262dbcf9e32e129
MD5 d8a8d44569e2130f6e02188f8bf51dae
BLAKE2b-256 ebacf1e40a04e9c2cac81b4ddabe761ffe1e7806ee7cac11f4f0166fb9dc961b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 828672973a7480434a12b8f2530847697bae958c2ece25dd312a7ad8a5ce78a9
MD5 d5ebbfad9add5e6c0dbca23c1029ca57
BLAKE2b-256 f1383a209c2945a98046c04b666cf44e8584f6ea861f380832484348f6af0e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d666adce4ae4305fc26be61e9d1ed50c1d31ef2a57d042b7d293e993c728ac57
MD5 930697cabb43c34fd5765f4e19c042f0
BLAKE2b-256 dbcea5c6020cc70d8861d6f73a752525aae8e624c5fcb28b2d5165074c992d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ce0eac56f0248141e9d61639a18c045139db57fd80edbc32aad1a1ee6c645a1
MD5 768a3be777838a1b071d17cf1c08d788
BLAKE2b-256 49d6c8e0a70605209e0e966534df28b52263945df5b6abb9ba86119ca2e352d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac9ce722099d6bdae0af57d61aa34dedea247cde24b3a5efcb425ac97eb0a5b1
MD5 b7e601a5ff2989c8b32b65a348b756db
BLAKE2b-256 9efef29eb9b4dbc8db0c756ace4a9f9cb0b5957bc7074bb674e00c0214a91fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98df1c7fef51204f42387cb005e08a92096b48079511c0314ff258bc1da86447
MD5 929e5858ce056e3c3f313d65f8048940
BLAKE2b-256 50e4f409c65dd05ffb5027eec1d23ec8d0bc16ee66a3687f0904bdc3851f23c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e04351586bb1eff6301d1ef2c80325e6246e25d630f47a84787387be7407739
MD5 9dbef692b54990d5e2584fb06c70fc76
BLAKE2b-256 7d7c856d96ecd27ffc76d8374aa8f131fbf882ed20b44526878352cbebafac68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1625e4695298e45452a6ee56ab57581ddfa92ac535cdead36cc667197b71fb1a
MD5 60abebdbd856f3dc50876d9610ceb4d4
BLAKE2b-256 6fd1b0adfecf9f01f3c88dcaf97978f3ae92668dedbf3069e32309c1a71dca00

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