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
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.0.tar.gz (27.7 kB view details)

Uploaded Source

Built Distributions

bio_data_to_db-0.1.0-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.0-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.0-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.0-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.1.0-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.0-cp312-none-win_amd64.whl (925.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_data_to_db-0.1.0-cp312-none-win32.whl (869.7 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.11 Windows x86-64

bio_data_to_db-0.1.0-cp311-none-win32.whl (870.1 kB view details)

Uploaded CPython 3.11 Windows x86

bio_data_to_db-0.1.0-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.0-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.0-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.0-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.1.0-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.0-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.0-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.0-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.0-cp310-none-win_amd64.whl (925.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_data_to_db-0.1.0-cp310-none-win32.whl (870.1 kB view details)

Uploaded CPython 3.10 Windows x86

bio_data_to_db-0.1.0-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.0-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.0-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.0-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.1.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for bio_data_to_db-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7eb2ae8793c05810d9f1971fe3ac59f7a78cc5d611f175bc3631781f2198a3a1
MD5 95ba942f98b60bafcf18de3c5bdc6b54
BLAKE2b-256 2689640d295bad0f3533d37e6d9afd439b14ea6cbf537f9368af26b5769fec60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02fcc8a0e0df200a2ea2624f1a8bb93a5c0a224c3144eb9f2b5406949d951a8b
MD5 58745efd82b5c0e400194c25dd84b611
BLAKE2b-256 be747f035ee058705011cbdb7bdca6d11134caae1c101b40fc41cca562814bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9882b6adb53e9a55a4a47c9d4d3f9948ccc96aadca124b5e359318faad8ee67f
MD5 cb805f77cf760d4f80297340b468cbbc
BLAKE2b-256 45662716e793d4ab69d6271c1c2e0fce4fb529fe56924c618a24db5a15ba7ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49d98e35ecb92c0da9d0ffd35ca7bdd01cde13bb8737e1a18f3bc55b5270a865
MD5 3d75135fbf03691997f1d748e0b9224b
BLAKE2b-256 7b2bee339c96932192cbdc7b36e4f4f6df7daba85af9161230371145fba8bf48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10d7c4c4525bbd539f8cd8d0fb57f8fe7e5184a1c82fc5e83e18f9208807e7e1
MD5 cc19cad5106b8592db2042b964b956cc
BLAKE2b-256 bb0e0afea76d27b41b9054dfc58f3f9b3918921927c326bea71052e49e585362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8723c2c3c7fd61296925a917f3eb152e5870d2b97d9f247706f0963ea9cef5d5
MD5 d117d0c6a2b4866db1c451accc982bcb
BLAKE2b-256 1d321e2c3fe88a5e20708cc85d85642bddc214a745af2d36f72a4e5c2ede357f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 563e2ed68f7ce0985b493e4ff44366710d4c5d7d0fdc3db8532548ee01a70c47
MD5 ef012bc55adfeb42d3f002e806e7f431
BLAKE2b-256 7a037abccc3a9d4579a5d2b93de75c6eda92c928d2902d4223c47c0ee46bf669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 63e70bf1192fb97c55d93f545ec3c1a37dc17c40541fa827bb11b1f9569b71e6
MD5 e7eb2500461763ebfa40a94796eb95bb
BLAKE2b-256 b754cd5933ceede00f0b0ba99ac3906d0afddd35d04ae15211e7ce5b5a40f765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 606c85727c13791bda70bd74cd9a696eb94ed4d15c7992b1907b316887b8e22c
MD5 91786019e2a5d2a94b51bc8c2935353b
BLAKE2b-256 2ad2cf9ca9f7cf1d5bd18ba832aafc71fedf0ecf13dd68762e330d23ffb37c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aae33bed70210f9899d4982a806b95b6c320840068e676f0a967ae642bd0bea
MD5 e2f38b19f3a25a150a779c20c143e4ff
BLAKE2b-256 a5861c38aefefaab37cbf30f3c5038b963b5bf997bc86cd1394920cb6e33c9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 780ad28015f88fa90e533bc457837eb2cb2c51eedf1c6c068d644b694efa461c
MD5 f0d7e9dcf6f300d028bb4587c194f1a6
BLAKE2b-256 d776a13b78a9d797a6d9cabd972f19de056531a3a8db596f73e3743c585e57bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e733d9b8c73aef2ed76ee2d579ddb2bcfc7df7a0509a0703b47cf276fa02447
MD5 856d5f2287b2300c84ab920f5eb41a3c
BLAKE2b-256 f6dc256146551036fb6dde58a8fbb9d88abe5e82d465e6e8c82d50eaffff19a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d1df7686e3ade841d6745e52b1bb60653c3726d94e16d646ac2b3c7f32f9e8f
MD5 9437c9713a0de44c60f3d5611cd42a9a
BLAKE2b-256 8d63d2941c060020fb5ff7adfe8bfc4ae720d6398d5210c9f4844fe615731b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b026fb91d5c08b33ecbd21f991612c719df01000d9f17f9824e5e7794331a8b
MD5 aea3d884a04f769d259cc51ebb03745e
BLAKE2b-256 0c4f90616b348f5e40422588843571e5a6ad1789e720dda29ea730cb01e5c44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21ffa5bb054540d3b2fb6992d07b20a392d11fe9263ed2f07c3345869582cc3e
MD5 56f40bd9a59bfa8fade9eb276ac9a997
BLAKE2b-256 76322e1ddacbb2c1aa795bbad797df85770e256387467e8aeeb61b9174f3a6d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 638dc87665a6031d65822eedf581a08e5cfc83d0a60153fe616f316c2e352c80
MD5 8d72c5fbb79fbefd5a453dc756c301f2
BLAKE2b-256 c64101d0d888b9b47c7ae6d4291de4ecb49b7ab505494d9a1ce4eebdf5fb4a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e5c0b24cda231f73e5566205216671d7ab928d06b74253c21958a2d33198454
MD5 9b0fe1c8227ddd50816b0f67c093de7e
BLAKE2b-256 1aa4b174b0245233863f8e48b3fa57bfee2a0dc38e09aafc11a12513e348e960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a65dc2fce41f2fd74d65f98242a487f23c5e45f38895ad05726130ebe430b039
MD5 65ed731436f57e5da04b612be679500c
BLAKE2b-256 30d30348aeb474f411889b59aa56ce8f225920cd75f6e58df5ce6a6e8259d03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4906df6dae4ff0704973444d92c7f6aa51be944d3b04451e326d1afc255f298a
MD5 bb8858a09fd66bb4de5bdc3f58d357d1
BLAKE2b-256 983bacaa590d988d9e321c9706771a1907c9c5749722d0d6758df595f409dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a27c6a2e967f64b69e068229799b61159e2c40624a3a3d530b538b6edbe319a
MD5 0193082658106d112f2da8ccdf9a4118
BLAKE2b-256 8767910ef2e7284d4920e215f49a175c479281370db43ec4a7a4f98599eb1778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 adbcd6bbd3d3af97f4992664db8f6ba7400d5cb48660c90488197e9e8169a0af
MD5 791d41d60804715e609903a36b2c88af
BLAKE2b-256 415341fa5d78f53da49edac98931d19652fd685e5eb479b6a7fdadf84ee046a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f4b618e2fbccb7b5680ac5db48d6ec26788907078789ebdef9bd9e5566e260c
MD5 c8f976a0b3b055960ae8fec5b627d45c
BLAKE2b-256 0721bcb37193fac59706da912e1409ab0e466c1d2060e744f59e81f1ec4ab2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4cc9c45de624d1ab0182337ba07c6d43bb7b7e0d84ff7d27ac517a76784a359
MD5 555c88191db011d9c15681419592d88d
BLAKE2b-256 ea9a4569e6cbad2e3dfd9a7f5f3ab85142f382c7aac88d45714266f24547c56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b13fcb6a47f772f3b50cd91183b8d7d14a64403f90cee094a0deb8c666ad632
MD5 85cb8ce66af13a7116a4cb1d9d93ad77
BLAKE2b-256 8d986f516bd2c2b33ac6d2453236a1f1f3ff6de3137b9c1ef76ac9de5064827f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 685a4e85ca3549fa335783accf99cd16f1fe1bf7dd9ecbc75318a49d62f3882a
MD5 8ce15ac1faed0064b38fd8047f3d1cc1
BLAKE2b-256 10a1a478da4ea108801d7c1a76dd61b4b4461d8738913b794266ddf7918d1d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d77dd676a56de0460c1516b48a904284e618a58b0d41bebefc3bbb5dec63677
MD5 9c724cdc018ba321b52531f65b1e23b7
BLAKE2b-256 3aacaacd34579936acc7431d1a2550b7bebd956e80dd711a4e7e6032b4f325f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a4b2dbe2e151eb9dd8ecd2f1eca9bb0722d790e59a4e4451720cab656b93655
MD5 e26e0a85928ef23a64c5cf0496ebd3ad
BLAKE2b-256 671363f4cecc2ee1152fd3d7096d32649ddb99f94c773a24d53639060a1d4c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e9799a61f74db58bb9c843cdb34d46afc6a730d2061d39d1b729081bbb7e9c34
MD5 57bf467b7855c4c3a59af24dee9bbb51
BLAKE2b-256 8a4492dfc22556e2e04be0583edda9b3a8ebfbead871857bf8ee2c611cd59429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9832f7d7e3ed879064cee10a0ca1b214a7f329488abedce1e053abd097615536
MD5 c651e46509f83c6e8a9a8363623ae6dc
BLAKE2b-256 1ab91497960d23e1e2971a2976359096730a488d0b2060ea68f3bc4e45e26842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59a8405d6de5d5cce16c18f0176f5634999eb16dafbd5580f2b7d20c3d0d9444
MD5 099c9257e71327a5916e258f2079539a
BLAKE2b-256 16e7f21192c5ec09887e24f0143b750978e9c60bf4b0a3800b136d0de526f8d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00680c636d6e7c57e9ac1300c3c85893e0f6baec6fe5ece80bc2d33ef12b34c2
MD5 47c815328bb37bc3895901c33ce6e0a2
BLAKE2b-256 729c2b8a73b557252788ee87962d7096b7d7799fbe16b587cf2abf927c1483bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d34cb27bedb8990f97477ecd62ccdfe25529f9c0ea75a9b9fe46b97cac9648b
MD5 e13bbd689ce9fc987f6ae43d2513dcbd
BLAKE2b-256 0f6ebc41e88be022d983fa9de7b1049d54dcaa49b6cb4c0411b5d1cbef6563b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1451f66fa29d437201dffaf104e1e614f7c742b70fe736c18a1c026ac6e6de7a
MD5 824b3f3ac1e55a4f66d7b5c9851aac55
BLAKE2b-256 9f6b3e386e4e7eb142a6b17cd6300939fb3272be9728746792a888681a7965e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2b0646b878d486b9cd97709d7e480ba27963e5af9a843c102791d37687de931
MD5 77f1a9991fde47f2942f67175da78210
BLAKE2b-256 3dcacd96122ad13931f1454db0b23e4ef013b950a3ac9546357cf4f02785a797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83f2de01da6a26802ea2b3a8d918a0af280d58b773dc287a845c9fa6a8d8b475
MD5 dcb580db8ad63cb59588f50568e2291e
BLAKE2b-256 12fca53ab00c9b1058013eaaf1331867bec2b24eb46e1eff245bde1c01aa76fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cca202e27947baeb511c9fd8e06611d4e4850c5a19c3807716c70ed9c7679e3
MD5 3b463e1eb156a3831e84428daa62915f
BLAKE2b-256 6922ccc762e6ffae2b127702fa6e474de577c04f673d47de87d039be4f16e6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79ad643ea3312cfb35de99f12593a194a2b5588029631b27c7fdf3f63f9baad5
MD5 cde7337f7f236b2e708d236b25f9ea24
BLAKE2b-256 9aac9694cbf818c0d07621fcf70dd64d7b53722b93e513ebf92743d0f054f07d

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