Name | pyncbitk JSON |
Version |
0.1.0a1
JSON |
| download |
home_page | None |
Summary | Cython bindings and Python interface to the NCBI C++ Toolkit. |
upload_time | 2024-12-12 16:55:18 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.7 |
license | MIT License Copyright (c) 2024 Martin Larralde <martin.larralde@embl.de> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
bioinformatics
blast
sequence
alignment
ncbi
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# π§¬π§° PyNCBItk [![Stars](https://img.shields.io/github/stars/althonos/pyncbitk.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyncbitk/stargazers)
*(Unofficial) [Cython](https://cython.org/) bindings and Python interface to the [NCBI C++ Toolkit](https://www.ncbi.nlm.nih.gov/toolkit).*
[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyncbitk/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyncbitk/actions)
[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyncbitk?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyncbitk/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)
[![PyPI](https://img.shields.io/pypi/v/pyncbitk.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyncbitk)
[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyncbitk?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyncbitk)
[![AUR](https://img.shields.io/aur/version/python-pyncbitk?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyncbitk)
[![Wheel](https://img.shields.io/pypi/wheel/pyncbitk.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyncbitk/#files)
[![Python Versions](https://img.shields.io/pypi/pyversions/pyncbitk.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyncbitk/#files)
[![Python Implementations](https://img.shields.io/pypi/implementation/pyncbitk.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyncbitk/#files)
[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyncbitk/)
[![Mirror](https://img.shields.io/badge/mirror-LUMC-003EAA.svg?maxAge=2678400&style=flat-square)](https://git.lumc.nl/mflarralde/pyncbitk/)
[![Issues](https://img.shields.io/github/issues/althonos/pyncbitk.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyncbitk/issues)
[![Docs](https://img.shields.io/readthedocs/pyncbitk/latest?style=flat-square&maxAge=600)](https://pyncbitk.readthedocs.io)
[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyncbitk/blob/main/CHANGELOG.md)
[![Downloads](https://img.shields.io/pypi/dm/pyncbitk?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyncbitk)
***β οΈ This package is a work-in-progress and in a very experimental state. Expect segmentation faults, compilation issues, missing features, incomplete documentation.***
## πΊοΈ Overview
The [NCBI C++ Toolkit](https://ncbi.github.io/cxx-toolkit/) is a framework of
C++ libraries to work with biological sequence data developed at the
[National Center for Biotechnology Information](https://www.ncbi.nlm.nih.gov/).
It features a flexible object model for representing sequences of various
origin, including composite or virtual sequences; a resource manager
to easily manipulate heterogeneous data sources; and a comprehensive API to the
various BLAST algorithms[\[1\]](#ref1) developed at the NBCI.
PyNCBItk is a Python library that provides bindings to the NCBI C++ Toolkit
data model and BLAST+ interface using [Cython](https://cython.org). It exposes
the internals of the C++ Toolkit, allowing BLAST queries to be run directly
from the Python interpreter without external I/O.
## π Roadmap
The package is in a very experimental state, and only a few core features are
supported at the moment:
- [x] Loading sequences from a FASTA file.
- [x] Creating basic sequences through the Python API.
- [x] Running BLAST searches with default parameters.
- [ ] Thorough BLAST configuration.
- [ ] Error and warning management.
- [ ] Support for all kinds of sequence storage.
- [ ] Multi-threading for database searches using Python threads.
- [ ] Advanced interface for the object manager.
- [ ] Interface for all sequence and alignment types.
## π§ Installing
PyNCBItk is available for all modern Python (3.7+). Compilation is done
through [CMake](https://cmake.org) using [Scikit-build-core](https://scikit-build-core.readthedocs.io).
To install the project locally, clone the repository and its submodules,
and install the repository with `pip`:
```
$ git clone --recursive https://github.com/althonos/pyncbitk
$ pip install ./pyncbitk -v
```
The compilation uses the [Conan C/C++ package manager](https://docs.conan.io/2/)
to handle compilation of the NCBI C++ Toolkit: the project will take ages to
compile the first time, but afterwards only the Cython code will have to be
recompiled.
## π‘ Example
```python
from pyncbitk.objects.seqset import BioSeqSet
from pyncbitk.objtools import DatabaseReader, FastaReader
from pyncbitk.algo import BlastN
# read the queries from a FASTA file
queries = BioSeqSet(FastaReader("queries.fna"))
# open a database of subject sequences
db = DatabaseReader("database.fna")
# run `blastn` with default parameters
blastn = BlastN()
results = blastn.run(queries, db)
```
The result is a `SearchResultsSet` which contains one `SearchResults` object
per query/subject pair. The `SearchResults` object summarizes the result
and contains the hit alignments in a `SeqAlignSet`.
## π Feedback
### β οΈ Issue Tracker
Found a bug ? Have an enhancement request ? Head over to the
[GitHub issue tracker](https://github.com/althonos/pyncbitk/issues)
if you need to report or ask something. If you are filing in on a bug,
please include as much information as you can about the issue, and try to
recreate the same bug in a simple, easily reproducible situation.
### ποΈ Contributing
Contributions are more than welcome! See
[`CONTRIBUTING.md`](https://github.com/althonos/pyncbitk/blob/main/CONTRIBUTING.md)
for more details.
## π Changelog
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
and provides a [changelog](https://github.com/althonos/pyncbitk/blob/main/CHANGELOG.md)
in the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.
## βοΈ License
This library is provided under the [MIT License](https://choosealicense.com/licenses/mit/).
The NCBI C++ Toolkit is a "United States Government Work" and therefore lies in
the public domain, but may be subject to copyright by the U.S. in foreign
countries. Some restrictions apply, see the
[NCBI C++ Toolkit license](https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/doc/public/LICENSE).
*This project is in no way not affiliated, sponsored, or otherwise endorsed
by the NCBI or any associated entity. It was developed
by [Martin Larralde](https://github.com/althonos/) during his PhD
at the [Leiden University Medical Center](https://www.lumc.nl/en/) in
the [Zeller team](https://github.com/zellerlab).*
## π References
- <a id="ref1">\[1\]</a> Altschul, S. F., Gish, W., Miller, W., Myers, E. W., & Lipman, D. J. (1990). Basic local alignment search tool. *Journal of molecular biology*, 215(3), 403β410. [doi:10.1016/S0022-2836(05)80360-2](https://doi.org/10.1016/S0022-2836(05)80360-2)
Raw data
{
"_id": null,
"home_page": null,
"name": "pyncbitk",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": null,
"keywords": "bioinformatics, blast, sequence, alignment, ncbi",
"author": null,
"author_email": "Martin Larralde <martin.larralde@embl.de>",
"download_url": "https://files.pythonhosted.org/packages/ff/13/c9c152bca29cd3ba32b2b90a7b0692f90957446aea68443968687879853b/pyncbitk-0.1.0a1.tar.gz",
"platform": null,
"description": "# \ud83e\uddec\ud83e\uddf0 PyNCBItk [![Stars](https://img.shields.io/github/stars/althonos/pyncbitk.svg?style=social&maxAge=3600&label=Star)](https://github.com/althonos/pyncbitk/stargazers)\n\n*(Unofficial) [Cython](https://cython.org/) bindings and Python interface to the [NCBI C++ Toolkit](https://www.ncbi.nlm.nih.gov/toolkit).*\n\n[![Actions](https://img.shields.io/github/actions/workflow/status/althonos/pyncbitk/test.yml?branch=main&logo=github&style=flat-square&maxAge=300)](https://github.com/althonos/pyncbitk/actions)\n[![Coverage](https://img.shields.io/codecov/c/gh/althonos/pyncbitk?style=flat-square&maxAge=3600&logo=codecov)](https://codecov.io/gh/althonos/pyncbitk/)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square&maxAge=2678400)](https://choosealicense.com/licenses/mit/)\n[![PyPI](https://img.shields.io/pypi/v/pyncbitk.svg?style=flat-square&maxAge=3600&logo=PyPI)](https://pypi.org/project/pyncbitk)\n[![Bioconda](https://img.shields.io/conda/vn/bioconda/pyncbitk?style=flat-square&maxAge=3600&logo=anaconda)](https://anaconda.org/bioconda/pyncbitk)\n[![AUR](https://img.shields.io/aur/version/python-pyncbitk?logo=archlinux&style=flat-square&maxAge=3600)](https://aur.archlinux.org/packages/python-pyncbitk)\n[![Wheel](https://img.shields.io/pypi/wheel/pyncbitk.svg?style=flat-square&maxAge=3600)](https://pypi.org/project/pyncbitk/#files)\n[![Python Versions](https://img.shields.io/pypi/pyversions/pyncbitk.svg?style=flat-square&maxAge=600&logo=python)](https://pypi.org/project/pyncbitk/#files)\n[![Python Implementations](https://img.shields.io/pypi/implementation/pyncbitk.svg?style=flat-square&maxAge=600&label=impl)](https://pypi.org/project/pyncbitk/#files)\n[![Source](https://img.shields.io/badge/source-GitHub-303030.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyncbitk/)\n[![Mirror](https://img.shields.io/badge/mirror-LUMC-003EAA.svg?maxAge=2678400&style=flat-square)](https://git.lumc.nl/mflarralde/pyncbitk/)\n[![Issues](https://img.shields.io/github/issues/althonos/pyncbitk.svg?style=flat-square&maxAge=600)](https://github.com/althonos/pyncbitk/issues)\n[![Docs](https://img.shields.io/readthedocs/pyncbitk/latest?style=flat-square&maxAge=600)](https://pyncbitk.readthedocs.io)\n[![Changelog](https://img.shields.io/badge/keep%20a-changelog-8A0707.svg?maxAge=2678400&style=flat-square)](https://github.com/althonos/pyncbitk/blob/main/CHANGELOG.md)\n[![Downloads](https://img.shields.io/pypi/dm/pyncbitk?style=flat-square&color=303f9f&maxAge=86400&label=downloads)](https://pepy.tech/project/pyncbitk)\n\n***\u26a0\ufe0f This package is a work-in-progress and in a very experimental state. Expect segmentation faults, compilation issues, missing features, incomplete documentation.***\n\n## \ud83d\uddfa\ufe0f Overview\n\nThe [NCBI C++ Toolkit](https://ncbi.github.io/cxx-toolkit/) is a framework of\nC++ libraries to work with biological sequence data developed at the\n[National Center for Biotechnology Information](https://www.ncbi.nlm.nih.gov/).\nIt features a flexible object model for representing sequences of various\norigin, including composite or virtual sequences; a resource manager\nto easily manipulate heterogeneous data sources; and a comprehensive API to the\nvarious BLAST algorithms[\\[1\\]](#ref1) developed at the NBCI.\n\nPyNCBItk is a Python library that provides bindings to the NCBI C++ Toolkit\ndata model and BLAST+ interface using [Cython](https://cython.org). It exposes\nthe internals of the C++ Toolkit, allowing BLAST queries to be run directly\nfrom the Python interpreter without external I/O.\n\n## \ud83d\udccb Roadmap\n\nThe package is in a very experimental state, and only a few core features are\nsupported at the moment:\n\n- [x] Loading sequences from a FASTA file.\n- [x] Creating basic sequences through the Python API.\n- [x] Running BLAST searches with default parameters.\n- [ ] Thorough BLAST configuration.\n- [ ] Error and warning management.\n- [ ] Support for all kinds of sequence storage.\n- [ ] Multi-threading for database searches using Python threads.\n- [ ] Advanced interface for the object manager.\n- [ ] Interface for all sequence and alignment types.\n\n## \ud83d\udd27 Installing\n\nPyNCBItk is available for all modern Python (3.7+). Compilation is done\nthrough [CMake](https://cmake.org) using [Scikit-build-core](https://scikit-build-core.readthedocs.io).\n\nTo install the project locally, clone the repository and its submodules,\nand install the repository with `pip`:\n```\n$ git clone --recursive https://github.com/althonos/pyncbitk\n$ pip install ./pyncbitk -v\n```\n\nThe compilation uses the [Conan C/C++ package manager](https://docs.conan.io/2/)\nto handle compilation of the NCBI C++ Toolkit: the project will take ages to\ncompile the first time, but afterwards only the Cython code will have to be\nrecompiled.\n\n## \ud83d\udca1 Example\n\n```python\nfrom pyncbitk.objects.seqset import BioSeqSet\nfrom pyncbitk.objtools import DatabaseReader, FastaReader\nfrom pyncbitk.algo import BlastN\n\n# read the queries from a FASTA file\nqueries = BioSeqSet(FastaReader(\"queries.fna\"))\n\n# open a database of subject sequences\ndb = DatabaseReader(\"database.fna\")\n\n# run `blastn` with default parameters\nblastn = BlastN()\nresults = blastn.run(queries, db)\n```\n\nThe result is a `SearchResultsSet` which contains one `SearchResults` object\nper query/subject pair. The `SearchResults` object summarizes the result\nand contains the hit alignments in a `SeqAlignSet`.\n\n## \ud83d\udcad Feedback\n\n### \u26a0\ufe0f Issue Tracker\n\nFound a bug ? Have an enhancement request ? Head over to the\n[GitHub issue tracker](https://github.com/althonos/pyncbitk/issues)\nif you need to report or ask something. If you are filing in on a bug,\nplease include as much information as you can about the issue, and try to\nrecreate the same bug in a simple, easily reproducible situation.\n\n\n### \ud83c\udfd7\ufe0f Contributing\n\nContributions are more than welcome! See\n[`CONTRIBUTING.md`](https://github.com/althonos/pyncbitk/blob/main/CONTRIBUTING.md)\nfor more details.\n\n\n## \ud83d\udccb Changelog\n\nThis project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)\nand provides a [changelog](https://github.com/althonos/pyncbitk/blob/main/CHANGELOG.md)\nin the [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) format.\n\n\n## \u2696\ufe0f License\n\nThis library is provided under the [MIT License](https://choosealicense.com/licenses/mit/).\nThe NCBI C++ Toolkit is a \"United States Government Work\" and therefore lies in\nthe public domain, but may be subject to copyright by the U.S. in foreign\ncountries. Some restrictions apply, see the\n[NCBI C++ Toolkit license](https://www.ncbi.nlm.nih.gov/IEB/ToolBox/CPP_DOC/lxr/source/doc/public/LICENSE).\n\n*This project is in no way not affiliated, sponsored, or otherwise endorsed\nby the NCBI or any associated entity. It was developed\nby [Martin Larralde](https://github.com/althonos/) during his PhD\nat the [Leiden University Medical Center](https://www.lumc.nl/en/) in\nthe [Zeller team](https://github.com/zellerlab).*\n\n## \ud83d\udcda References\n\n- <a id=\"ref1\">\\[1\\]</a> Altschul, S. F., Gish, W., Miller, W., Myers, E. W., & Lipman, D. J. (1990). Basic local alignment search tool. *Journal of molecular biology*, 215(3), 403\u2013410. [doi:10.1016/S0022-2836(05)80360-2](https://doi.org/10.1016/S0022-2836(05)80360-2)\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2024 Martin Larralde <martin.larralde@embl.de> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
"summary": "Cython bindings and Python interface to the NCBI C++ Toolkit.",
"version": "0.1.0a1",
"project_urls": {
"Bug tracker": "https://github.com/althonos/pyncbitk/issues",
"Builds": "https://github.com/althonos/pyncbitk/actions",
"Changelog": "https://github.com/althonos/pyncbitk/blob/master/CHANGELOG.md",
"Coverage": "https://codecov.io/gh/althonos/pyncbitk/",
"Documentation": "https://pyncbitk.readthedocs.io/en/stable/",
"Pypi": "https://pypi.org/project/pyncbitk"
},
"split_keywords": [
"bioinformatics",
" blast",
" sequence",
" alignment",
" ncbi"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "33f01640c862fcb3b0896d51e3a1beebc4050b9ee84cac0be96d41f4f9920a9d",
"md5": "c5ee59b86f0053b8be3b7e1f577fde04",
"sha256": "3f5fdcec824564e55d94e3120b6fab7480d0906050545a676dd7961d0e75928a"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c5ee59b86f0053b8be3b7e1f577fde04",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.7",
"size": 85349602,
"upload_time": "2024-12-12T16:53:54",
"upload_time_iso_8601": "2024-12-12T16:53:54.173822Z",
"url": "https://files.pythonhosted.org/packages/33/f0/1640c862fcb3b0896d51e3a1beebc4050b9ee84cac0be96d41f4f9920a9d/pyncbitk-0.1.0a1-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "590b87f6d259a39f5a1b324638fe8d93d92334dbda97e5569444a9b18cff6212",
"md5": "a0d321fd17f04387e6b9d9e3ea9eafae",
"sha256": "8e9ae5f7fe24b82892dee07fe2a1eacb9b77da2de9e1c8258f6823b3ea22299a"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "a0d321fd17f04387e6b9d9e3ea9eafae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.7",
"size": 85350242,
"upload_time": "2024-12-12T16:54:06",
"upload_time_iso_8601": "2024-12-12T16:54:06.952972Z",
"url": "https://files.pythonhosted.org/packages/59/0b/87f6d259a39f5a1b324638fe8d93d92334dbda97e5569444a9b18cff6212/pyncbitk-0.1.0a1-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d54eade9e222eab4b14082bd9e1d926f2b758d17df490ab142007ea703af0045",
"md5": "27940dfce81621ab1ca5758bc6bb9635",
"sha256": "7ceeb5123c31c9a7275f09800bb0dcc86159100275c5d475fee002ec307658d2"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "27940dfce81621ab1ca5758bc6bb9635",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.7",
"size": 85335638,
"upload_time": "2024-12-12T16:54:19",
"upload_time_iso_8601": "2024-12-12T16:54:19.625554Z",
"url": "https://files.pythonhosted.org/packages/d5/4e/ade9e222eab4b14082bd9e1d926f2b758d17df490ab142007ea703af0045/pyncbitk-0.1.0a1-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1d80e327e562b17ea6a0d7fde6edb5987287a61183ea4f49f8049d8468523533",
"md5": "12ed4b1f8aff1e7759cb0fc745d182fd",
"sha256": "edd3ddf1f42d1390adcefa63c64ceb24e3f59ae10123a4a59cf0d5b5bb17568c"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "12ed4b1f8aff1e7759cb0fc745d182fd",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.7",
"size": 85328271,
"upload_time": "2024-12-12T16:54:33",
"upload_time_iso_8601": "2024-12-12T16:54:33.242198Z",
"url": "https://files.pythonhosted.org/packages/1d/80/e327e562b17ea6a0d7fde6edb5987287a61183ea4f49f8049d8468523533/pyncbitk-0.1.0a1-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4f0220b968836f9b4bb86197d2a38c1e0354118dae2af2845b6e21f6e88a9175",
"md5": "0c54de0379afe6e27d9037e744a3662f",
"sha256": "d9dd2dbabab8a2c940d3dcf4f2d28ddbcb0a5dcf087c0e0d1bfcdcf9d498962c"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp37-cp37m-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "0c54de0379afe6e27d9037e744a3662f",
"packagetype": "bdist_wheel",
"python_version": "cp37",
"requires_python": ">=3.7",
"size": 85348768,
"upload_time": "2024-12-12T16:54:45",
"upload_time_iso_8601": "2024-12-12T16:54:45.779055Z",
"url": "https://files.pythonhosted.org/packages/4f/02/20b968836f9b4bb86197d2a38c1e0354118dae2af2845b6e21f6e88a9175/pyncbitk-0.1.0a1-cp37-cp37m-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "849f9f2b4715893b150ceb6e5307d26e4b63ae7acc8562018bc08fa6d8838272",
"md5": "6461bb0f882274dabfac0e62d76f4313",
"sha256": "ddcfd352e09f0fcc25aae7411fb68629b8c2ab5d76445fc593b4a1b008ed3d52"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp38-cp38-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "6461bb0f882274dabfac0e62d76f4313",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.7",
"size": 85358821,
"upload_time": "2024-12-12T16:54:58",
"upload_time_iso_8601": "2024-12-12T16:54:58.950122Z",
"url": "https://files.pythonhosted.org/packages/84/9f/9f2b4715893b150ceb6e5307d26e4b63ae7acc8562018bc08fa6d8838272/pyncbitk-0.1.0a1-cp38-cp38-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "031ca077aa98e01562368190715726809d7f126863ce7f76849f59f1c468a604",
"md5": "4cacda578997b23aa8937706a706c5d1",
"sha256": "937960a1a7521e0b9d88c347dfd5dbfcf24f069a7281e2330a8d10f8d5cf0387"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4cacda578997b23aa8937706a706c5d1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.7",
"size": 85356320,
"upload_time": "2024-12-12T16:55:10",
"upload_time_iso_8601": "2024-12-12T16:55:10.597572Z",
"url": "https://files.pythonhosted.org/packages/03/1c/a077aa98e01562368190715726809d7f126863ce7f76849f59f1c468a604/pyncbitk-0.1.0a1-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff13c9c152bca29cd3ba32b2b90a7b0692f90957446aea68443968687879853b",
"md5": "c33a0c0a79a1269f344caf4b95435302",
"sha256": "4de770ecc919e4335bb549e418cafc6acf397a8b9180bdf47728c379240fdc57"
},
"downloads": -1,
"filename": "pyncbitk-0.1.0a1.tar.gz",
"has_sig": false,
"md5_digest": "c33a0c0a79a1269f344caf4b95435302",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 110051,
"upload_time": "2024-12-12T16:55:18",
"upload_time_iso_8601": "2024-12-12T16:55:18.933863Z",
"url": "https://files.pythonhosted.org/packages/ff/13/c9c152bca29cd3ba32b2b90a7b0692f90957446aea68443968687879853b/pyncbitk-0.1.0a1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-12 16:55:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "althonos",
"github_project": "pyncbitk",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pyncbitk"
}