Skip to main content

Freely available tools for computational molecular biology.

Project description

Biopython on the Python Package Index (PyPI) Biopython on the Conda package conda-forge channel pre-commit.ci status Linux testing with CircleCI Windows testing with AppVeyor GitHub workflow status Test coverage on CodeCov Research software impact on Depsy The Biopython Project

Biopython README file

The Biopython Project is an international association of developers of freely available Python tools for computational molecular biology.

Our user-centric documentation is hosted on https://biopython.org including our API Documentation and the main Biopython Tutorial and Cookbook (PDF).

This README file is intended primarily for people interested in working with the Biopython source code, either one of the releases from the http://biopython.org website, or from our repository on GitHub https://github.com/biopython/biopython

The NEWS file summarises the changes in each release of Biopython.

The Biopython package is open source software made available under generous terms. Please see the LICENSE file for further details.

If you use Biopython in work contributing to a scientific publication, we ask that you cite our application note (below) or one of the module specific publications (listed on our website):

Cock, P.J.A. et al. Biopython: freely available Python tools for computational molecular biology and bioinformatics. Bioinformatics 2009 Jun 1; 25(11) 1422-3 https://doi.org/10.1093/bioinformatics/btp163 pmid:19304878

For the impatient

Python includes the package management system “pip” which should allow you to install Biopython (and its dependency NumPy if needed), upgrade or uninstall with just one terminal command:

pip install biopython
pip install --upgrade biopython
pip uninstall biopython

Since Biopython 1.70 we have provided pre-compiled binary wheel packages on PyPI for Linux, macOS and Windows. This means pip install should be quick, and not require a compiler.

As a developer or potential contributor, you may wish to download, build and install Biopython yourself. This is described below.

Python Requirements

We currently recommend using Python 3.11 from http://www.python.org

Biopython is currently supported and tested on the following Python implementations:

Optional Dependencies

Biopython requires NumPy (see http://www.numpy.org) which will be installed automatically if you install Biopython with pip (see below for compiling Biopython yourself).

Depending on which parts of Biopython you plan to use, there are a number of other optional Python dependencies, which can be installed later if needed:

In addition there are a number of useful third party tools you may wish to install such as standalone NCBI BLAST, EMBOSS or ClustalW.

Installation From Source

We recommend using the pre-compiled binary wheels available on PyPI using:

pip install biopython

However, if you need to compile Biopython yourself, the following are required at compile time:

  • Python including development header files like python.h, which on Linux are often not installed by default (trying looking for and installing a package named python-dev or python-devel as well as the python package).

  • Appropriate C compiler for your version of Python, for example GCC on Linux, MSVC on Windows. For Mac OS X, or as it is now branded, macOS, use Apple’s command line tools, which can be installed with the terminal command:

    xcode-select --install

    This will offer to install Apple’s XCode development suite - you can, but it is not needed and takes a lot of disk space.

Then either download and decompress our source code, or fetch it using git. Now change directory to the Biopython source code folder and run:

pip install -e .
python setup.py test
sudo python setup.py install

Substitute python with your specific version if required, for example python3, or pypy3.

To exclude tests that require an internet connection (and which may take a long time), use the --offline option:

python setup.py test --offline

If you need to do additional configuration, e.g. changing the install directory prefix, please type python setup.py.

Testing

Biopython includes a suite of regression tests to check if everything is running correctly. To run the tests, go to the biopython source code directory and type:

pip install -e .
python setup.py test

If you want to skip the online tests (which is recommended when doing repeated testing), use:

python setup.py test --offline

Do not panic if you see messages warning of skipped tests:

test_DocSQL ... skipping. Install MySQLdb if you want to use Bio.DocSQL.

This most likely means that a package is not installed. You can ignore this if it occurs in the tests for a module that you were not planning on using. If you did want to use that module, please install the required dependency and re-run the tests.

Some of the tests may fail due to network issues, this is often down to chance or a service outage. If the problem does not go away on re-running the tests, you can use the --offline option.

There is more testing information in the Biopython Tutorial & Cookbook.

Experimental code

Biopython 1.61 introduced a new warning, Bio.BiopythonExperimentalWarning, which is used to mark any experimental code included in the otherwise stable Biopython releases. Such ‘beta’ level code is ready for wider testing, but still likely to change, and should only be tried by early adopters in order to give feedback via the biopython-dev mailing list.

We’d expect such experimental code to reach stable status within one or two releases, at which point our normal policies about trying to preserve backwards compatibility would apply.

Bugs

While we try to ship a robust package, bugs inevitably pop up. If you are having problems that might be caused by a bug in Biopython, it is possible that it has already been identified. Update to the latest release if you are not using it already, and retry. If the problem persists, please search our bug database and our mailing lists to see if it has already been reported (and hopefully fixed), and if not please do report the bug. We can’t fix problems we don’t know about ;)

Issue tracker: https://github.com/biopython/biopython/issues

If you suspect the problem lies within a parser, it is likely that the data format has changed and broken the parsing code. (The text BLAST and GenBank formats seem to be particularly fragile.) Thus, the parsing code in Biopython is sometimes updated faster than we can build Biopython releases. You can get the most recent parser by pulling the relevant files (e.g. the ones in Bio.SeqIO or Bio.Blast) from our git repository. However, be careful when doing this, because the code in github is not as well-tested as released code, and may contain new dependencies.

In any bug report, please let us know:

  1. Which operating system and hardware (32 bit or 64 bit) you are using

  2. Python version

  3. Biopython version (or git commit/date)

  4. Traceback that occurs (the full error message)

And also ideally:

  1. Example code that breaks

  2. A data file that causes the problem

Contributing, Bug Reports

Biopython is run by volunteers from all over the world, with many types of backgrounds. We are always looking for people interested in helping with code development, web-site management, documentation writing, technical administration, and whatever else comes up.

If you wish to contribute, please first read CONTRIBUTING.rst here, visit our web site http://biopython.org and join our mailing list: http://biopython.org/wiki/Mailing_lists

Distribution Structure

  • README.rst – This file.

  • NEWS.rst – Release notes and news.

  • LICENSE.rst – What you can do with the code.

  • CONTRIB.rst – An (incomplete) list of people who helped Biopython in one way or another.

  • CONTRIBUTING.rst – An overview about how to contribute to Biopython.

  • DEPRECATED.rst – Contains information about modules in Biopython that were removed or no longer recommended for use, and how to update code that uses those modules.

  • MANIFEST.in – Configures which files to include in releases.

  • setup.py – Installation file.

  • Bio/ – The main code base code.

  • BioSQL/ – Code for using Biopython with BioSQL databases.

  • Doc/ – Documentation.

  • Scripts/ – Miscellaneous, possibly useful, standalone scripts.

  • Tests/ – Regression testing code including sample data files.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

biopython-1.82.tar.gz (19.4 MB view details)

Uploaded Source

Built Distributions

biopython-1.82-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12 Windows x86-64

biopython-1.82-cp312-cp312-win32.whl (2.7 MB view details)

Uploaded CPython 3.12 Windows x86

biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

biopython-1.82-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

biopython-1.82-cp311-cp311-win32.whl (2.7 MB view details)

Uploaded CPython 3.11 Windows x86

biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

biopython-1.82-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

biopython-1.82-cp310-cp310-win32.whl (2.7 MB view details)

Uploaded CPython 3.10 Windows x86

biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

biopython-1.82-cp39-cp39-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

biopython-1.82-cp39-cp39-win32.whl (2.7 MB view details)

Uploaded CPython 3.9 Windows x86

biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

biopython-1.82-cp38-cp38-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

biopython-1.82-cp38-cp38-win32.whl (2.7 MB view details)

Uploaded CPython 3.8 Windows x86

biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file biopython-1.82.tar.gz.

File metadata

  • Download URL: biopython-1.82.tar.gz
  • Upload date:
  • Size: 19.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82.tar.gz
Algorithm Hash digest
SHA256 a9b10d959ae88a9744a91c6ce3601f4c86e7ec41679bc93c29f679218f6167bb
MD5 f0900044ae4c97008992c4a36c66f8e2
BLAKE2b-256 237d55b8dc4a01bc951b3f6d60acd4eb4617aa22cc5a0d27037972f02e5d3844

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: biopython-1.82-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 762547037038d42c9ac98877fc32d4aeba798077129df7790cb178256171a4e5
MD5 30a5171022f7afe00e999e147e82161b
BLAKE2b-256 b6fa178d8b7788cd3441edac708168fbf34308eeccd441599f11ae106cdf7aff

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp312-cp312-win32.whl.

File metadata

  • Download URL: biopython-1.82-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 54a9b200d4960ed2a4ec85faac2124ffa278afa58d22e07e2d15ca7509219ea1
MD5 886b20aa3123ed21d1746cd3b6c25f6a
BLAKE2b-256 aa2c6a38636d8cf2514ad87d7a85e3d6839918e37c3f87071f2e87d95f9e15ab

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49b829c2276a0711106663af632c7e203695a5cf082d488d6e10b8aca5ec63e4
MD5 3869b9f3edf4f9719fa6938784778ba9
BLAKE2b-256 cb0607f5593ce919dbedef663bf0c158b7076110ff66ac5a43696db6f839eb4e

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96f77bd6540683c8958e4ebf55b58e8caa26d20db72891915d06670b783e9cdb
MD5 1f67c9df8ee17c1af7d1afc53af4fb8c
BLAKE2b-256 4967cc333a7753917edd9430d914b80062faf05a77aec1b4b1a141f474e15bf5

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: biopython-1.82-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40297d418bb142a7ea1a47faedc24bbe21b0ba455f3805373264470e5cb6ec5c
MD5 2be8f44b2956e0c7a063a5621f3e6330
BLAKE2b-256 bdc1188a08a15c3cd7fa1c788f473cba2ae0d6a53b0ada5e847a6dfad9dbc29a

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp311-cp311-win32.whl.

File metadata

  • Download URL: biopython-1.82-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ec35893b32458f6fa0c98d5f02d801a5fe76961ac66473455f51c0575562c594
MD5 32b017abcb740e07aff09675e228ef4d
BLAKE2b-256 3661629f9cec5952bd10eae92fda4ffea6cf75a8ac078492b65027dc53602ce9

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7802b5033edaf34bd2fbd96b87f96999a6808caa0064c91087c7f1340624898
MD5 e2f292eb329f5d067a9d86bab40fe09f
BLAKE2b-256 f343eb145b22b99ef2ed1cdf5a1a41423017962ff34adc74ec93fe4155272b7b

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9bc080b7dc6cd6acbf2576766136e8e54acbcc6b7a29ad8075cb5a73f4cfb97
MD5 7c691a79895a5e9c6b95bb9f778bc9c3
BLAKE2b-256 a9f983eb07c14e77d19a27def66f58a3d99b1b580814260b45107a81620876b1

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: biopython-1.82-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0f3f685a2d85348b8c84c6eebe58a74cef7e1158ac52ae5aa91789436907f0e1
MD5 1bae03eda37a045f8fc1bb4be27ed7ac
BLAKE2b-256 d7b961f05c0935cf41faad9ee6b49a73ef8e9df831f33bafd96defb5bb2d487a

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp310-cp310-win32.whl.

File metadata

  • Download URL: biopython-1.82-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f53aff30f01ac9a8aa1fd42dab347a96ee5312945098dfa38f9a5125f6e913fd
MD5 38b629efd48c4ca7619ba9b305dad698
BLAKE2b-256 dc1ccb28f064b3def590d09f34e75af9315b73aa562c157abb19aa5e2a6b7853

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bc908e84278bf61ac901a0c1b695c85ce49491957e0ab07e1e2afc216882525
MD5 abe16fb7de1dcc31db2e5bab15bf9b7b
BLAKE2b-256 70eea9403105d0a007c783e0cf7eccc2fd3f69b0a7166e0f116874c2eba56d52

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 713be5e1e8571ea151864544dfcd2637eaf98c67a6e47b69781d325feb02f6b9
MD5 cb9f9c3ad4929cb91da36bcef6551937
BLAKE2b-256 e70555501bf2052caf26039d50ad1678b82d7e08260925298f34f8c4cc24967a

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: biopython-1.82-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 73d619611bd7cf9d2ad8b3217b08d3796acfabb765b0771ad2ff7ee2e46a59b0
MD5 3166c4ec614885bc43429850afda5451
BLAKE2b-256 227f461f14cb0a66b272b82a8683b4448161832323133186384b69644cd418fa

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp39-cp39-win32.whl.

File metadata

  • Download URL: biopython-1.82-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 80f48d220b92e747300281602f52e98ec6c537ddd4921b580d9a0368bae05ff5
MD5 62c42cd250972b1add6a3b6100541914
BLAKE2b-256 4136c9820ca03e9a4aaa05caefa5f92162ff733b8a918ed03649fe7c6d8c54dd

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e2533db9275c3e1438151260844e7683f91308da320df02a4c28fb7053ea3a9
MD5 fe6f6e3f941be714ae7f8fdb86fe9fc4
BLAKE2b-256 fb6b4f3c5e877e5ac4b4c4cf409e3afd47c4a1533e8807299b6a240ba8baea4d

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c88e9f87d1b07958e7e1e25ff20efced4796daf650e5290692b5c3ff9aebf9d3
MD5 e0aff6a47d8eea9fa229fb5fdf3d1ba1
BLAKE2b-256 ebbf9dd7753fb10197eb524ec13977c97889edc96c91d6814486d1156b242542

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: biopython-1.82-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0198f23776d9cb9d514a797e81a024f486adac973b252a2f4696995a5a163745
MD5 2330da915eb35444bf24ecb98ec65e27
BLAKE2b-256 fbae26ecc9eb04de7231891e81c08fc1111fac4cd305f34d9162b71e5f4bdde4

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp38-cp38-win32.whl.

File metadata

  • Download URL: biopython-1.82-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for biopython-1.82-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a1ff583b2f8b314a4c2d612aad4f4b73827a5f741b391f3a834b0c192a4f1527
MD5 8fb4ecebc37fa2ae3ddfea5ddadc9dc2
BLAKE2b-256 9f4473fa9d1fa22711944ecd489f111f534ec52998ed7537ca022e0ff35e7c40

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16829760fab60ba17141b7a81494fed837c6f29ea28cdcfb3070764c8e8f2ff1
MD5 f9921cdf92a9cfc5cf4decf8267b9897
BLAKE2b-256 017206a3777cdd96ee53858aa63d4223f185af526e61fb917ba7beedf7896e0c

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6af82894dd4f736d737fdea62008a19966251ba39aef39a0ce8b41321305ad5
MD5 dbf1904d8cfba5da3a4ff084bc685011
BLAKE2b-256 2926eb97963b1f80f1e6b1548d85e727f9a2ebb770bad4a890658aad702ae044

See more details on using hashes here.

File details

Details for the file biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb013256742d31e24fd5093d55511f58bc6a93b8ac723d2ca3b33c7904f1ca14
MD5 449a29b9686122c0ddabedce25e60e6f
BLAKE2b-256 4b7e2655436cd99db0e7ae9c71bc38be46f3f8cb532c71c0b830484a2a827c44

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