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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

biopython-1.80-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.80-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.80-cp39-cp39-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

biopython-1.80-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.80-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.80-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.80.tar.gz.

File metadata

  • Download URL: biopython-1.80.tar.gz
  • Upload date:
  • Size: 17.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80.tar.gz
Algorithm Hash digest
SHA256 52805e9af88767e450e2df8113b5bc59e964e2e8a7bb803a83570bdbb51c0e43
MD5 0d1c25c9d67a29534220e03e39f69052
BLAKE2b-256 cb8d7cd217252797f7088847d667101b490df5644f0ff5202441e444b2b620ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a324830cff00e706d7010efb3013348bdabdacf42496cc706d2a2fd34d3fe17
MD5 8f655fd707fab883228e7ab28a50e4d4
BLAKE2b-256 6e598c0a0af8c0d7d16571426cb9b2320de3e3abffa81a6bb1dd96b66e6e8d33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0766783ec50a100dc12636c9f261cb46c438ba56be33b4e27c68b9b98c80a102
MD5 f5a10da1bbf7a37b4c33bdecb0163b33
BLAKE2b-256 c6852e8078cb2fc2bdaf340a3fa6bd85f53e68c3ce549dbc2e5535be85626888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24b0376a1df657531cb9c6d221ef8e7956dd52533f550a8548572e875b4877c8
MD5 9f5adc8f33e1ce8d9db8dfc1c74aa709
BLAKE2b-256 972c249d8d97ef86b574147392afb5d53d8e801821bd2e1b84e3c4cab8571345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc8e00f3f3704f1e6aa0a67c19874c5a848ff827e31c7226b495c258d079f329
MD5 bea1a3fc2bb2aa94c038a7cfc2fc380d
BLAKE2b-256 c0deca9324a7c4991b0d30cf7235d51985cf0efcc05bed6d4780bfe5170c9346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3cedd2d7935084f8e929e5f516218845eaea4b06e6ac14ef400906dc48214a9
MD5 1d3c5fd5eef30ba8b0a14e95ea8c7d30
BLAKE2b-256 06ed6fbab8be0b4868f5105d76f3ab8b202c1bffd23d43cd422ba485af374b71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 299b2402eb7145b56d8c9a2418bb5b36c3ceadc7b1e915e0dd0062973281affa
MD5 b4ee43eee76c6f4ac1456e2193ee910e
BLAKE2b-256 6ef2ef58012529de1d3ea401bd3dfa87c5e5c9fb05aa611519ccc18ce6b17ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fa77bf8a99e5acc82518805a07cfb01bb98bf9439fed3e2764df57ae52b1614
MD5 36b87b3145b7fb19c02e3390e882b23c
BLAKE2b-256 66ab51ef468219008623e96202055949d0e8bb018bb12f5cbdc4f8da34d34765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c028b6129505e40efaeb70cc9ee034da83be743049315e124e5d44ec0e43494
MD5 476e58e407cf9025beb0d60256126553
BLAKE2b-256 e4f90a85df7917f6cd87d69983a10fc6dcdd090226ff71a15a7b086edea2acd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4782e1ba91069f12f9a526a4291c71d6aafb08503f72fb250aafeb6fb811278c
MD5 2e5a79f156248eb26533371623196cfc
BLAKE2b-256 2ef4c45a5a00036f7bd147270a8bda3925a30cf947b09f9598e44919e0b2b17c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 063b1de90331f52f4617821b7ba0e6a2846c06028844ba0d047573da8b1b4ea1
MD5 4edcad97fd7f188195741ba7d247bcbf
BLAKE2b-256 db42674f81acc0fee8cafd67a4692ffb04c341125b1a09537e0791e6a86efabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 013c664418ee47ec3ac459c924d0fe8193240b384dc3f1ae00fb69b39eebdb2b
MD5 bc7204588100a7f3b9c2d6f07c02455e
BLAKE2b-256 e9b3d5703920ae7f9ff0458a3cf75cd5db271b9a8096fad492177621827f975b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d91b0bf503bc69accdb1b6d549f195ba421c5e6c55535de593a4b06cc1fb699
MD5 e1110ab2b679daa712e17970701d7d3d
BLAKE2b-256 5638b815307b7860c1020bd71745be6c5d975f389a5f81000c426c915a16b481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ab20351dda7b2b1951481586acf6299593541069301422d178ee82ac7d66845
MD5 5eb060e773e41dcf20a8afaa8e2e082c
BLAKE2b-256 1ece2ba63838f8489bac77b1dbc204eb17a5ef2df51ebbded2f3e2674ecc40c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d565f1a9cc7508dfe8b09bbd36d4f69f6bcbb58b54d483b6a3ab2ca96f3977ba
MD5 8917b38b8a2b99a043397e79f99574cc
BLAKE2b-256 c9b9ede0f39b32b6c0ab97899d5b1e3cd2a9e7dd75b84f6754e386b77945bc37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e4abbcec3d84587bf2f32669b0f1ff60ff42838581203603bc641da5e5bd0354
MD5 92f9758889cac2dd0a0a5eabf48e703d
BLAKE2b-256 d949bb2eea7f026fb99a408a94a2958fc6440efe0b85934acea03bc844bd7332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c73edaccbeac6bec51368f4970169cd0b62a468ba18cde2cf3c12d6f706f9d05
MD5 e3ff0c967887f87716f997397b26b6a9
BLAKE2b-256 3c1b28a4c28e9e8fdfa88c7d9feacef5f2af85fe6a2d5fc81fe30f7d227793b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33b92ca2cb43cccbd0018143b265bb4fbc34e7333ea4594972aa7e7db246bc7e
MD5 e9461a789cb93b0740786eb4f8daec6a
BLAKE2b-256 62068236a2f5950fc4a9e74657011e618b50916e29a0645d99881511294497a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2274f399b09a1ebdabf37a19fab7a325e2e2dfa87b5c838d86ad4e8cfadbcd78
MD5 b05f5152a3ea95385521db23db25b7f1
BLAKE2b-256 335b051faf29644418361adb87a424a7bf1e41f0b69d01c27514bc470b87f006

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bf2c70e2eff50ab78fbb944a359baeb765923873fb6e8b1ec24bd3a84a781e3c
MD5 c6db342d65b9e7353fc2cd8c75b68292
BLAKE2b-256 f728c2ffd63d61a02b2a61c6b683b969584613f5902cb01a548432667bff0774

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.80-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.1 CPython/3.9.13

File hashes

Hashes for biopython-1.80-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 91b0347251c9b3e6bdbfd2fadb2aab2f91420f46ec9e9599e64e6cb0efe54462
MD5 99c17c5789e45b423078b4c2085d78f8
BLAKE2b-256 68a650dcd58b63a089c7b838c12c2958d5282488f97b6ce791629eec094f9057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 043a8fc0b0bd5593c748dce54b89f8dd978cd67c720427abe857ae64f85ef6d3
MD5 ef581e39a2fa495d7a000177dc123db5
BLAKE2b-256 139480f296e89034ee296ea0f9a2163de0bb761531bcd657f3bc452a9f238885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b7904908f5c05f1cc0ecf3f02854f73e3dd7ed7b531e00c7bda04bbea91d271
MD5 e0157d9c9c51843d728a8188319ba30a
BLAKE2b-256 c843c12d7d833e37e9e0e8dffa8710b0507656615932fc7f2d1dde55a13431d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.80-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4f14294976f7fe309147537b0bed618c193dccb446798f2db8a16977f064cb7
MD5 c02666f449207ec397afd8addc8268cb
BLAKE2b-256 6db1abf0bcf16f5be31e1c90a3015bd5e382ec2f20cec35368db4e9cccaafbd0

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