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 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 http://dx.doi.org/10.1093/bioinformatics/btp163 pmid:19304878

For the impatient

Python 2.7.9 onwards, and Python 3.4 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.8 from http://www.python.org

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

  • Python 2.7, 3.4, 3.5, 3.6, 3.7, 3.8 – see http://www.python.org

    Python 3 is the primary development platform for Biopython. We will drop support for Python 2.7 in early 2020, in line with the end-of-life or sunset date for Python 2.7 itself.

  • PyPy2.7 or PyPy3.5 v7.1.1 – see http://www.pypy.org

    Aside from Bio.trie (which does not compile as marshal.h is currently missing under PyPy), everything should work. Older versions of PyPy mostly work too.

  • Jython 2.7 – see http://www.jython.org

    We have decided to deprecate support for Jython, but aside from Bio.Restriction, modules with C code, or dependent on SQLite3 or NumPy, everything should work. There are some known issues with test failures which have not yet been resolved.

Biopython 1.68 was our final release to support Python 2.6.

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:

Note that some of these libraries are not available for PyPy or Jython, and not all are available for Python 3 yet either.

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 - unless you are using Jython (support for which is deprecated).

  • 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, for example python3, pypy or jython.

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.

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

biopython-1.76-cp37-cp37m-macosx_10_6_intel.whl (2.4 MB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

biopython-1.76-cp36-cp36m-macosx_10_6_intel.whl (2.4 MB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

biopython-1.76-cp35-cp35m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

biopython-1.76-cp35-cp35m-win32.whl (2.3 MB view details)

Uploaded CPython 3.5m Windows x86

biopython-1.76-cp35-cp35m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5m

biopython-1.76-cp35-cp35m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 3.5m

biopython-1.76-cp35-cp35m-macosx_10_6_intel.whl (2.4 MB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

biopython-1.76-cp27-cp27m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

biopython-1.76-cp27-cp27m-win32.whl (2.2 MB view details)

Uploaded CPython 2.7m Windows x86

biopython-1.76-cp27-cp27m-manylinux1_i686.whl (2.3 MB view details)

Uploaded CPython 2.7m

biopython-1.76-cp27-cp27m-macosx_10_6_intel.whl (2.4 MB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: biopython-1.76.tar.gz
  • Upload date:
  • Size: 16.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.76.tar.gz
Algorithm Hash digest
SHA256 3873cb98dad5e28d5e3f2215a012565345a398d3d2c4eebf7cd701757b828c72
MD5 95aed112159a2d1c9d54d613b41963cd
BLAKE2b-256 fff40ce39bebcbb0ff619426f2bbe86e60bc549ace318c5a9113ae480ab2adc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-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/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20550cad24f66d4c47be556464e892c3e7cadeadb83e28cd3118297dd4bc361b
MD5 0ebb37153b8125f50218280b3eb2dfae
BLAKE2b-256 a844db3b2e4612cb5431572fa37469a99013c8214b6679cb01dfa0b5324432ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 526e01568d8ec12f161fb800e967ede2943bf1b61d44151bdc7e4242e58733ff
MD5 c7ee8d8e88b73e36518a4f365fc6655b
BLAKE2b-256 c0991eb4fd083e5015202313cc15e13ed7d7ebc437836bfa10ab08d7797ac521

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.76-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b1a29524cbea4eb7d6ef9c2626c8fdc3d21a1a0790b7a5a6725bfc57e129be39
MD5 4bce793f450e3e8c834c958f93642ba3
BLAKE2b-256 405e3a963cb5b4b4e33db0595ccbddff1df05e11a6664436ad8c9b1584d39e16

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.76-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d7cd8a169da9b44f878e218a51a494a7ccc5966a108f8607dcab360367fba6f3
MD5 742d6b5c5cd452e2d11d958a2800bd65
BLAKE2b-256 cbaf736a1d054869b240c607d08b4ddc03e253e5d03282749b2ff185498e299f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-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/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 637795f150c15fdc122bef6798c4189c9f3c3a6f0d18bfbfaf3cc150fcdf6796
MD5 200f6883962cbcf2f3a1c5f400f9d251
BLAKE2b-256 26a4b90fc9cac3f8730f4c4069197ab6bc86de7c0b013c25abd2d9ea525ef39a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-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/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 680b688ad6030b7efdd01eb2b9f0b3097b9ad509e9964597760a09dea5cdd5af
MD5 1ea3f7f7e7e75b2c421babad6ea7e80e
BLAKE2b-256 1c0ee285c8d8df639d5d1ecc723be351b02e8ba313fd35305eaf750327a6f73f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f0c269d202c24fa1dc5afd4067320e1e9447904f31d0e7398b76c24e35fed35c
MD5 26972c5f1447eaedcd357efa9ef89785
BLAKE2b-256 fee647c418b4cb1642ca289bcb5dbf6b15927a0982412ba76b3dfcd27e86016c

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.76-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 628442d2cbdc0dfc04bd2f2cdc5d73712e2c30e6de4192f9cc6dc6badd3d8205
MD5 437fcbacd1722e6930ad149502433da0
BLAKE2b-256 7d2a48ef94adf91c079bb7a97b38193a06735e1c41fbc19ee57edd8bebd6c6fa

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.76-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3cad3ff77d19211430816e2bb5dd891b6a29f19e2441ef786979c42746c10b9
MD5 9f2a08e71d17b299a258a6e98b3dff93
BLAKE2b-256 b92dac9e014b7508a0d5519318f44cf288982d92eae576f234f43c67f45d4e54

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: biopython-1.76-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 61bb0effa0252e3f296c49867f3303ecbb0f67d03730482141ff4b204a2b400c
MD5 57f669f9ae12a05c62c6bc01fdbb0ef8
BLAKE2b-256 f86c0e0aedf84ccf09c279170f4da9bcef9e56c2812426f603fe62e1cae74596

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-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/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 1d9f473ea96fa4eafa8dba5c1e0c2e98876a93a63a5b90a8eeda9b9192ad18d9
MD5 c03e4fffcc74aff19f0a47b48179fd35
BLAKE2b-256 349c877de9033ea55d38aa16bee5dbde84089fd0cede6dc40dbb3a6dd4377a1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.76-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 98c9b3e03233753cf5f3b6690a4be790f79a6ec290e2a578be1f0e2d982cf43b
MD5 c1deb47f2d0a0ea8774ec7c05c8233fe
BLAKE2b-256 6ccd41811c5d8c0c137c60807069b90ce28fd204e7d29219283b66972bdd47cf

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.76-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 01951f2474b9fbd38fa34678d2e3fab95497ea3ffa0a5570b2444dd3f906d730
MD5 eb93a2787ae07b303f959dbfe6a7cfbc
BLAKE2b-256 833de0c8a993dbea1136be90c31345aefc5babdd5046cd52f81c18fc3fdad865

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.76-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f39d2ea4fb0d97fa2e3e8cb55f30dc82475cb95743e45779ffe2c2fd77ece5d
MD5 9f04d75a9f0605ef9e1e4dae50e40c21
BLAKE2b-256 9a43421c8840cc20d3b0ec7206ace594cf2fc38bcebbfac00ca307f26804ad61

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: biopython-1.76-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b4d7f28c53884a9282ba3cc5e2887ae40ce2b4abfbb78cfb7a33bebe06a8c43a
MD5 6c37e2627d69fd66537b6647247266d9
BLAKE2b-256 de35942f27b97ad95bc1a9699961f599b4680448efe45c4d93ab9b0e78bc7f0d

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: biopython-1.76-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 4710fdaafdab18f20e5ff3e72732da4fe23c49e5bc0879c8cc07739cdd6b8088
MD5 aeed0f9ee35f5939213ae8998f762ba1
BLAKE2b-256 306df3576957db40fea9aaa827d710615ea970c262572cd343269289c2bb886f

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp35-cp35m-win32.whl.

File metadata

  • Download URL: biopython-1.76-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f5a14d4122b126f21e1d623a3e2e6723101840516fce15f225e69608dc023302
MD5 3822a0bcbe905eb36ce8fc74bb9208a4
BLAKE2b-256 b01bcdefa5e5005f5dba1cef00385851c823759b76c48719cfc0e4e6f7bffe8e

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.76-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f3747f985e1890eb267752c4ef0163366a2232cbda4ff3b750dfd3b68e373dc
MD5 b99243dc7fe645bd00bef3094c837c4d
BLAKE2b-256 598f454d961e821d5f600eb59885dc32aa39e3f226357f5d18a839d7ae088722

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.76-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e75b9400aa6122f2c5af75111426a1a07f1ab078b47bd8ef0ff9ca6c54fd398e
MD5 a869ee74ffeca007f7beecd5336f8e57
BLAKE2b-256 a431e6101e3c32f39a6b4d8fac0a5c9078402658e56181d8a66481d90ad30276

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: biopython-1.76-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3071a4d3e93baa316b3016039335d23d854e922335a6af96af58645d5c7ee676
MD5 1f8f3038a47269cfdb5db2f4736d64be
BLAKE2b-256 c0f7f7ed46e263a686e07637473411ccfec0a37cd52e792fb7b04091b72a3831

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: biopython-1.76-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e09d7ae93f93639d58d9314a47ccf8ee9fde4a9e36ba810cd0843b4afd1b1ddc
MD5 c6beafb28e7671a13eee40d912d74fab
BLAKE2b-256 e32ac30007411423846ff08c20aa54a082972e6b830aa37229ea9f5dfe465372

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp27-cp27m-win32.whl.

File metadata

  • Download URL: biopython-1.76-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 45d91b68f65c1ec6f9bcae1b07bd836c2b99de612d1502a2f08d59502b77e5c6
MD5 b79c3ba1c1b9a100997b8a763806d34b
BLAKE2b-256 1eef6d4ad6e86e529812b07b5c91f80f22f34385896b7f43894004e6decc4516

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.76-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aee7756947bc79cbcf5a9087ae34d0318f02d85fd5e1914e7fe3dddd4df93520
MD5 e6ee4189593e0aea99b4890e941860df
BLAKE2b-256 5d37326dd89ad7ded90b8663732d0726e12895acf6655c96e05fd59bfa0f6656

See more details on using hashes here.

File details

Details for the file biopython-1.76-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: biopython-1.76-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4

File hashes

Hashes for biopython-1.76-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 76a6bee1429e88eeaed4aa858bb9f656f44c79db40f726767659e4f95b2fcdb5
MD5 5a3fe54a5572a1d743684cd3df6d8cc8
BLAKE2b-256 d1c49a1a1d79e228cd7626b2fe5c5386cdb67a63249e03737ad7dd8a5cb4d36e

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