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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.10 Windows x86-64

bio_data_to_db-0.0.2-cp310-none-win32.whl (870.0 kB view details)

Uploaded CPython 3.10 Windows x86

bio_data_to_db-0.0.2-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.2-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.2-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.2-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.2-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.2-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.2-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.0.2-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.2.tar.gz.

File metadata

  • Download URL: bio_data_to_db-0.0.2.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.0.2.tar.gz
Algorithm Hash digest
SHA256 83d1cf138c37542f0811362b129bf62de989662a5c1a0fb8563cc4f873730947
MD5 71e8fecf83a41cdb686142661f7f763e
BLAKE2b-256 791d0a624e49f16811ade8d092dcac3491ddc3849fa48fe573125ffec4b9a4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f082abebe86838b176503853379a4ba3b3ad57ab436bfb4b96d9c81645e98555
MD5 3045849cd644c61f32e2df1f5cb6fc99
BLAKE2b-256 725a675d6150cef017f28589149c1ea9436f234de57fa61dd406ed345981e671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2542d0818d9a726f88b355e76feead4251de385b3e33988a38b1144899cfb93f
MD5 cd696c68de08b82090ec9e1accab031c
BLAKE2b-256 bf029ed28f9a41c2674bb977eb025337f81fa2c74c1cbcc37764b1486e988ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae65bdc97ba687d87c7adb689cf83bbb010a7b3b2176d5c30b058b15a739a4aa
MD5 3e3eda8c0c7a63b6a03990b8be3924ff
BLAKE2b-256 e31af9fee31c50449736fe38957bd481d68115b077583f931cefc3b835987a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 889542d26be83f15e8fe0b3b6706002de8bb948bc8535dfde1702e55375bd658
MD5 bbcb9eb6362a84065dddd0136c1dbed2
BLAKE2b-256 7ad9975be1c58ee0d02378df88c51f56e6e2ca20e64eedeb7c3fca21803fe025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6ab73498970c0c36a1363e7802536f844fc1f44b396267cbba4de9cb1339104
MD5 b317746c94678818008b74b2c240e4a3
BLAKE2b-256 ea7ebc7affbd76eb2113844a60a205192648ba0473203b2c9920e0893fca473b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d24e48f0098156a9cf03654f2315e3c8c138020099df612b0773d35087bd9c4
MD5 a6f2e047aa1718837f1c1c987ec8d761
BLAKE2b-256 13ee699d7b4163a0275c6f72040ab66b7d529a62d169649d078713e5f5eda22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0d7bb4c196285c9bc669561ef42e947aa73215301c3622a541a1b104a8c8e569
MD5 80d276d05066ec777a812ff8fceb3b9f
BLAKE2b-256 cbd9c91749f21a134d104aef38c6f634057bbf33c0bd4b9a3552ca2c1ad80dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fb6fa5016ccda4241629f51a1896834d5f65df387a60e1671beddeefef155a47
MD5 7275e38a734616a93c0fad82f4a61a9c
BLAKE2b-256 f120d16ab7b34caf50b56c4bf5bb68d9223328108e64b561524dbd3b3b7824c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbaf7dc84b169aa8d26c7c5726eb666bde6af75c2a07a8fb72b25a961c90a74a
MD5 8627e06585c29765197b3783cfc62de1
BLAKE2b-256 0a24bc4835d50d69422aa5b27d717bc9cfe7ebdd3944e866c0709d915f729e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1328a5a8462bf31ebbc9d0b3d98cc424b7fad5244218fec17ff91b6c022ece98
MD5 a356894ddccd717f897156d3f40e165f
BLAKE2b-256 bcc699b86aada685abfe03cd69fda25a46f5c0d2c5c1069d0dc7c691318e9ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d308475bf71556f3bea98e26b7d470068a0acd274ffa0c4aa922aeb7653525c
MD5 cf5d8ed2ef558af01dab76c3dfe09d5a
BLAKE2b-256 7c385aba88f11f7694de6bc48d5d0197f0e0f35e9a70d01c881905521cbde867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11997e176f1f40595d80d886e3aced5f9b0bb85c904b9debea10c573e6e9c091
MD5 5a991582f29e30e2924283cd220bbe78
BLAKE2b-256 ca8aab302f4cdcb8ad1653005687ab2bde0a4adb3c2b0ffe0abc36733e14c5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b257c8f7a2c75661b369f83792bcba6671684a7c6999c204110ac91e1e8dafa
MD5 1234634fdb662ef7f0cd3a9a1f97d625
BLAKE2b-256 3dab115b77e74f3f7c5a9fdda87f5a2834acb085800e41a3b09f4e0ffb260d9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0145680fd1821f62f9dafe89b63c64ac9327f99daa19dc295376ac890946d866
MD5 51a1e5a0dc952139b99e1edfa37df410
BLAKE2b-256 6f0583dd696f95dfd57179abb119dc547c25537d698a5b80434bb1eea482063f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 948f3ac0274c3eed95de496c58f66be01a1fc9f7ecb47f068060c3fa9d109724
MD5 37024ee1d623c7c02374cbbd1564ca8d
BLAKE2b-256 eee33abeaae0ba6d0316a93daf98a06ce5493c8ffc71f71767e61768a0a0d2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4e9a492dfd72fbe2382a941cbd59a74314a39049013970859cc9e418ffe18d6
MD5 f12f22b2e2f700f0f74fa12f9bcacdfe
BLAKE2b-256 4fc62f084c75e68d37fd70b60bdfc7c3c4260a4bb001fb386f71c61047fa0e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6675bbdc9272a1161524a086ae2a8d20cb919e45e8880d4a6df2bf36f11d52a9
MD5 a08ef948e753bcc623e0ba68ef83560c
BLAKE2b-256 e1e9052de6eb9008ef7e19ac01dd5d5005c4cb594521f5ea63e3bd390a4b02a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 91583978a6613dd1b63ff313eb8cfa1a2beb6bdf74a240c9af8fef0cd4fc2ff7
MD5 7776bfd25d3b3b67707f30d1df7cd693
BLAKE2b-256 a485f9dfb4b7a8933186ee6231ac6eb02d5ad7c81ca8b43ddd47737e56dd5528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 912e39043b0c89d8bc6527371e3bcf4ccab63ddfb153d1ed3b52f71e6f214d97
MD5 9d2d3e0a5d483d1509bfb30765ab384d
BLAKE2b-256 98a49638d1831bc8de5f560d16b3fbf8e820e380578adaa9f2d962f7b689a8d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bea9a4196862cfee5dc63f08ef67fcbdb1357ae59f4991e88b6416e85c029019
MD5 ad1cc2acc2e2144b5ea8596fee037f69
BLAKE2b-256 e5d64981d62d82e1640d40ee92d764a575d26fbb3b885cf191c3e404a5eaacb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43aeab0bb5d58b4cc2d276b20d9f4874643932c5cee38bf0583eac8a965405ce
MD5 0d20eb96097d8c64ff8e88e0a43d85ad
BLAKE2b-256 934949d2ece30ca50b1e3e9ad91a783a0594863bb31f235d101f64087f89e12f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4f3feb03901e3d873153b7045295b3a8ed36877c8b4b299ef11bac8b16d350c
MD5 272cf8ce0355c2693fd3e5054ffb0be9
BLAKE2b-256 6c7dccc488259a1600ad52a0510d15411b2ab3ee635438eeb8f1d46d1b591458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4be4a975a784caa159c2d720c4ea5dd3545f0590b936b11a3a64a7b09a2243b8
MD5 d2b9179194fdfec39056a7ce5b6028f4
BLAKE2b-256 b3cd474c6b8fafd9ba0e59ed2f99eed57c1cacaeb5e95060215f5d99f1ccaf6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e66f54a6cd4bd4418ebc33cdaff8c9b03b0f87a93af6223c366bfdd73477ef3
MD5 b438a579c56e308d695cbdc46956906e
BLAKE2b-256 f1bdbf2ac323925af777ae3bbf2f23759054a129f218bd0ae588c057ffe11389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0c850ad8cc51c333201f0274760f3b930d1291808ce230cb0db39cc6a4f302f
MD5 bf6c5d9270aa1a6e2179391e015dcd64
BLAKE2b-256 e28008bc090a24a6a969e8d6002f1b9a40835c9e416e221b1df1905768057019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b1c66dd686cc0783d8cf5a28d4463e5d2fe296b21bd3cb32229c4847744f926
MD5 7ccbad3e742f46a81099f675a606cdf7
BLAKE2b-256 6f883c0c3b0aad69dccb30c9e295077640ac07f8d0861eb9146cfabc2a1c496a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 eec194b7426a43ff36c1cab5c60b2f11d4032f28c63a974dc15e9551461367d7
MD5 8a25e654f595c5043def298078218e5f
BLAKE2b-256 320245d7d9733c71dca44025f8a817c16d3b40d6a902592e0e2a3931dd4e388e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 616cdafdaea07f9943c7a5c3ca49c1a1b0a9577de5ff960664cd28100c0fb31f
MD5 a3d536f3f9aa46196e4b30e00d697d4a
BLAKE2b-256 2da846f5ab516b09ec3f1a76696096b8c7542c68becf797a5693b80658d48507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44c2308bc851e56599ea4926bc425e93b7b0b1e00cb5b78b1e33da037f61735f
MD5 b1a09a5f9f5ab51b43d7999cf3fcb128
BLAKE2b-256 4337912187cfbb8c49358b21b0ccb2e3c4f6e6f1debb4e04c03fe45625964762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c49ebb89c1f199d8b2228ba183e0267e86b52ce8433bdcc24f48ae342d65b50f
MD5 2f39ffcaa0a8d979ef281b3bdcf76fd5
BLAKE2b-256 77de8fdb05fda90a28d1725cdaafc5e4eaad0a44962d1c6bdb850138ad1cd3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2af2d730dcb8c348f2da7f92266a8bf81918b624a4677b51ae9b22641e135519
MD5 fcadbfb99d406c57c3e333cc3bae1a9a
BLAKE2b-256 074860dc36a828fa48912c27c221b034f4e7ea98b8ff1787224694733a02e5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc937c27083d5ab9513c31d4812f8257e88a2b3e41060d557069fd0b4b43a538
MD5 df97d330340155cc1da68a3781a0d154
BLAKE2b-256 fab33a9ae8ecdb8090961a342695f8bca28b06a3b8dfa3abb56fd7ed60d1b6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 625dc2020380a6ad5c0db2dcc0efaeb1a669093fbec476d341f28d53b94d886f
MD5 3a6a6d17246ec0471e1798af57ffb406
BLAKE2b-256 6226754bd7afc0a81521a24d42394cf5abb9a5b7afd9794e17c1afe73855177a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5bd9e7b63ef55282fbf9b4abfc642f055c93480df1ede8d08f72f8f4f697b68
MD5 2806b3b80da426061bce3d4a881c808c
BLAKE2b-256 e7d836ea7eb71fd698baf01aba552eaa4a5beb73b5c0890a0c199ebb693ce10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec624b6c67569d395e069c31140950bc90be4027bb50d65e2b958b3a723468e1
MD5 d3406a30fca7153b4c2256d548125603
BLAKE2b-256 cfc0ef275aa1b98ab06bfc48f16de012b5265fc42bf96104b7e2e676b3915736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_data_to_db-0.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe48faf7fad33b39f06c0eb00b7389455d1212f8b6853159cc462f4bf909fdbb
MD5 0044f9648b01a7e424aeffb57a9152be
BLAKE2b-256 646d8d2eb56ea2b05b8b7601fbf374788611a3843848df53db8754fbef015f54

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