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, 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.10 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.

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.81.tar.gz (19.3 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

biopython-1.81-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.81-cp312-cp312-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

biopython-1.81-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.81-cp311-cp311-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

biopython-1.81-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.81-cp310-cp310-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

biopython-1.81-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.81-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

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

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

biopython-1.81-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.81-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.81-cp38-cp38-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

biopython-1.81-cp37-cp37m-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.7m Windows x86-64

biopython-1.81-cp37-cp37m-win32.whl (2.7 MB view details)

Uploaded CPython 3.7m Windows x86

biopython-1.81-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

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

biopython-1.81-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

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

biopython-1.81-cp37-cp37m-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for biopython-1.81.tar.gz
Algorithm Hash digest
SHA256 2cf38112b6d8415ad39d6a611988cd11fb5f33eb09346666a87263beba9614e0
MD5 06cabd14f55d624db366ff75efb60ed2
BLAKE2b-256 ada4237edd5f5e5b68d9543c79bcd695ef881e6317fbd0eae1b1e53e694f9d54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.81-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 22f5741aca91af0a76c0d5617e58e554fd3374bbd16e0c0ac1facf45b107313b
MD5 022b7b367a3c40ee3db191dfdf8b26d3
BLAKE2b-256 53dc95a8a6021d3b49f3ab977486b20e8e588e887c9e016a2174a1c026c4ae7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.81-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 daeab15274bbcc0455cbd378636e14f53bc7c5b1f383e77021d7222e72cc3418
MD5 a906dde5cabe6a02fd1a724ea6ba602c
BLAKE2b-256 422eed34bd53e402e27221e9b0e75ab7b4aad263ab4abc6646eff7444558f813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ec149487f3d1e0cf2b52b6071641c161ed545b0855ff51a71506152e14fc5bb
MD5 583db4f806c5dc143dcdde1841c586e3
BLAKE2b-256 f10fea29e2f922523f9c05e4d28a659f3828f9dfedc92f41d2770c6b43e930d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 175fcddc9f22a070aa6db54755d60c4b31090cc39f5f5f4b0a9a5d1ae3b45cd7
MD5 ebb3738e07022733810da3022ddeb563
BLAKE2b-256 b5e5ba20863f471056ccb6c05bc77615779d30671841facd447501814b91683c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e41b55edcfd448630e77bf4de66a7235324a8a149621499891da6bd1d5085b9a
MD5 55c20a62c48ac2717d46f4b51b3032d1
BLAKE2b-256 a185d2de45fb662d52622acbad029ff61ea7b99f95d8946eb85928c1c7b434c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f9cfaf16d55ab80d514e7aebe5710dabe4e4ff47ede851031202e33b3249da3
MD5 1f515339fce79cca0ea7c536486ea3ea
BLAKE2b-256 46ac29bb0133b236ed62cf7a64e943835c3c4f86baa183e3a6bddee51869d802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a51d9c1d1b4b634447535da74a644fae59bc234fbbf9001e2dc6b6fbabb98019
MD5 bb440e5d575f24d47a37d0d5f2e0f0af
BLAKE2b-256 0a8f3a661b3752863d2f530823384e7c97d202f0d444f80bb0ac89f5b4057fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a168709694e10b338718c18d967edd5b56c237dc88642c22275796007a70000
MD5 a5b40f8a0bfe8f1296a86a9447de9304
BLAKE2b-256 36a883ffdd52b1bd8ee1170754d11dc07cc3a8231e4d83b01a27b6adcdfaa558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b37c0d24191e5c96ca02415a5188551980c83a0d518bbc4ffe3c9a5d1fe0ee81
MD5 6b7b3859262be1ec1de7d057d4269692
BLAKE2b-256 7963ca137b04388f4eadd721a585a64288fb0f197033507d5145039e4f606862

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 919a2c583cabf9c96d2ae4e1245a6b0376932fb342aca302a0fc198b71ab3275
MD5 55a16cb3f719ec76961638e8075b4699
BLAKE2b-256 fd770c757459d236dd739c42933f5238a3a6a220fcf0028972a5ea73f20d847e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ebfbce0d91796c7aef422ee9dffe8827e07e5abaa94545e006f1f20e965c80b
MD5 46e88d1a0568bd5d969519e25511079c
BLAKE2b-256 655105d02d400ee0b45fc7f01ab71d9db0e06cfa8af891fd88557d3e489fd97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef7c79b65b0b3f3c7dc59e20a7f8ae5758d8e852cb8b9cace590dc5617e348ba
MD5 fdb2996b6c9ee952e1c34260f7b3d35b
BLAKE2b-256 e0c6bec6fbc01dfa4157b51c2e3a3c6f253caceac61054c282444106764e9595

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b09efcb4733c8770f25eab5fe555a96a08f5ab9e1bc36939e08ebf2ffbf3e0f1
MD5 5f75247084531251705533e2c359042b
BLAKE2b-256 b71e5fcdf870beec4591d79c82d691de22a2ea742abf282390d4bb386e89dbdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 811796f8d222aa3869a50e31e54ce62b69106b47cd8bb06934867c0d843297b5
MD5 919e9c3e4adfdca8c76338c72389367f
BLAKE2b-256 1cdb10d3c1455692119c90999dab0fa63e234be314805cd61e4cd6efee933b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bb0c690c7368f255ed45236bf0f5464b476b8c083c8f634533921af78278261
MD5 84dd254a254f33f5ee411dc219f09620
BLAKE2b-256 c7f9b617b085d3d54a44adebb611d54dad7a65ce9d215882f0a63d798cdf47a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65b93b513ce9dd7b2ce058720eadf42cd03f312db3409356efeb93123d1320aa
MD5 ce2d3e424e514b9d3170d1b76c584836
BLAKE2b-256 3d99be029ebd012340c32d16a2ebbadc6149c6192e5b359b0072a5f394e3a003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ba33244f0eff830beaa7240065bdb5095d96fded6599b76bbb9ddab45cd2bbd
MD5 ce80e62e360bb6978dbf45a480c0dd44
BLAKE2b-256 23dfeb9622a9bc3ef1af460e174af547dcf84200fc6a275e381ac274b57914e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ccd729249fd5f586dd4c2a3507c2ea2456825d7e615e97c07c409c850eaf4594
MD5 c02a31de4eb8f3a09affe299862e49f9
BLAKE2b-256 67f0327622cf6c1af9a5ee9e853af0895d0f8c3d10df496e200a0914830bc1fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-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.9.16

File hashes

Hashes for biopython-1.81-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ee51bb1cd7decffd24da6b76d5e01b7e2fd818ab85cf0c180226cbb5793a3abd
MD5 f17576490baff20b781ad12bdd507b7c
BLAKE2b-256 37c7220fdbb3a0c129f65718f6f5344f88ff78c251d71e4707c44881d7d28f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 655df416936662c0c8a06a549cb25e1560e1fea5067d850f34fb714b8a3fae6c
MD5 a96af43da4a83ecdae93bf308bb597eb
BLAKE2b-256 150cfbc084480b5b4b7fa0734e65a1ed674c16b8629c74e41d246b7a0ea76343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 762c6c43a8486b5fcd07f136a3217b87d24755618b9ea9da1f17124ff44c2ad6
MD5 6a09dc119292abea3c564c2c8e95e6db
BLAKE2b-256 8801d6dd8a34c3a1dc8e1c12f27a7aadb13f069f50c6458fcb69260772897f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11d673698b3d0d6589292ea951fb62cb24ea27d273eca0d08dbbd956690f97f5
MD5 9c8acfd6e8c8f90a91e7d2bcb291abfa
BLAKE2b-256 bb39423f35bf49d94e9a17c9f04a9fa81aa215ece3b2ca60b68febae60ec87aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for biopython-1.81-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 793c42a376cd63f62f8a088ce39b7dc6b5c55e4e9031d887c434de1595bfa4b8
MD5 2e3ed0d6dc2a310a4e676c165903ecd7
BLAKE2b-256 f21266bc9e4506edd7c778980ea0bc5597bc125288bc6573c78031017571ca0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.81-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for biopython-1.81-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 35506e39822c52d11cf09a3951e82375ca1bb9303960b4286acf02c9a6f6c4cc
MD5 11d1e5104342c0899ece8db1b2d66c37
BLAKE2b-256 bb8ebc92a7bb0cd18f987a69b155138fb7f1e08e2fa7fbe407c184e147e11880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c5c07123ff5f44c9e6b5369df854a38afd3c0c50ef58498a0ae8f7eb799f3e8
MD5 4b2a82b296e14dbd3f41c403312e4595
BLAKE2b-256 6c4a0f3429d1b7072b7e7b0c55e0c3765a3656c4ce2e8854c6fdb30b325fd39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97cbdbed01b2512471f36c74b91658d1dfbdcbf39bc038f6ce5a41c3e60a8fc6
MD5 d12c838ec0a55c5603d4a6dd3c6483ab
BLAKE2b-256 f38f237301d528cb8c6506adb90d06a3e5509d09a6fa8aa16ede9328f4d3b1c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.81-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b36ba1bf6395c09a365c53530c9d71f3617763fa2c1d452b3d8948368c0f1de
MD5 172c6f0bf377831f900b95f9cb2f135f
BLAKE2b-256 94f80ec87dce37d15f135d30fe753bb90a4877ff3db8ffb58d9954536011c01c

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