Skip to main content

A Python interface to gb-io, a fast GenBank parser written in Rust.

Project description

🧬🏦 gb-io.py Stars

A Python interface to gb-io, a fast GenBank parser written in Rust.

Actions Coverage License PyPI Wheel Python Versions Python Implementations Source Mirror GitHub issues

🗺️ Overview

gb-io.py is a Python package that provides an interface to gb-io, a very fast GenBank format parser implemented in Rust. It can reach much higher speed than the Biopython or the scikit-bio parsers.

This library has no external dependency and is available for all modern Python versions (3.7+).

🔧 Installing

Install the gb-io package directly from PyPi which hosts pre-compiled wheels that can be installed with pip:

$ pip install gb-io

Wheels are provided for the following platforms:

  • Linux, CPython, x86-64
  • Linux, PyPy, x86-64
  • Linux, CPython, Aarch64
  • MacOS, CPython, x86-64
  • MacOS, PyPy, x86-64

Otherwise, the source distribution will be downloaded, and a local copy of the Rust compiler will be downloaded to build the package, unless it is already installed on the host machine.

💡 Usage

Use the gb_io.load function to obtain a list of all GenBank records in a file:

records = gb_io.load("tests/data/AY048670.1.gb")

Reading from a file-like object is supported as well, both in text and binary mode:

with open("tests/data/AY048670.1.gb") as file:
    records = gb_io.load(file)

It is also possible to iterate over each record in the file without having to load the entirety of the file contents to memory with the gb_io.iter method, which returns an iterator instead of a list:

for record in gb_io.iter("tests/data/AY048670.1.gb"):
    print(record.name, record.sequence[:10])

📝 Example

The following small script will extract all the CDS features from a GenBank file, and write them in FASTA format to an output file:

import gb_io

with open("tests/data/AY048670.1.faa", "w") as dst:
    for record in gb_io.iter("tests/data/AY048670.1.gb"):
        for feature in filter(lambda feat: feat.type == "CDS", record.features):
            qualifiers = feature.qualifiers.to_dict()
            dst.write(">{}\n".format(qualifiers["locus_tag"][0]))
            dst.write("{}\n".format(qualifiers["translation"][0]))

Compared to similar implementations using Bio.SeqIO.parse, Bio.GenBank.parse and Bio.GenBank.Scanner.GenBankScanner.parse_cds_features, the performance is the following:

gb_io.iter GenBankScanner GenBank.parse SeqIO.parse
Time (s) 2.264 7.982 15.259 19.351
Speed (MiB/s) 136.5 37.1 20.5 16.2
Speedup x8.55 x2.42 x1.27 -

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker 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 for more details.

⚖️ License

This library is provided under the MIT License. The gb-io Rust crate package was written by David Leslie and is licensed under the terms of the MIT License. This package vendors the source of several additional packages that are licensed under the Apache-2.0, MIT or BSD-3-Clause licenses; see the license file distributed with the source copy of each vendored dependency for more information.

This project is in no way not affiliated, sponsored, or otherwise endorsed by the original gb-io authors. It was developed by Martin Larralde during his PhD project at the European Molecular Biology Laboratory in the Zeller team.

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

gb-io-0.1.0.tar.gz (11.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gb_io-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (312.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

gb_io-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (312.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

gb_io-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (312.1 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

gb_io-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gb_io-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

gb_io-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl (312.2 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

gb_io-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

gb_io-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

gb_io-0.1.0-cp39-cp39-macosx_10_15_x86_64.whl (312.3 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

gb_io-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

gb_io-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

gb_io-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

gb_io-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

gb_io-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.5 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

gb_io-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

File details

Details for the file gb-io-0.1.0.tar.gz.

File metadata

  • Download URL: gb-io-0.1.0.tar.gz
  • Upload date:
  • Size: 11.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb-io-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1729fb44da2641102daef116b8a1cea2460af2af2c7fd9ddcbd815ae1fb595b1
MD5 8cf5d37ebca363cc99e937a133f1452a
BLAKE2b-256 324936c8f7d17dced16ffe4de00c3d39d14aaf1a90fcee41ca1cb8032223d3cf

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 312.5 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b058bedad1f3a3298c9839d029c5f1871e717c0ce11dde9538782ae3f33f251
MD5 10e0c3c968242585e618e084b57f6bd2
BLAKE2b-256 e78dde7bfacdc8a05255b8d3c557837f9d4953657c6c9f15a3aa5bd514339625

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 312.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 89accfcbc2d64681cdc9eba23974e62cc9bf70f0e7017244181ad2bfd4ad46d1
MD5 7b31839b0f637a1499c881f3b6f48501
BLAKE2b-256 da1116a5fd2bc6618a46307ad334b8a0e8ab2f4d63b59b3d03b775f343f69300

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 312.1 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f79a9e242a970f99a8af6941c8f58ab59f14651bd73c53da8f240c1e47f395c
MD5 288da09b4a1a89d649c2cc09dbc15808
BLAKE2b-256 9f7fec1c2ee97c529b54f3e0f0d85347ac72454eb41fd3717ef2fcca2db8d039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gb_io-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 348.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f847fac6a8b56d35fc1076e01703f4fd6362ce35d5827f77891d76feaa1847a8
MD5 9282dd3a137bd006d8a2f3a5d35504d1
BLAKE2b-256 c89a93f099d33413a80f51b82a71108521517d52fa133d7637edd7e67aec1b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gb_io-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 344.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68b7b635f7dd4e3de6a6f956c60032beb0004c0ca788bfbe13db3bf3e229455c
MD5 6e74e687205c2690e8391fb4dc623346
BLAKE2b-256 7d7d964ea88c7014f76474225aef376d7411cdb0892c2d29cd9be99ce4fa94d6

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 312.2 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c9af5b679e15c3cd4fbbdfb7e09ec3ba66c841acd0e2826e8a550244772f259
MD5 b9d403b15624c7c214e6f2db4f195634
BLAKE2b-256 86142cc416fbf6b822f7a829eed08ee9224d80636b4a38f0d69f11d716c60a77

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 348.8 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e46b85bdd46ad80a06aa4a1d006c39245483a6e3bd824ef58bd4d087f8c483ce
MD5 596cf355252c038643d7642d0807be7b
BLAKE2b-256 35677dcf54ad58d878b795434235b2ad49485ddd0f92d71bfec6db1672d36db8

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 344.7 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f4fc3379101c80aabf41980a834c8f86684b7e2a1dd4f895e9ec1eef361922d
MD5 b0fe516c6597a56ec534f863d7be634b
BLAKE2b-256 415ee55433116bd12437366311889c3a1baac274ed872a8d8dde0e3501226dfb

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 312.3 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0d28a064c1274e18d07b44c0b0bb9b407f1c33c16818d8a9d49e343e701380fb
MD5 a988606a1d5f7f012b0d58e9efce7667
BLAKE2b-256 37a7bb4d92d82cd0db8874615f6c2291753c401e086ce87cf769cd8efa85f6d0

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 348.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdf134fe463681716d84447980cfb7255b978b87665655c4c9e2732d80a2ef4b
MD5 f48f4e3ae988fc7f5f4d7e5ccc8fb615
BLAKE2b-256 d27dc142c448ace6ccee1ed96006ddb7fc4aadfec15ba00652db06f3792b7449

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 344.6 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5dbc98afe75e841343bff9cdb845bdeaeef186652adaec0ee0c7084ba927870
MD5 396028a2f7ba5474d715e8fb9bdfc8bf
BLAKE2b-256 1b2c5dc24834c477a0bfbd11ebc5e76b86998c509333a072906808d763ebdf62

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 311.8 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7d7444f447e5aa3620eee99f01a52fab93bad7abc8bcdf672597e8f7c2380ffb
MD5 83cb5c61b76fef1f7c98bba2cbfda7a4
BLAKE2b-256 16b12aa55df72f3c40f5125287dfba3c28b1c15a19256a8c9d5d988d48d75ff9

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 348.2 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 749ca6a0dc3ef2c5ffead166e613cc5fb0e4304762f1c11182b5443cddbb4edf
MD5 abf9733c67ca3c8cfec89c3be3fa854e
BLAKE2b-256 28b32db5950cc028744869bb1b2eef01a8ff93093410318165c2b53123278028

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 344.5 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ea80d1eb1352b2b338723ed6c8e6c1ae82b11806220dadcbb8e00bbf0ff34ad
MD5 4ef8984956a24644c2e95e6bcfc258f6
BLAKE2b-256 17530af1b54590d986723c610462e68ae0a2173789e2bbd4eebeb5a352b9ca03

See more details on using hashes here.

File details

Details for the file gb_io-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: gb_io-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 311.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for gb_io-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6891f0ad8a632b847a1e972720b0426eec57bf18e61f07d48fa79c5ffcdb3307
MD5 5058dc849f826b83979037fc4d73e509
BLAKE2b-256 a21de35398a49253389a507de81d48ecb71cf8c51e6f83f1f54a47aace7c9499

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page