Skip to main content

Taxoniq: Taxon Information Query - fast, offline querying of NCBI Taxonomy and related data

Project description

Taxoniq: Taxon Information Query - fast, offline querying of NCBI Taxonomy and related data

Taxoniq is a Python and command-line interface to the NCBI Taxonomy database and selected data sources that cross-reference it.

Taxoniq's features include:

  • Pre-computed indexes updated monthly from NCBI, WoL and cross-referenced databases
  • Offline operation: all indexes are bundled with the package; no network calls are made when querying taxon information (separately, Taxoniq can fetch the nucleotide or protein sequences over the network given a taxon or accession - see Retrieving sequences below)
  • A CLI capable of JSON I/O, batch processing and streaming of inputs for ease of use and pipelining in shell scripts
  • A stable, well-documented, type-hinted Python API (Python 3.6 and higher is supported)
  • Comprehensive testing and continuous integration
  • An intuitive interface with useful defaults
  • Compactness, readability, and extensibility

The Taxoniq package bundles an indexed, compressed copy of the NCBI taxonomy database files, the NCBI RefSeq nucleotide and protein accessions associated with each taxon, the WoL kingdom-wide phylogenomic distance database, and relevant information from other databases. Accessions which appear in the NCBI RefSeq BLAST databases are indexed so that given a taxon ID, accession ID, or taxon name, you can quickly retrieve the taxon's rank, lineage, description, citations, representative RefSeq IDs, LCA information, evolutionary distance, sequence (with a network call), and more, as described in the Cookbook section below.

Installation

pip3 install taxoniq

Pre-built wheels are available for Python 3.5+ on Linux and MacOS. On MacOS 11 Big Sur, Pip 20.3+ is required to install pre-built wheels (you can check your version with pip3 --version and upgrade with pip3 install --upgrade pip).

Synopsis

>>> import taxoniq
>>> t = taxoniq.Taxon(9606)
>>> t.scientific_name
'Homo sapiens'
>>> t.common_name
'human'

>>> t.ranked_lineage
[taxoniq.Taxon(9606), taxoniq.Taxon(9605), taxoniq.Taxon(9604), taxoniq.Taxon(9443),
 taxoniq.Taxon(40674), taxoniq.Taxon(7711), taxoniq.Taxon(33208), taxoniq.Taxon(2759)]
>>> len(t.lineage)
32
>>> [(t.rank.name, t.scientific_name) for t in t.ranked_lineage]
[('species', 'Homo sapiens'), ('genus', 'Homo'), ('family', 'Hominidae'), ('order', 'Primates'),
 ('class', 'Mammalia'), ('phylum', 'Chordata'), ('kingdom', 'Metazoa'), ('superkingdom', 'Eukaryota')]
>>> [(c.rank.name, c.common_name) for c in t.child_nodes]
[('subspecies', 'Neandertal'), ('subspecies', 'Denisova hominin')]

>>> t.refseq_representative_genome_accessions[:10]
[taxoniq.Accession('NC_000001.11'), taxoniq.Accession('NC_000002.12'), taxoniq.Accession('NC_000003.12'),
 taxoniq.Accession('NC_000004.12'), taxoniq.Accession('NC_000005.10'), taxoniq.Accession('NC_000006.12'),
 taxoniq.Accession('NC_000007.14'), taxoniq.Accession('NC_000008.11'), taxoniq.Accession('NC_000009.12'),
 taxoniq.Accession('NC_000010.11')]

>>> t.url
'https://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id=9606'

# Wikidata provides structured links to many databases about taxa represented on Wikipedia
>>> t.wikidata_url
'https://www.wikidata.org/wiki/Q15978631'
>>> t2 = taxoniq.Taxon(scientific_name="Bacillus anthracis")
>>> t2.description
'<p class="mw-empty-elt"> </p> <p class="mw-empty-elt"> </p> <p><i><b>Bacillus anthracis</b></i>
 is the agent of anthrax—a common disease of livestock and, occasionally, of humans—and the only
 obligate pathogen within the genus <i>Bacillus</i>. This disease can be classified as a zoonosis,
 causing infected animals to transmit the disease to humans. <i>B. anthracis</i> is a Gram-positive,
 endospore-forming, rod-shaped bacterium, with a width of 1.0–1.2 µm and a length of 3–5&#160;µm.
 It can be grown in an ordinary nutrient medium under aerobic or anaerobic conditions.</p>
 <p>It is one of few bacteria known to synthesize a protein capsule (poly-D-gamma-glutamic acid).
 Like <i>Bordetella pertussis</i>, it forms a calmodulin-dependent adenylate cyclase exotoxin known
 as anthrax edema factor, along with anthrax lethal factor. It bears close genotypic and phenotypic
 resemblance to <i>Bacillus cereus</i> and <i>Bacillus thuringiensis</i>. All three species share
 cellular dimensions and morphology</p>...'
>>> t3 = taxoniq.Taxon(accession_id="NC_000913.3")
>>> t3.scientific_name
'Escherichia coli str. K-12 substr. MG1655"'
>>> t3.parent.parent.common_name
'E. coli'
>>> t3.refseq_representative_genome_accessions[0].length
4641652

# The get_from_s3() method is the only command that will trigger a network call.
>>> seq = t3.refseq_representative_genome_accessions[0].get_from_s3().read()
>>> len(seq)
4641652
>>> seq[:64]
b'AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGAT'

Retrieving sequences

Mirrors of the NCBI BLAST databases are maintained on AWS S3 (s3://ncbi-blast-databases) and Google Storage (gs://blast-db). This is a key resource, since S3 and GS have superior bandwidth and throughput compared to the NCBI FTP server, so range requests can be used to retrieve individual sequences from the database files without downloading and keeping a copy of the whole database.

The Taxoniq PyPI distribution (the package you install using pip3 install taxoniq) indexes accessions for the following NCBI BLAST databases:

  • Refseq viruses representative genomes (ref_viruses_rep_genomes) (nucleotide)
  • Refseq prokaryote representative genomes (contains refseq assembly) (ref_prok_rep_genomes) (nucleotide)
  • RefSeq Eukaryotic Representative Genome Database (ref_euk_rep_genomes) (nucleotide)
  • Betacoronavirus (nucleotide)

Given an accession ID, Taxoniq can issue a single HTTP request and return a file-like object streaming the nucleotide sequence for this accession from the S3 or GS mirror as follows:

with taxoniq.Accession("NC_000913.3").get_from_s3() as fh:
     fh.read()

To retrieve many sequences quickly, you may want to use a threadpool to open multiple network connections at once:

from concurrent.futures import ThreadPoolExecutor
def fetch_seq(accession):
    seq = accession.get_from_s3().read()
    return (accession, seq)

taxon = taxoniq.Taxon(scientific_name="Apis mellifera")
for accession, seq in ThreadPoolExecutor().map(fetch_seq, taxon.refseq_representative_genome_accessions):
    print(accession, len(seq))

Command-line interface

pip3 install taxoniq installs a command-line utility, taxoniq, which can be used to perform many of the same functions provided by the Python API:

>taxoniq child_nodes --taxon-id 2 --output-format '{tax_id}: {scientific_name}'
[
    "1224: Proteobacteria",
    "2323: Bacteria incertae sedis",
    "32066: Fusobacteria",
    "40117: Nitrospirae",
    "48479: environmental samples",
    "49928: unclassified Bacteria",
    "57723: Acidobacteria",
    "68297: Dictyoglomi",
    "74152: Elusimicrobia",
    "200783: Aquificae",
    "200918: Thermotogae",
    "200930: Deferribacteres",
    "200938: Chrysiogenetes",
    "200940: Thermodesulfobacteria",
    "203691: Spirochaetes",
    "508458: Synergistetes",
    "1783257: PVC group",
    "1783270: FCB group",
    "1783272: Terrabacteria group",
    "1802340: Nitrospinae/Tectomicrobia group",
    "1930617: Calditrichaeota",
    "2138240: Coprothermobacterota",
    "2498710: Caldiserica/Cryosericota group",
    "2698788: Candidatus Krumholzibacteriota",
    "2716431: Coleospermum",
    "2780997: Vogosella"
]

See taxoniq --help for full details.

Using the nr/nt databases

Because of their size, taxoniq wheels with indexes of the NT (GenBank Non-redundant nucleotide) BLAST database are distributed on GitHub instead of PyPI. After running pip3 install taxoniq, you can install the NT indexes as follows:

The NT index packages also contain indexes for the RefSeq representative genomes and Betacoronavirus accessions (meaning they are are superset of the PyPI packages).

Cookbook

In progress

Links

License

Taxoniq software is licensed under the terms of the MIT License.

Distributions of this package contain data from the National Center for Biotechnology Information released into the public domain under the NCBI Public Domain Notice.

Distributions of this package contain text excerpts from Wikipedia licensed under the terms of the CC-BY-SA License.

Bugs

Please report bugs, issues, feature requests, etc. on GitHub.

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

taxoniq-0.3.0.tar.gz (279.7 kB view details)

Uploaded Source

Built Distributions

taxoniq-0.3.0-cp39-cp39-manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9

taxoniq-0.3.0-cp39-cp39-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.9

taxoniq-0.3.0-cp39-cp39-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9

taxoniq-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (200.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

taxoniq-0.3.0-cp38-cp38-manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8

taxoniq-0.3.0-cp38-cp38-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.8

taxoniq-0.3.0-cp38-cp38-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8

taxoniq-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (199.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

taxoniq-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m

taxoniq-0.3.0-cp37-cp37m-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m

taxoniq-0.3.0-cp37-cp37m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7m

taxoniq-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (196.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

taxoniq-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m

taxoniq-0.3.0-cp36-cp36m-manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m

taxoniq-0.3.0-cp36-cp36m-manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.6m

taxoniq-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (196.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

taxoniq-0.3.0-cp35-cp35m-manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.5m

taxoniq-0.3.0-cp35-cp35m-manylinux2014_i686.whl (1.2 MB view details)

Uploaded CPython 3.5m

taxoniq-0.3.0-cp35-cp35m-manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.5m

taxoniq-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl (192.0 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

File details

Details for the file taxoniq-0.3.0.tar.gz.

File metadata

  • Download URL: taxoniq-0.3.0.tar.gz
  • Upload date:
  • Size: 279.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b4108dadf5299a3226919ba861d8d89d49c64826a33772924dd43350ebf32635
MD5 baa1115429a276d91a3aa1e20f41a11f
BLAKE2b-256 e45aa604a736c0aaebfd3cfe057a4212b3fbbb4d44fb5d6ec39035913c29d409

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 310595080582861d0dce0526ad2435c613ca3a6bd44e25fdeba790dcfdba9276
MD5 174d93263b8a654aa7ff3017120c3d69
BLAKE2b-256 6f553d01779b24ca74f246cee19a5e2d12bcbca57a389625f9fc7d8c7289e52a

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp39-cp39-manylinux2014_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp39-cp39-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 406f3e27811eb5c376e633484bd3148c76e25712219b0f47cd380b14fe3ae4cd
MD5 0bfd745abb5b2c3de773a3a50d63cf1b
BLAKE2b-256 c1b0fed898d40414a2cecd059449a474e701294b5e1094e2bcc6dd89bebb8abc

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 73a1d43c2227bc071f86f8fdb81e66fcb06bfccc8000ca2174fc2cef9aa307cd
MD5 ad093e78168466f817ce38d07599568e
BLAKE2b-256 7841e1389a7467302143c771e1eb724094f1ef4d3d063a1a383d627d5e40d7da

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 200.6 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2cea900c5b3cfbca50fe3332ffcb5d62e80b68b9ce20df832483b3f2a12f4d65
MD5 d304a0cde0129ea2f971a39343225ad3
BLAKE2b-256 5944fa2aa7b02cd6f9f10612cec4e15505c12d61c731b23f1ee0356fab1499e2

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2617b7fda8b830f9626763c89cf5df162b39743747c8ea8097a50b358be7208f
MD5 f35c83a00c1f4857d112882bb499317f
BLAKE2b-256 3cc8f4f4d780d1ac12c80e1415dc4f4c7d8b476b7dff36107d9860cfac7eb119

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp38-cp38-manylinux2014_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp38-cp38-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee0a8852bce46105058bb13c807963dc86589e14923095da358dd422b9e98d07
MD5 5ffbd0dcef637f6920a4324a19dfbf7a
BLAKE2b-256 621691b089dfbc8b2de94b5e53aee6977811d1c909570d20ede36d33302e5a7e

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6479fcc59b9080ec28a8ae1adf36bacfa15f07cf8f2c4f15b951462848d5fc7b
MD5 b7d7875726207a17eda7230380d6f5a7
BLAKE2b-256 15f4293fae4f56c9ab4f79d0e293b0bb052648e59e079cec8526de39d09381de

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 199.1 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 192b386125729f4b16d54deb8ef024188e03b050c81224f976eabc6173592316
MD5 7ed8076ad00146d96305174db7326925
BLAKE2b-256 483f6de766bbe54298f935333f3207194ffb7486756ec0ce88345ec9b9674da5

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 004c55d7452ee9a03828d5f0e15454eb3d1cae4c9809bd82ad6fefc145015a0c
MD5 0c91bd27449d2d55b774925dce2c0318
BLAKE2b-256 8cb38ab687f342b87f6fabdefe38546b076f5366453b1679214c45a1d7a3816c

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp37-cp37m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5220af15f36927c31bc490fff022ab1d3e1356c921e594875b74c013844cfc87
MD5 30ba62ae9fd9e1fc15ac67e06c162557
BLAKE2b-256 7685cf48d5e07acc14bcdf5b081ff66921a095dfae23bf0792c30d4964dfe86a

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d38653ce76e300aa73653c20383ce44fa3f8b925067f255804f9c8319c457c5
MD5 b3f693c74bba7987341cfd5b87bf57eb
BLAKE2b-256 c865c9375bc834099a88ef30fe85e495053952e53c96ed1d69429582580f391d

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 196.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bae55d183871352a240519942785b88537293cf6f9286c12aa447539bce26652
MD5 03735d8f0afbf97c34f55cf796b4ed9f
BLAKE2b-256 2d26cc7d4c6cbc1c389321c49e804fd94ffc6325a5cb1c3f85c081458027ade2

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184c13d73d33f3a19d963f190503d02af2d38703e396fbc71348570ba22958e4
MD5 c300208ee084bfb9aa48acedbcbf77ad
BLAKE2b-256 4655957e754ea9569f7a12354634c6b5ad4dc6453aa4351169a806772786ff47

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp36-cp36m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 871dad14705db350aed1a6beba8bc2e106103219a170bbe3e3c79f7f70c97df1
MD5 0731c5c8ef64ea29089eacf1ad445de6
BLAKE2b-256 f1b43d72accf452632e2c5121d61b512871949ca55bfb32aeb0b1fc917d7158d

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 49a50cb0a6a58959e14fa49bf67e37aa60361a322209fa0b6a8c45df83037234
MD5 f19fe68b780c9c9266ec1b60e23903e6
BLAKE2b-256 9640b9932a59a0cb067c0d6057e99919562e874e11eb7bac4f2208a88c9274b2

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 196.6 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f247d7d681eef41d995db324344d94cdf6fda1618616ed7fa5109d6f8e0cdf4b
MD5 20641c11c607f1c12244298ba857505a
BLAKE2b-256 45d7eeb0ced80e9e51beb73ac8d5d8678bbf19801803486e8109b987b2d68de8

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd77ba3dbc1499db9bd827468ca7d1e3d05fe4a8c0f96f15c02404be334fef99
MD5 4641661a4811e333fa62e6af7385fd18
BLAKE2b-256 8f075ff2e47b379e55b41436d9a0569a2ed9441967a6a51e5e20c3470969e099

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp35-cp35m-manylinux2014_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp35-cp35m-manylinux2014_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fef282874f9dc1ea86e59cb08950b673c465a4b2b570785bb089dbafa872947b
MD5 e0bc57342a99ec67aec45de65f14f63d
BLAKE2b-256 f3d81f2ec74614c22e22efef0e67c63f3f94daddd9e6e55e73e0bd4359e08be2

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a9357b7eda2d23dec055c8ae8cad6dc9ed9ed64ffa0a406adacbb8fc33ea9502
MD5 6b771ccfa0dce7f281e226208c2c3731
BLAKE2b-256 0880f426c54f109d7d41240ebed5327ff3cceb73e99debb7d0b2d6bceac2b979

See more details on using hashes here.

File details

Details for the file taxoniq-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: taxoniq-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 192.0 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.56.2 CPython/3.8.5

File hashes

Hashes for taxoniq-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 461c4de4cf60963ebf02ef4c5c05221969f255117cbe411e53df2bacee7b40b1
MD5 33602d80db5db667db84e7afec651598
BLAKE2b-256 ac5cf4618a85f4fc69af4efcec1f6a39687bd7adc3af6edba31de0f6f9bb0724

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