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 Linux testing with TravisCI Linux testing with CircleCI Windows testing with AppVeyor TravisCI test coverage 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 http://biopython.org including the main Biopython Tutorial and Cookbook:

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 3.6 onwards, include 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, Mac OS X 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.9 from http://www.python.org

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

Biopython 1.68 was our final release to support Python 2.6, while Biopython 1.76 was our final release to support Python 2.7 and Python 3.5.

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 pacakge).

  • 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:

python setup.py build
python setup.py test
sudo python setup.py install

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

To exlude 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:

python setup.py build
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.

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

biopython-1.79.tar.gz (16.7 MB view details)

Uploaded Source

Built Distributions

biopython-1.79-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11 Windows x86-64

biopython-1.79-cp311-cp311-win32.whl (2.3 MB view details)

Uploaded CPython 3.11 Windows x86

biopython-1.79-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

biopython-1.79-cp311-cp311-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

biopython-1.79-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10 Windows x86-64

biopython-1.79-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10 Windows x86

biopython-1.79-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

biopython-1.79-cp310-cp310-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

biopython-1.79-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9 Windows x86-64

biopython-1.79-cp39-cp39-win32.whl (2.3 MB view details)

Uploaded CPython 3.9 Windows x86

biopython-1.79-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

biopython-1.79-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

biopython-1.79-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

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

biopython-1.79-cp39-cp39-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

biopython-1.79-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8 Windows x86-64

biopython-1.79-cp38-cp38-win32.whl (2.3 MB view details)

Uploaded CPython 3.8 Windows x86

biopython-1.79-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

biopython-1.79-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

biopython-1.79-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

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

biopython-1.79-cp38-cp38-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

biopython-1.79-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

biopython-1.79-cp37-cp37m-win32.whl (2.3 MB view details)

Uploaded CPython 3.7m Windows x86

biopython-1.79-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

biopython-1.79-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

biopython-1.79-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

biopython-1.79-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

biopython-1.79-cp36-cp36m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

biopython-1.79-cp36-cp36m-win32.whl (2.3 MB view details)

Uploaded CPython 3.6m Windows x86

biopython-1.79-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

biopython-1.79-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ x86-64

biopython-1.79-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

biopython-1.79-cp36-cp36m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: biopython-1.79.tar.gz
  • Upload date:
  • Size: 16.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79.tar.gz
Algorithm Hash digest
SHA256 edb07eac99d3b8abd7ba56ff4bedec9263f76dfc3c3f450e7d2e2bcdecf8559b
MD5 3c0e2dac4cf80f802c62effd788590f3
BLAKE2b-256 28734d61169ce1f15c65ea49af89e534b2089375a44b608cb65062b58ff414de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ead3c2df8fc4012fc7b1a2751be93c8b0fae677934e78d30182411ed34991bb
MD5 c5505ed34493b9c13f89fab2b507d685
BLAKE2b-256 89940bf331186d48e5cfc4ced0170e57789f6434b6bacb1b0e31230a6b7372fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for biopython-1.79-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6d1b8a63cb569209fb431d34dea0792d5c3ec0207aada3bdec3f8bf0c4a406fb
MD5 0eb01308025be498cb2bdf850ac12a8d
BLAKE2b-256 a246b058c3372419edbea9ff0dad9a4ab7a359b360c8d356250326a9015b3c7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 535ca75060786a682e6572abdc42420fa8a54af388297da7c56d151c7cc63eec
MD5 6d24e43634bbd94542ca3823312990e3
BLAKE2b-256 b6a66e73bfa0a297b9884a029d224a8841b44b8dec35f17ceb1ef279d2a7dc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1163ee42247d0ddb58838e5845de4b7b51012a48eb4b61e1f517edfeccab19db
MD5 54dae761a95f23fdd7b5489afcd4790b
BLAKE2b-256 7a4a1c25dd77f9148a58243dfa7dcad92d6faa913d211e54df337394ffd4422f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.5

File hashes

Hashes for biopython-1.79-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9eadfd4300f534cd4fa39613eeee786d2c3d6b981d373c5c46616fa1a97cad10
MD5 245b7faf6b39dc6600234a9d6d11f7de
BLAKE2b-256 2625ac3cac308583df8142406330a492dfdda8750641a0c65619ef6b7c596d0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for biopython-1.79-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1af4348c17e43f3c79a16af87424d8e3a32e2168ab9246106a085bbb2b8d3450
MD5 fd64e4015e3ab961a96880a831f77f1e
BLAKE2b-256 472791da99b76a92c3b6bcac49120b491bfcf5021cf4804b2afb7a9033d3a698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d759ccb6e7539130f0b272bc246715cad2a2fb91520d62db183d62d65f80a215
MD5 b480d7f2768481850d89f722ee2f2b70
BLAKE2b-256 5684f831d2fe72b9d0535bf6e8494da16d2070c8bf38d323a5cc06e52a8e3710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb3c25ac6688ceac074e8d09951d29d1ef49c0645f677550d7cbe5b950da5ccf
MD5 ae4ad4a76ef58402bf7a4f7d417a6da3
BLAKE2b-256 c9e4c16225bd0e97de886b4a8a5f1f032b1a8063cc83e151f9b2189f3c81ffa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3ab26f26a1956ef26303386510d84e917e31fcbbc94918c336da0163ef628df
MD5 b30509568b5cb31b5399c493d7ffbad5
BLAKE2b-256 60dac67fef644a92c2e44743ad8c3f0321b140e226f2b55112f066a9415c9d91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8f33dafd3c7254fff5e1684b965e45a7c08d9b8e1bf51562b0a521ff9a6f5ea0
MD5 61c9f6ee2b16706912d9a8589365265b
BLAKE2b-256 0b333a6ab331068d831efaafaf056a192268c4f9ee9805d10101bc4e9462a929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b385ab3eb8921bdf952213bb94c52662696905e5e5b8b81b024156eec3249012
MD5 345e5800ad0c158da3546ab646edfb1a
BLAKE2b-256 e6e8730466bd37501619ef0b55b10e98e007ce311e719dbe9c53fcf2b6f43579

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e921571b51514a6d35944242d6fef6427c3998acf58940fe1f209ac8a92a6e87
MD5 591b379bf66668302887e4f13cddfa33
BLAKE2b-256 548c275afd0b51d49ade65939de7b2ba40e8c4a37a63466bedf8d16aeb39ed4e

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ab93d5749b375be3682866b3a606aa2ebd3e6d868079793925bf4fbb0987cf1f
MD5 a2465ad344d7b555777cf2448d3b7eb1
BLAKE2b-256 104f1369f4a2840fdd37402935a59455f0c86a5abfcfdfae37365d8be925661c

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf634a56f449a4123e48e538d661948e5ac29fb452acd2962b8cb834b472a9d7
MD5 d79390f9b36c3b179679110757a79a7d
BLAKE2b-256 c214b1f15781c6ba3597fad6002c1a4999daea32c5fddc05a9ecb315e1fbb0d0

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 465429ca6fc1a98d25cc7a15708f1d238caa3ada66c3cd47d27405c816c80808
MD5 91ec727ac7f93475513ecfd20b8603aa
BLAKE2b-256 22cf28a0e54dbef63ea356fbecc5c3256be3232fb4bb0a8575e0960aa56dfa09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76988ed3d7383d566db1d7fc69c9cf136c6275813fb749fc6753c340f81f1a8f
MD5 797a690506374ac54fd5137d10242434
BLAKE2b-256 32d1acb7461d41e404232c01ed8762c3807e195d7827787d854d750084dc095e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2dbb4388c75b5dfca8ce729e791f465c9c878dbd7ba2ab9a1f9854609d2b5426
MD5 ad8c84f1db7bf5d77878cc65803c2f22
BLAKE2b-256 3d351584ea3e2067655d36f2e98b84704dcad2e91a52a7237fa2598c5cd8b485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 155c5b95857bca7ebd607210cb9d8ea459bb0b86b3ca37ea44ec47c26ede7e9a
MD5 48b3ac0eb9d9cf731d02d73959a02d9c
BLAKE2b-256 9c61dd680f0bada56f1bd4e022e98be912629e66af8994d1874299cc76932ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 131093d8a0b8075b692fe73d9a4684d4fc98ff5990f6dce1e1b9f929c58207f1
MD5 5fc598d581ba3e2b3e0b87c552e6d6e9
BLAKE2b-256 c460799615e4d9d6f514ada83156a74f08008738a635474684d6b2af9ae1cc66

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b3d4eec2e348c3d97a7fde80ee0f2b8ebeed849d2bd64a616833a9be03b93c8
MD5 deea33b6464f21b91d11ed69a073e4c6
BLAKE2b-256 cfad291179e20956f589774875e7bb1a80d680a9dd6661a7abb84eca80112815

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d9f6ce961e0c380e2a5435f64c96421dbcebeab6a1b41506bd81251feb733c08
MD5 93c93a61ef893af1315153384ea97dab
BLAKE2b-256 293ba892a2782334544c379b89943b1d548b7b26b7bb4730561ceb942076b2a7

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 947b793e804c59ea45ae46945a57612ad1789ca87af4af0d6a62dcecf3a6246a
MD5 0067a5aec0dcb4f76e178f44091e670d
BLAKE2b-256 5e5d323de430e020fd3db073502fc02d2db5e3711e7c2e082508d8fecc89e33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.79-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5c371b54f9ebb9ec420d535748d40c6945faf829420c1c5b254b1b77f70b153
MD5 4d95fbd7a8a82001c9336458d1c59a18
BLAKE2b-256 d426bd9b0762d4476614227ff909eeb95c1f9b8f126b387e1f41ecc8e895683b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.79-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aa23a83a220486af6193760d079b36543fe00afcfbd18280ca2fd0b2c1c8dd6d
MD5 1c031a0ee59f5ba24e79af94d7e1d8bd
BLAKE2b-256 4c83625b2161c17462c519299d70888ae46e3ec4d40ff7003703d99905d4b2a9

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: biopython-1.79-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f0a7e1d94a318f74974345fd0987ec389b16988ec484e67218e900b116b932a8
MD5 c0164ed781e105dea133dbb665fde34e
BLAKE2b-256 80914f59b312c3c43bbe35ee1df25256b6f3fccd7f9a7baf95145ea7a1a4f6dc

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-win32.whl.

File metadata

  • Download URL: biopython-1.79-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5ae69c5e09769390643aa0f8064517665df6fb99c37433821d6664584d0ecb8c
MD5 ca359beabda3167729295fb37d229c94
BLAKE2b-256 d4ac820ed94d0c59646df94cfa34a0c29dae51e010bb4996e6fa63350de6e509

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26c8b935a08efc044bbdd8882b86800c6bd7aa2a22832cee9470aba708cd23b1
MD5 742b7a8e4a9d1462e281d406eb4a9902
BLAKE2b-256 f5b7e78211d764945fdf2ed859f14e8d02c0e1f93b8762b3be7724a4f811f0c4

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51eb467a60c38820ad1e6c3a7d4cb10535606f559646e824cc65c96091d91ff7
MD5 1285a1a0a454d4bd6da63a9423ba2afc
BLAKE2b-256 7118e22da8ceabf16936595678690dc6e9877cf40bda245c3e554398558e0a31

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9580978803b582e0612b71673cab289e6bf261a865009cfb9501d65bc726a76e
MD5 cd63509899f495f49f497df0f995cb20
BLAKE2b-256 5a42de1ed545df624180b84c613e5e4de4848f72989ce5846a74af6baa0737b9

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03ee5c72b3cc3f0675a8c22ce1c45fe99a32a60db18df059df479ae6cf619708
MD5 8a422fc017efd70497e547e02fb9b1b3
BLAKE2b-256 e63ceb1d2d32cafd98689f6a0b887672055c093a8f96f88a84a7304c0dd077fc

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3786ed9304f2de9f27a9eaa7d19b6b167eff2be0d15c99000a99785308b7dabe
MD5 a063f63cd2215f4c4e1d10999e0434ae
BLAKE2b-256 7b9945130f31116a65f2ed2c6dcc7e9001bc6f15b829ca750cd2521e8a2e49f7

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: biopython-1.79-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 884a2b99ac7820cb84f70089769a512e3238ee60438b8c934ed519613dc570ce
MD5 01d62a74dd505b3fd9e10aeef4fb45e1
BLAKE2b-256 4a2819014d35446bb00b6783f098eb86f24440b9c099b1f1ded33814f48afbea

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: biopython-1.79-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 98deacc30b8654cfcdcf707d93fa4e3c8717bbda07c3f9f828cf84753d4a1e4d
MD5 c4cade3b5320eb14cc6361bc02235027
BLAKE2b-256 9d0a63c7690d43c7e21dceb62f0fa4fa3aac2c33d39c086e8859fde89ba73282

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-win32.whl.

File metadata

  • Download URL: biopython-1.79-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 83bfea8a19f9352c47b13965c4b73853e7aeef3c5aed8489895b0679e32c621b
MD5 1fedda5605dfda6b9ce73e84dd21a8d1
BLAKE2b-256 abdd13d67536d2cccd2fd8165fd222c63c24e62152243b5965b81a280a1e51ef

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 365569543ea58dd07ef205ec351c23b6c1a3200d5d321eb28ceaecd55eb5955e
MD5 66026278072d43a6a19d6910d0ac6a9f
BLAKE2b-256 085cba9cddec156212e2d4a847d5d5e1666a18d8c48cce9d7d4b854352347335

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.79-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ceab668be9cbdcddef55ad459f87acd0316ae4a00d32251fea4cf665f5062fda
MD5 fbe9ead3bcb9d3b3cc0d3792a1de2783
BLAKE2b-256 ff5879e243f219d238441fffc648973731ef5fbdd7caab1a04f2ee4c09bea528

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.79-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4be31815226052d86d4c2f6a103c40504e34bba3e25cc1b1d687a3203c42fb6e
MD5 851634b2452571126a4fa303955a4e1c
BLAKE2b-256 5d57dd1d704ac67dcf40433da6c97c9aa2b5842e99c26a5dd63ce542f7f00f14

See more details on using hashes here.

File details

Details for the file biopython-1.79-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: biopython-1.79-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for biopython-1.79-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72a1477cf1701964c7224e506a54fd65d1cc5228da200b634a17992230aa1cbd
MD5 ee948a652028a1ed71ec83b0d4c60fa2
BLAKE2b-256 b2fd40b37ad5f012f8ec02b70d854c3767a3b7a393d4ddf1b5977d89335c363f

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