bio-data-to-db


Namebio-data-to-db JSON
Version 0.1.5 PyPI version JSON
download
home_pageNone
SummaryCreate DB from bio data
upload_time2024-08-29 09:19:50
maintainerNone
docs_urlNone
authorKiyoon Kim
requires_python>=3.10
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # bio-data-to-db: make Uniprot PostgreSQL database

[![image](https://img.shields.io/pypi/v/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/bio-data-to-db)](https://pypi.python.org/pypi/bio-data-to-db)
[![image](https://img.shields.io/pypi/l/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)
[![image](https://img.shields.io/pypi/pyversions/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)

|  |  |
|--|--|
|[![Ruff](https://img.shields.io/badge/Ruff-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/ruff) [![rustfmt](https://img.shields.io/badge/rustfmt-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)](https://github.com/rust-lang/rustfmt) |[![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Style%20checking/badge.svg)](https://github.com/deargen/bio-data-to-db/actions)|
| [![Ruff](https://img.shields.io/badge/Ruff-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/ruff) [![Clippy](https://img.shields.io/badge/clippy-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)](https://github.com/rust-lang/rust-clippy) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Linting/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |
| [![doctest](https://img.shields.io/badge/doctest-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://docs.python.org/3/library/doctest.html) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Tests/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |
| [![uv](https://img.shields.io/badge/uv-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/uv) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Check%20pip%20compile%20sync/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |
|[![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?style=for-the-badge&logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/)|[![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Deploy%20MkDocs%20on%20latest%20commit/badge.svg)](https://github.com/deargen/bio-data-to-db/actions)|


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.

Partially written in Rust, thus equipped with an extremely fast uniprot xml parser. Packaged for python, so anyone can easily install and use it.

This package focuses more on parsing the data and inserting it into the database, rather than curating the data. Main features include:

- **Uniprot**: Parse the uniprot xml file and insert the data into the database.
- **BindingDB**: Fix the HTML entities in the assay table.
- **PostgreSQL Helpers**: Useful functions to work with PostgreSQL.
- **SMILES**: Canonicalize SMILES strings.
- **Polars**: Useful functions to work with Polars.

[📚 Documentation](https://deargen.github.io/bio-data-to-db/) has the API reference and the usage.

## 🛠️ Installation

```bash
pip install bio-data-to-db
```

## 🚦 Usage

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

### Uniprot

```bash
# 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'
```

```python
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")
```

### BindingDB

```bash
# Decode HTML entities and strip the strings in the `assay` table (column: description and assay_name).
# Currently, only assay table is supported.
bio-data-to-db bindingdb fix-table assay 'mysql://username:password@localhost/bind'
```

```python
from bio_data_to_db.bindingdb.fix_tables import fix_assay_table

fix_assay_table("mysql://username:password@localhost/bind")
```

### PostgreSQL Helpers, SMILES, Polars utils and more

This package also provides some useful functions to work with PostgreSQL, SMILES, Polars and more.

```python
from bio_data_to_db.utils.postgresql import (
    create_db_if_not_exists,
    create_schema_if_not_exists,
    make_int_column_primary_key_identity,
    make_columns_primary_key,
    make_columns_unique,
    make_large_columns_unique,
    split_column_str_to_list,
    polars_write_database,  # addressed issues with list columns
)

from bio_data_to_db.utils.smiles import (
    canonical_smiles_wo_salt,
    polars_canonical_smiles_wo_salt,
)

from bio_data_to_db.utils.fasta import (
    polars_standardize_fasta,
)

from bio_data_to_db.utils.polars import (
    w_pbar,
)
```

You can find the usage in the [📚 documentation](https://deargen.github.io/bio-data-to-db/).


## 👨‍💻️ Maintenance Notes

### Install from source

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

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

### Generate lockfiles

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

### Publish a new version to PyPI

Use GitHub Actions: `deploy.yml`. Manually launch the workflow and it will compile on all architectures and publish the new version to PyPI.

### 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.

```bash
# .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.

```bash
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.

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

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



            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bio-data-to-db",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Kiyoon Kim",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/28/e0/d4f75f3a97a9e841009fe13deb1d049e969c6c8be15f90fcc312593327f2/bio_data_to_db-0.1.5.tar.gz",
    "platform": null,
    "description": "# bio-data-to-db: make Uniprot PostgreSQL database\n\n[![image](https://img.shields.io/pypi/v/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/bio-data-to-db)](https://pypi.python.org/pypi/bio-data-to-db)\n[![image](https://img.shields.io/pypi/l/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)\n[![image](https://img.shields.io/pypi/pyversions/bio-data-to-db.svg)](https://pypi.python.org/pypi/bio-data-to-db)\n\n|  |  |\n|--|--|\n|[![Ruff](https://img.shields.io/badge/Ruff-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/ruff) [![rustfmt](https://img.shields.io/badge/rustfmt-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)](https://github.com/rust-lang/rustfmt) |[![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Style%20checking/badge.svg)](https://github.com/deargen/bio-data-to-db/actions)|\n| [![Ruff](https://img.shields.io/badge/Ruff-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/ruff) [![Clippy](https://img.shields.io/badge/clippy-%23000000.svg?style=for-the-badge&logo=rust&logoColor=white)](https://github.com/rust-lang/rust-clippy) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Linting/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |\n| [![doctest](https://img.shields.io/badge/doctest-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://docs.python.org/3/library/doctest.html) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Tests/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |\n| [![uv](https://img.shields.io/badge/uv-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54)](https://github.com/astral-sh/uv) | [![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Check%20pip%20compile%20sync/badge.svg)](https://github.com/deargen/bio-data-to-db/actions) |\n|[![Built with Material for MkDocs](https://img.shields.io/badge/Material_for_MkDocs-526CFE?style=for-the-badge&logo=MaterialForMkDocs&logoColor=white)](https://squidfunk.github.io/mkdocs-material/)|[![Actions status](https://github.com/deargen/bio-data-to-db/workflows/Deploy%20MkDocs%20on%20latest%20commit/badge.svg)](https://github.com/deargen/bio-data-to-db/actions)|\n\n\nBio 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.\n\nPartially written in Rust, thus equipped with an extremely fast uniprot xml parser. Packaged for python, so anyone can easily install and use it.\n\nThis package focuses more on parsing the data and inserting it into the database, rather than curating the data. Main features include:\n\n- **Uniprot**: Parse the uniprot xml file and insert the data into the database.\n- **BindingDB**: Fix the HTML entities in the assay table.\n- **PostgreSQL Helpers**: Useful functions to work with PostgreSQL.\n- **SMILES**: Canonicalize SMILES strings.\n- **Polars**: Useful functions to work with Polars.\n\n[\ud83d\udcda Documentation](https://deargen.github.io/bio-data-to-db/) has the API reference and the usage.\n\n## \ud83d\udee0\ufe0f Installation\n\n```bash\npip install bio-data-to-db\n```\n\n## \ud83d\udea6 Usage\n\nYou can use the command line interface or the python API.\n\n### Uniprot\n\n```bash\n# It will create a db 'uniprot' and a table named 'public.uniprot_info' in the database.\n# If you want another name, you can optionally pass it as the last argument.\nbio-data-to-db uniprot create-empty-table 'postgresql://username@localhost:5432/uniprot'\n\n# It will parse the xml file and insert the data into the table.\n# It requires that the table is already created.\nbio-data-to-db uniprot xml-to-postgresql '~/Downloads/uniprot_sprot.xml' 'postgresql://username@localhost:5432/uniprot'\n\n# Create a table that maps accession to pk_id.\n# Columns: accession (text), uniprot_pk_ids (integer[])\nbio-data-to-db uniprot create-accession-to-pk-id 'postgresql://username@localhost:5432/uniprot'\n\n# It will parse the keywords tsv file and insert the data into the table.\nbio-data-to-db uniprot keywords-tsv-to-postgresql '~/Downloads/keywords_all_2024_06_26.tsv' 'postgresql://username@localhost/uniprot'\n```\n\n```python\nfrom bio_data_to_db.uniprot import (\n    create_accession_to_pk_id_table,\n    create_empty_table,\n    uniprot_xml_to_postgresql,\n    keywords_tsv_to_postgresql,\n)\n\ncreate_empty_table(\"postgresql://user:password@localhost:5432/uniprot\")\n# It requires that the table is already created.\nuniprot_xml_to_postgresql(\"~/Downloads/uniprot_sprot.xml\", \"postgresql://user:password@localhost:5432/uniprot\")\ncreate_accession_to_pk_id_table(\"postgresql://user:password@localhost:5432/uniprot\")\nkeywords_tsv_to_postgresql(\"~/Downloads/keywords_all_2024_06_26.tsv\", \"postgresql://user:password@localhost:5432/uniprot\")\n```\n\n### BindingDB\n\n```bash\n# Decode HTML entities and strip the strings in the `assay` table (column: description and assay_name).\n# Currently, only assay table is supported.\nbio-data-to-db bindingdb fix-table assay 'mysql://username:password@localhost/bind'\n```\n\n```python\nfrom bio_data_to_db.bindingdb.fix_tables import fix_assay_table\n\nfix_assay_table(\"mysql://username:password@localhost/bind\")\n```\n\n### PostgreSQL Helpers, SMILES, Polars utils and more\n\nThis package also provides some useful functions to work with PostgreSQL, SMILES, Polars and more.\n\n```python\nfrom bio_data_to_db.utils.postgresql import (\n    create_db_if_not_exists,\n    create_schema_if_not_exists,\n    make_int_column_primary_key_identity,\n    make_columns_primary_key,\n    make_columns_unique,\n    make_large_columns_unique,\n    split_column_str_to_list,\n    polars_write_database,  # addressed issues with list columns\n)\n\nfrom bio_data_to_db.utils.smiles import (\n    canonical_smiles_wo_salt,\n    polars_canonical_smiles_wo_salt,\n)\n\nfrom bio_data_to_db.utils.fasta import (\n    polars_standardize_fasta,\n)\n\nfrom bio_data_to_db.utils.polars import (\n    w_pbar,\n)\n```\n\nYou can find the usage in the [\ud83d\udcda documentation](https://deargen.github.io/bio-data-to-db/).\n\n\n## \ud83d\udc68\u200d\ud83d\udcbb\ufe0f Maintenance Notes\n\n### Install from source\n\nInstall `uv`, `rustup` and `maturin`. Activate a virtual environment. Then,\n\n```bash\nbash scripts/install.sh\nuv pip install -r deps/requirements_dev.in\n```\n\n### Generate lockfiles\n\nUse GitHub Actions: `apply-pip-compile.yml`. Manually launch the workflow and it will make a commit with the updated lockfiles.\n\n### Publish a new version to PyPI\n\nUse GitHub Actions: `deploy.yml`. Manually launch the workflow and it will compile on all architectures and publish the new version to PyPI.\n\n### About sqlx\n\nSqlx offline mode should be configured so you can compile the code without a database present.\n\nFirst, you need to make sure the database is connected to enable the offline mode.\n\n```bash\n# .env file\nDATABASE_URL=postgresql://postgres:password@localhost:5432/uniprot\nSQLX_OFFLINE=true  # force offline mode. Otherwise, use the DATABASE_URL to connect to the database.\n```\n\nThe database needs to have the table. It can be empty but the structure has to be accessible.  \nIf it doesn't already exist, you can create the table with the following command.\n\n```bash\nbio-data-to-db uniprot create-empty-table 'postgresql://username@localhost:5432/uniprot'\n```\n\nThen, you can run the following command to prepare the SQL queries. This defines the type information for the queries.\n\n```bash\ncargo install sqlx-cli --no-default-features --features postgres\ncargo sqlx prepare\n```\n\nThis will make `.sqlx/` directory with the type information for the queries.\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Create DB from bio data",
    "version": "0.1.5",
    "project_urls": {
        "Homepage": "https://github.com/deargen/bio-data-to-db"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f6fca5dfa28a3b5cb8fc91bee4f2d15657035b70b6c568f19741b6a6549a5c8",
                "md5": "e05b5570bd4696ca2dd50e9945928a81",
                "sha256": "61f78283280fffba632c6746937395fe9c7905fb6f7eb7945799b8538b13e2a0"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e05b5570bd4696ca2dd50e9945928a81",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1088962,
            "upload_time": "2024-08-29T09:19:44",
            "upload_time_iso_8601": "2024-08-29T09:19:44.211099Z",
            "url": "https://files.pythonhosted.org/packages/0f/6f/ca5dfa28a3b5cb8fc91bee4f2d15657035b70b6c568f19741b6a6549a5c8/bio_data_to_db-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "51a74190a8a32741e22851020b749d4f8df2d937be7092e7d6e461aeaf9157a0",
                "md5": "e9f8efbb2a4506398a8a2b8da5bc7a98",
                "sha256": "556a91c52bcb44b4e21990e757edcb4378ff831d4e874c51259a90b8b2279bbc"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e9f8efbb2a4506398a8a2b8da5bc7a98",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1062246,
            "upload_time": "2024-08-29T09:19:38",
            "upload_time_iso_8601": "2024-08-29T09:19:38.686719Z",
            "url": "https://files.pythonhosted.org/packages/51/a7/4190a8a32741e22851020b749d4f8df2d937be7092e7d6e461aeaf9157a0/bio_data_to_db-0.1.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8924d91ed65779ccf633084db5f2c938d541b10e87f0438557c417f2610afe48",
                "md5": "28c40007614feb0d9e9e22bf1974f310",
                "sha256": "d39064722b19cbee070e9ccc1d595b9192f7406806e6146d45cfa0ed924ff6cf"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "28c40007614feb0d9e9e22bf1974f310",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1203174,
            "upload_time": "2024-08-29T09:18:49",
            "upload_time_iso_8601": "2024-08-29T09:18:49.748242Z",
            "url": "https://files.pythonhosted.org/packages/89/24/d91ed65779ccf633084db5f2c938d541b10e87f0438557c417f2610afe48/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd0b5cf9a9e4e4cd0d5f9ddd469500f82524e95ca15b7fa4b445e6cdf6bd7b8b",
                "md5": "2c0f6344993a93eca307d42802c36d95",
                "sha256": "c755dbaecf45ef8d8162dcc48e70d33f01ae1627fa465475f6bba7dd64e057f8"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2c0f6344993a93eca307d42802c36d95",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1174472,
            "upload_time": "2024-08-29T09:18:58",
            "upload_time_iso_8601": "2024-08-29T09:18:58.057693Z",
            "url": "https://files.pythonhosted.org/packages/dd/0b/5cf9a9e4e4cd0d5f9ddd469500f82524e95ca15b7fa4b445e6cdf6bd7b8b/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eb7d12b1e6cd06df3d5f769cd616f77ac09626fbe787a41e509f295c774463f",
                "md5": "14d3fd2794a8d5abc9dae1bf3c8c8925",
                "sha256": "5401cfda137c08c169aecbf5ee7a0502d350d7202229b1656dbbf1619cb91a40"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "14d3fd2794a8d5abc9dae1bf3c8c8925",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1244625,
            "upload_time": "2024-08-29T09:19:23",
            "upload_time_iso_8601": "2024-08-29T09:19:23.267157Z",
            "url": "https://files.pythonhosted.org/packages/7e/b7/d12b1e6cd06df3d5f769cd616f77ac09626fbe787a41e509f295c774463f/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c738de17e162d1d90cb2fd64321c50681780d93c2ddb12811bb25e78ca6cc97",
                "md5": "d57f47a1f0212e447c7eca43d72de220",
                "sha256": "eb0fb1d3d76d1df6c955ed049d55c40ee3ae4d50d95d600aa52fa51dc061ad13"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d57f47a1f0212e447c7eca43d72de220",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1264204,
            "upload_time": "2024-08-29T09:19:06",
            "upload_time_iso_8601": "2024-08-29T09:19:06.223150Z",
            "url": "https://files.pythonhosted.org/packages/4c/73/8de17e162d1d90cb2fd64321c50681780d93c2ddb12811bb25e78ca6cc97/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f73e68aca83d136168e516c6223ffe4fd015dd73593968b2a834ce42df67ff0f",
                "md5": "23cced69aeb2cdf956d84e69386a4751",
                "sha256": "effa20ab53652c0b1649a50db5c7bc409aa41521750ae1eb2282fecad7a2c719"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "23cced69aeb2cdf956d84e69386a4751",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1332551,
            "upload_time": "2024-08-29T09:19:14",
            "upload_time_iso_8601": "2024-08-29T09:19:14.976423Z",
            "url": "https://files.pythonhosted.org/packages/f7/3e/68aca83d136168e516c6223ffe4fd015dd73593968b2a834ce42df67ff0f/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d779a47ef334946ebd100c82135146fc502aef388198434a1edec5339bae69e5",
                "md5": "8fe8f3f2b0201942bfb0a6b6bdd2fcb7",
                "sha256": "c7f481c03bf5638b009fd223a824983e373d0fbe600fc9fe51b79a4f52b95bf5"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8fe8f3f2b0201942bfb0a6b6bdd2fcb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 1191713,
            "upload_time": "2024-08-29T09:19:31",
            "upload_time_iso_8601": "2024-08-29T09:19:31.419267Z",
            "url": "https://files.pythonhosted.org/packages/d7/79/a47ef334946ebd100c82135146fc502aef388198434a1edec5339bae69e5/bio_data_to_db-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcae3b0c1168e9fb24979a6cdb5c12333594abd8fa0bc36103adce80a3f96765",
                "md5": "b455ef025462a422e01f9b363cdf5bb9",
                "sha256": "eec9b2b8228e7ac3cec40b3b09e52da29be30329676ffe4ec2d3ec7aeba76e5e"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b455ef025462a422e01f9b363cdf5bb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 874986,
            "upload_time": "2024-08-29T09:19:58",
            "upload_time_iso_8601": "2024-08-29T09:19:58.744006Z",
            "url": "https://files.pythonhosted.org/packages/dc/ae/3b0c1168e9fb24979a6cdb5c12333594abd8fa0bc36103adce80a3f96765/bio_data_to_db-0.1.5-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3296e21efa2f1f48342ba1b5a456643274122f9c560d8de840d9fccae8aac674",
                "md5": "2dc544ded4381b88e51c4b9a50f39dcd",
                "sha256": "b7987f6617c0e0fe9f15c922a43c67dc72d509c2ac525e458f260ee081c446b7"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2dc544ded4381b88e51c4b9a50f39dcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 929295,
            "upload_time": "2024-08-29T09:19:52",
            "upload_time_iso_8601": "2024-08-29T09:19:52.353721Z",
            "url": "https://files.pythonhosted.org/packages/32/96/e21efa2f1f48342ba1b5a456643274122f9c560d8de840d9fccae8aac674/bio_data_to_db-0.1.5-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "00ae35150a58c8976fadb3322636f9884fc5e9c81b91b5bfcce0e24a34060fe2",
                "md5": "30cbc91dd1d4ffc786e8ec1e999c5a4d",
                "sha256": "377d763f3f484d89a7dd17f0756e12f574959f8c5d17fc89341e83461cb17a43"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30cbc91dd1d4ffc786e8ec1e999c5a4d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1088871,
            "upload_time": "2024-08-29T09:19:46",
            "upload_time_iso_8601": "2024-08-29T09:19:46.744329Z",
            "url": "https://files.pythonhosted.org/packages/00/ae/35150a58c8976fadb3322636f9884fc5e9c81b91b5bfcce0e24a34060fe2/bio_data_to_db-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4977fcee35cc735b0e624edef2d87bb3c5ac957b8c72a94b134ca169099eb6da",
                "md5": "25bc2419d5e89413a03ff58878607f50",
                "sha256": "fa013f6e8abd51e23176f83aa7c0d28f1b9c05de0e416314255fe23e1711b46b"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "25bc2419d5e89413a03ff58878607f50",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1062106,
            "upload_time": "2024-08-29T09:19:40",
            "upload_time_iso_8601": "2024-08-29T09:19:40.348309Z",
            "url": "https://files.pythonhosted.org/packages/49/77/fcee35cc735b0e624edef2d87bb3c5ac957b8c72a94b134ca169099eb6da/bio_data_to_db-0.1.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6ddc1f400e4e9561387cc04d346001bc4d1a06e8c710608bc167ddc7f479198",
                "md5": "7b946eef1c546b6d0046c82c48be048b",
                "sha256": "eb3af7e43e13cf3ecf61fa6132ab43d5a76a9c06d495eaed2a42cdef0c23ebf3"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7b946eef1c546b6d0046c82c48be048b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1202901,
            "upload_time": "2024-08-29T09:18:52",
            "upload_time_iso_8601": "2024-08-29T09:18:52.352784Z",
            "url": "https://files.pythonhosted.org/packages/d6/dd/c1f400e4e9561387cc04d346001bc4d1a06e8c710608bc167ddc7f479198/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf7ee204487ea3eab0efa8bfa8fd49e10c29d86cc2a1de311a2e3c2a6a1dcf70",
                "md5": "d4e4a974665a595a32842a97361c358d",
                "sha256": "164c181003df2bb308ad28e3a1fe6778ffded5b6484d4c420e497dfce9f0d1cc"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d4e4a974665a595a32842a97361c358d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1174153,
            "upload_time": "2024-08-29T09:18:59",
            "upload_time_iso_8601": "2024-08-29T09:18:59.774213Z",
            "url": "https://files.pythonhosted.org/packages/bf/7e/e204487ea3eab0efa8bfa8fd49e10c29d86cc2a1de311a2e3c2a6a1dcf70/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fff385f34f4204cdc5f902e65632d817305561adb337dd6bffa5f64614127f6f",
                "md5": "acb0404bf0bca94f9f2802699fcee49b",
                "sha256": "4b3b2b9e03cea4df9e2d5685c466d3f3146bd60d151fe5c14f838d525b8c980e"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "acb0404bf0bca94f9f2802699fcee49b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1244198,
            "upload_time": "2024-08-29T09:19:25",
            "upload_time_iso_8601": "2024-08-29T09:19:25.247262Z",
            "url": "https://files.pythonhosted.org/packages/ff/f3/85f34f4204cdc5f902e65632d817305561adb337dd6bffa5f64614127f6f/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4c9af341bcf59dc1995549b4ff45c9852288e439d8670798b60bd3133ce7be9",
                "md5": "b4eb19d3a75a2a25932ca01808fd62fb",
                "sha256": "a7e26d437e1dda16e98b024c67c7d6ab818cae10f5574c79874a817f83493277"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b4eb19d3a75a2a25932ca01808fd62fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1264079,
            "upload_time": "2024-08-29T09:19:08",
            "upload_time_iso_8601": "2024-08-29T09:19:08.024404Z",
            "url": "https://files.pythonhosted.org/packages/b4/c9/af341bcf59dc1995549b4ff45c9852288e439d8670798b60bd3133ce7be9/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25f671aa1ea60086afc0a789ba058f3cabc281ddbaacc72a0268fbac06960712",
                "md5": "701c3356464abe4b5271e1a1cb7b649b",
                "sha256": "a20a25620c8cd9fb8cd72f1fb0467805bd5175931b611fe526430a98105a3f92"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "701c3356464abe4b5271e1a1cb7b649b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1332150,
            "upload_time": "2024-08-29T09:19:16",
            "upload_time_iso_8601": "2024-08-29T09:19:16.904876Z",
            "url": "https://files.pythonhosted.org/packages/25/f6/71aa1ea60086afc0a789ba058f3cabc281ddbaacc72a0268fbac06960712/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "689ba01fb70cc2ba026a575d1e15cef1798a3909e8b9b3d6ba5fd4015ed2acc0",
                "md5": "ae4afe0b9774f131e233219d9586375f",
                "sha256": "67fb1d9b64a720affe452dbd63f946ad347328e45c50829d184b0cce4f1ac0c2"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae4afe0b9774f131e233219d9586375f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 1191687,
            "upload_time": "2024-08-29T09:19:33",
            "upload_time_iso_8601": "2024-08-29T09:19:33.213031Z",
            "url": "https://files.pythonhosted.org/packages/68/9b/a01fb70cc2ba026a575d1e15cef1798a3909e8b9b3d6ba5fd4015ed2acc0/bio_data_to_db-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a78aa29a67e0fb85911297c565849d933d5ad2c36dcb45f17dbf11d23c615b45",
                "md5": "c71b2e359c9b0765bea0299fbbc3cd3d",
                "sha256": "0a7c91e2f1a907f1b6c67a8319deeae9a10c2bb21e9a99c2ba0e7e00ee85c92e"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "c71b2e359c9b0765bea0299fbbc3cd3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 874884,
            "upload_time": "2024-08-29T09:20:00",
            "upload_time_iso_8601": "2024-08-29T09:20:00.814231Z",
            "url": "https://files.pythonhosted.org/packages/a7/8a/a29a67e0fb85911297c565849d933d5ad2c36dcb45f17dbf11d23c615b45/bio_data_to_db-0.1.5-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "07da6fdc8a185eb1e464c77145700230d81ddb66d18f67da7086eff0751efe96",
                "md5": "403e22b3204c412334319e4234248ffb",
                "sha256": "f0af2041e31324ab1a96fd9c5fc941442514d524d61999256afbfa338c816c41"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "403e22b3204c412334319e4234248ffb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 929234,
            "upload_time": "2024-08-29T09:19:54",
            "upload_time_iso_8601": "2024-08-29T09:19:54.896852Z",
            "url": "https://files.pythonhosted.org/packages/07/da/6fdc8a185eb1e464c77145700230d81ddb66d18f67da7086eff0751efe96/bio_data_to_db-0.1.5-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a8a2f258a79f355ffc812d93394613f8faa4b6c6ee615a0a8b1aea135879e76",
                "md5": "1911de880a0b663cd8d9f54b60d2bf23",
                "sha256": "3903a579e7dc317ab4037f089fcc5d089ffeb1239266a24455c0fd14ef943ab5"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1911de880a0b663cd8d9f54b60d2bf23",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1087277,
            "upload_time": "2024-08-29T09:19:48",
            "upload_time_iso_8601": "2024-08-29T09:19:48.620176Z",
            "url": "https://files.pythonhosted.org/packages/9a/8a/2f258a79f355ffc812d93394613f8faa4b6c6ee615a0a8b1aea135879e76/bio_data_to_db-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9c5067edeba8e1cb601837e31e637eef849834b2e9ac8efdc27209ab1667a823",
                "md5": "6c418d0f83406a8c0771aee8e6db54d5",
                "sha256": "35fb85be1b72b9b72c9bac77db2fd53aed88b4b6c9eccea10247cdc81dc7fa37"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6c418d0f83406a8c0771aee8e6db54d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1061625,
            "upload_time": "2024-08-29T09:19:42",
            "upload_time_iso_8601": "2024-08-29T09:19:42.452157Z",
            "url": "https://files.pythonhosted.org/packages/9c/50/67edeba8e1cb601837e31e637eef849834b2e9ac8efdc27209ab1667a823/bio_data_to_db-0.1.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "12b28ddf3daec0ce8dc6a025a10a2293c5f9523cb474dcbc583d7df775c57c62",
                "md5": "c9618c94a8dc666cbc07f77a41caffd5",
                "sha256": "d9a3672f282466832696b2524ee0f7a0cce860cc332d771107fd98129e4f1699"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9618c94a8dc666cbc07f77a41caffd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1203421,
            "upload_time": "2024-08-29T09:18:54",
            "upload_time_iso_8601": "2024-08-29T09:18:54.445719Z",
            "url": "https://files.pythonhosted.org/packages/12/b2/8ddf3daec0ce8dc6a025a10a2293c5f9523cb474dcbc583d7df775c57c62/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edb1ac7519bfcc86d9a0714abd0c6ddc88472b7bcf0d34265fee6b7e55563e0b",
                "md5": "0301e4157733e0284891c47215c27ada",
                "sha256": "91fbb61ee0e69ee61f85736a288253db24ba522a01760dcb912fc94ac9de8b17"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0301e4157733e0284891c47215c27ada",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1174788,
            "upload_time": "2024-08-29T09:19:02",
            "upload_time_iso_8601": "2024-08-29T09:19:02.266025Z",
            "url": "https://files.pythonhosted.org/packages/ed/b1/ac7519bfcc86d9a0714abd0c6ddc88472b7bcf0d34265fee6b7e55563e0b/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "661bcf352755b5a57ac2efa4cfe204a35b6bec1c61fd4336e5b35397ac2b1641",
                "md5": "a05d2737b233135d870b11f50b54e35d",
                "sha256": "950ab5704937c785f309997fd8c6cad5c1bc8d09509e858116a38dd2b8ab9aa6"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a05d2737b233135d870b11f50b54e35d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1243625,
            "upload_time": "2024-08-29T09:19:27",
            "upload_time_iso_8601": "2024-08-29T09:19:27.613661Z",
            "url": "https://files.pythonhosted.org/packages/66/1b/cf352755b5a57ac2efa4cfe204a35b6bec1c61fd4336e5b35397ac2b1641/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d53d4091770538f0fcfee3ab8973d3c9105b8bb42026164ad3fbc082574a29fc",
                "md5": "a4d7fba560fa3dfe4b6c3e8e72c9745d",
                "sha256": "3ade570205062f2fb4461d58c6b7a634f3c62ac9fecf99edbefead902db3fb2e"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a4d7fba560fa3dfe4b6c3e8e72c9745d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1263017,
            "upload_time": "2024-08-29T09:19:10",
            "upload_time_iso_8601": "2024-08-29T09:19:10.110906Z",
            "url": "https://files.pythonhosted.org/packages/d5/3d/4091770538f0fcfee3ab8973d3c9105b8bb42026164ad3fbc082574a29fc/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3ab90ad3bc4447d67ae0f2868f5e7e8be92d40d89104a3ea88ce1cbe732d9a47",
                "md5": "8e6f75b9c11185c6fc19410b1ab65f11",
                "sha256": "c7d9d9f42b72232ddeb0d35556589e0460eaee48b104a201b8f0e2f5bb5a22b8"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8e6f75b9c11185c6fc19410b1ab65f11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1328148,
            "upload_time": "2024-08-29T09:19:18",
            "upload_time_iso_8601": "2024-08-29T09:19:18.989286Z",
            "url": "https://files.pythonhosted.org/packages/3a/b9/0ad3bc4447d67ae0f2868f5e7e8be92d40d89104a3ea88ce1cbe732d9a47/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7fc753460e9ffb924a25b6bb03737cfe0736cda90e8bf13e2d18e61b3d1ee3a7",
                "md5": "5dc3891156ddc52aa16e7e0f525383d9",
                "sha256": "e48915530db00729ddab61713a02af77131778a68a561fb6171c5f026b5709c0"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5dc3891156ddc52aa16e7e0f525383d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 1191536,
            "upload_time": "2024-08-29T09:19:34",
            "upload_time_iso_8601": "2024-08-29T09:19:34.862417Z",
            "url": "https://files.pythonhosted.org/packages/7f/c7/53460e9ffb924a25b6bb03737cfe0736cda90e8bf13e2d18e61b3d1ee3a7/bio_data_to_db-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0eb8aebe85fd4c9a0b44f349b8271cdab6394e830107fc251d806201f7519aeb",
                "md5": "71a20eb73bfd1de955bc92941b35e4c2",
                "sha256": "b0f961c75ed00a80e4a0ef26dd71134456d36447731e20de2f8470755e8c1017"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "71a20eb73bfd1de955bc92941b35e4c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 874910,
            "upload_time": "2024-08-29T09:20:03",
            "upload_time_iso_8601": "2024-08-29T09:20:03.412425Z",
            "url": "https://files.pythonhosted.org/packages/0e/b8/aebe85fd4c9a0b44f349b8271cdab6394e830107fc251d806201f7519aeb/bio_data_to_db-0.1.5-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5778473926be0d848684eafc88a424dbdf4fb5129f17f9967b2b6a67b7fabfbe",
                "md5": "703d9d2877cc2d8c9e237ff40b950337",
                "sha256": "51d025c82ef74d896aa687a616fcf2657989c6d15016f0c8b831f7d4d9fa75bc"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "703d9d2877cc2d8c9e237ff40b950337",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 930422,
            "upload_time": "2024-08-29T09:19:57",
            "upload_time_iso_8601": "2024-08-29T09:19:57.139018Z",
            "url": "https://files.pythonhosted.org/packages/57/78/473926be0d848684eafc88a424dbdf4fb5129f17f9967b2b6a67b7fabfbe/bio_data_to_db-0.1.5-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7239415c5284687b8d24d81b025a7ca4472e8d83524c0448bf14c3de37753aa5",
                "md5": "f04cb5419461ac2efa3840036073def8",
                "sha256": "d6c6f5651d9d875336539f4bd2626076ad2175ffec0075628e17652db8ace3df"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f04cb5419461ac2efa3840036073def8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1203763,
            "upload_time": "2024-08-29T09:18:56",
            "upload_time_iso_8601": "2024-08-29T09:18:56.201135Z",
            "url": "https://files.pythonhosted.org/packages/72/39/415c5284687b8d24d81b025a7ca4472e8d83524c0448bf14c3de37753aa5/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ac1adda86906571381fb2320acc92703a034d0dda483a8d2f1e95666d191cd7",
                "md5": "0c49dce0a90e9a9280347dba9a93f7df",
                "sha256": "b78cd7db37a82d2d283292d13d8c2a70ddcbf5bb64f40b721fee75ad38d66d83"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0c49dce0a90e9a9280347dba9a93f7df",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1175328,
            "upload_time": "2024-08-29T09:19:04",
            "upload_time_iso_8601": "2024-08-29T09:19:04.289581Z",
            "url": "https://files.pythonhosted.org/packages/4a/c1/adda86906571381fb2320acc92703a034d0dda483a8d2f1e95666d191cd7/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4387a3b2c5aef8059747f5c569ede077b95020e7322e553743c754384a3ac554",
                "md5": "998d05a35c33aa4cf5806638eeb302e5",
                "sha256": "aafe0c1e40f570df66a6729c1bb2e48ea488edcc7315ebc5946284fbc983e8c1"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "998d05a35c33aa4cf5806638eeb302e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1246173,
            "upload_time": "2024-08-29T09:19:29",
            "upload_time_iso_8601": "2024-08-29T09:19:29.667272Z",
            "url": "https://files.pythonhosted.org/packages/43/87/a3b2c5aef8059747f5c569ede077b95020e7322e553743c754384a3ac554/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a2e0d37b6c7e5b9abd8ca19c75b0d0f30c1d2e7d939f28c880f47f93d75c7d8",
                "md5": "f10efa8e4f06cef35a15b16312be47e0",
                "sha256": "184584050c6a92326b2e258a224e1a689d379baf516daa14c34bb245bf3d9e14"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f10efa8e4f06cef35a15b16312be47e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1266207,
            "upload_time": "2024-08-29T09:19:12",
            "upload_time_iso_8601": "2024-08-29T09:19:12.620460Z",
            "url": "https://files.pythonhosted.org/packages/1a/2e/0d37b6c7e5b9abd8ca19c75b0d0f30c1d2e7d939f28c880f47f93d75c7d8/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "554a59d923108bdb9c6ffebdf8bf78b075df9d39e1feade7b1441f89b5a9502c",
                "md5": "0bcb310d955dc90f21f109c4b7da0c6c",
                "sha256": "71b17443ca14976c1344f633d5f3a0d2c85899092388f65f243da037279d72b2"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0bcb310d955dc90f21f109c4b7da0c6c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1335471,
            "upload_time": "2024-08-29T09:19:20",
            "upload_time_iso_8601": "2024-08-29T09:19:20.922894Z",
            "url": "https://files.pythonhosted.org/packages/55/4a/59d923108bdb9c6ffebdf8bf78b075df9d39e1feade7b1441f89b5a9502c/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ace77c9992fcaa2fa6a12081b376af569e9572240b34e56dfc1391cdbbe0a715",
                "md5": "4dcbf24ba091dbfdd0a1a977b289858e",
                "sha256": "9615f11edc5f46d9fc6c67df0f1911a148b1fe9cc34de14f71b34c1477aa4a92"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dcbf24ba091dbfdd0a1a977b289858e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 1194172,
            "upload_time": "2024-08-29T09:19:36",
            "upload_time_iso_8601": "2024-08-29T09:19:36.912085Z",
            "url": "https://files.pythonhosted.org/packages/ac/e7/7c9992fcaa2fa6a12081b376af569e9572240b34e56dfc1391cdbbe0a715/bio_data_to_db-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28e0d4f75f3a97a9e841009fe13deb1d049e969c6c8be15f90fcc312593327f2",
                "md5": "ff26df58b1cc355fda6afa42da869d7c",
                "sha256": "f65d72a3692b5ec549172ebdc1e5004d1cecb465a8b9f96e49f879e3e86f6f57"
            },
            "downloads": -1,
            "filename": "bio_data_to_db-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "ff26df58b1cc355fda6afa42da869d7c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 31951,
            "upload_time": "2024-08-29T09:19:50",
            "upload_time_iso_8601": "2024-08-29T09:19:50.614259Z",
            "url": "https://files.pythonhosted.org/packages/28/e0/d4f75f3a97a9e841009fe13deb1d049e969c6c8be15f90fcc312593327f2/bio_data_to_db-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-29 09:19:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "deargen",
    "github_project": "bio-data-to-db",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bio-data-to-db"
}
        
Elapsed time: 0.40949s