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.7 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 – see http://www.python.org

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

  • PyPy2.7 v6.0.0, or PyPy3.5 v6.0.0 – 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, or see the documentation here:

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 ;)

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.

Finally, you can send a bug report to the bug database or the mailing list at biopython@biopython.org (subscription required). In the 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.74.tar.gz (16.1 MB view details)

Uploaded Source

Built Distributions

biopython-1.74-cp37-cp37m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

biopython-1.74-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7m Windows x86

biopython-1.74-cp37-cp37m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m

biopython-1.74-cp37-cp37m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.7m

biopython-1.74-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

biopython-1.74-cp36-cp36m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

biopython-1.74-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86

biopython-1.74-cp36-cp36m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.6m

biopython-1.74-cp36-cp36m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.6m

biopython-1.74-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.6m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

biopython-1.74-cp35-cp35m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

biopython-1.74-cp35-cp35m-win32.whl (2.2 MB view details)

Uploaded CPython 3.5m Windows x86

biopython-1.74-cp35-cp35m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.5m

biopython-1.74-cp35-cp35m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.5m

biopython-1.74-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.5m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

biopython-1.74-cp34-cp34m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.4m Windows x86-64

biopython-1.74-cp34-cp34m-win32.whl (2.2 MB view details)

Uploaded CPython 3.4m Windows x86

biopython-1.74-cp34-cp34m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.4m

biopython-1.74-cp34-cp34m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.4m

biopython-1.74-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.4m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

biopython-1.74-cp27-cp27mu-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mu

biopython-1.74-cp27-cp27mu-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7mu

biopython-1.74-cp27-cp27m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

biopython-1.74-cp27-cp27m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7m

biopython-1.74-cp27-cp27m-manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 2.7m

biopython-1.74-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7m macOS 10.10+ intel macOS 10.10+ x86-64 macOS 10.6+ intel macOS 10.9+ intel macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: biopython-1.74.tar.gz
  • Upload date:
  • Size: 16.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74.tar.gz
Algorithm Hash digest
SHA256 25152c1be2c9205bf80901fc49adf2c2efff49f0dddbcf6e6b2ce31dfa6590c0
MD5 cead2bfe9e7be45267eba00635f68d5c
BLAKE2b-256 8cce380b3ad1d6653bb7b31b51bb3d4fbe9cced3180fe168acfd9f4e932ab12c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ca627475233f698ede17b5adb169ed10b44ab4dc3a48d71069d7ab0086bdbc1c
MD5 ffdd7986cb63dedf8daa4fb78140bbac
BLAKE2b-256 0eb373beef75f04f20ca5d1774aad25e98af58302d26b8baf4e561c8516257cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3a802aba32b64aee9c3b92d8b5d50aa3d0a95c8188b69a78a2cbc292578dae08
MD5 20075d6abfbdb011460829f624de0832
BLAKE2b-256 fb53b91ec7906ffa0e2e28abacce68deb10b16fefbbddb81a594917b0978e10f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a117596b366e2226e2bf0adaf87f32cda495357c398b1b2ca2ada9f54c386718
MD5 f7602a46d3e2e3302f99437739652727
BLAKE2b-256 1e2db9ca269f82640e07beb0ce53fc12aa8718cfeae7323c6cbc63a06960a963

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8cdfaf2963b7ef24497aa82e60bfc86267989f32a49b4edd4a67aba75202834
MD5 db5ee8837a887188bcef09f57b5bf12f
BLAKE2b-256 b27eda6074c40de1c0d3e5c81e1dccfde64aa1d7e92bd2c85ec57bb6eaa11b75

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.74-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 67144db2defb3b49d505c7c4c676ca80b3451a0764f507b930b86031b7ebde5c
MD5 025d4a914ad515b0181bdb0f8b1e8a2e
BLAKE2b-256 363f7947c2cd687e79f2904d2b8b0f8805cc344538f3849d7e187fc15db29b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 046510af3cbaaf822e7451f0772e3e3f327916edbfd1f34798e6b8cbf60e8aa3
MD5 743a888661c48b66d41de2e6c04890d5
BLAKE2b-256 4c77acdfdccae04a6a1e4ab651242b42c6f72cc8ac903dbb694365e9c9c077e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7c32c37b20843e1d22e76c889f1733097e27996d1ec0fe54d84e5f737c9ff65e
MD5 419f489831ec20aa1e11384d2991676c
BLAKE2b-256 fddb2fc2de30496fdebd16761e2578072cf7b6e1f2d25f9e77dc215fa2fb3f6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa8ed2c3fec5dc45f9b750bd5da386f82cddb7944b456bfd0472106050efa397
MD5 62e7696d4597d7b7ff8bbf157191c284
BLAKE2b-256 ed77de3ba8f3d3015455f5df859c082729198ee6732deaeb4b87b9cfbfbaafe3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f50ee861a67e96488d21bc210ea72250df8cb7578351366f52c3904b841b5fbe
MD5 74761f292187cfc06166107230d94dcd
BLAKE2b-256 67aa8a1b76b8cd6ccb5e32a435be49c2691a90b54b08c8ae71af0bf38370f457

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.74-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 efee2f77cef1b65a76fe27af83c05774329b481c2da71d0580fcbcf92d6e9988
MD5 a28eaf891cd04af42ea6391477c968d8
BLAKE2b-256 ef5e39b8c5887002c627bf44039b032f224113f347adc042488cdaa61a32d267

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 aa07bcf7def1c270c1fc1bab25f72a34f1ba24ab0a2d680f0a8466b39a2a7660
MD5 b4b59bbf517e42c8e1abfbe7af2a6893
BLAKE2b-256 4ea58144cf0cc15ff300472d2ad2ac6243cdb310b3e6ba00b83b410085d5ee82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 e6cc6e725a5fb628d41ed675bb74aa5eb03763e1ccd3111d0f73f739c7263ab4
MD5 fe2623ea21ca2e9f057eae333d0ae386
BLAKE2b-256 d3036c23583503084a8871f369e539a198dcf8f007b9229f563510c29bd59b12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 273c524550aaad3284edbdacecdf66cfd880dac580a5f6c5f80a9925a70144fb
MD5 dc9710022e6409590fc99bc82309cd8d
BLAKE2b-256 363a35d78250cb04ced183db3c01344737a7cf95a163f3267383a21e86784a3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d9a39f295d97ed953a48c1cde635b35205ed25034015238776dbd2a8afbb2a7
MD5 7c8e4473a474c05e39d70d8106dbd641
BLAKE2b-256 43bfd104b605d5cdb7f901650e1a0c9568571ca857bcbea7073a254fcc6dd572

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.74-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1324bd2f6ea1dbad748085875d4c206f08748bb7848355f365d31fcd771dfa75
MD5 6fc5cce9f94e5cac1aa4b57774e8626b
BLAKE2b-256 b36f2257b7043ac903ad7d757cce2fd471fd6a79e20264b9392471b216f38b51

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: biopython-1.74-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 015b79eea59bb5ccf7abef2ab17a813540c5c1969a8def2148fe3d529ff405a3
MD5 9a74dbfa0c81848ce107ad3c169ce1d3
BLAKE2b-256 3c184e3130ab9108372db378790d4ea4c557ab729530ba6c15b5439f11afce15

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp34-cp34m-win32.whl.

File metadata

  • Download URL: biopython-1.74-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 32c50dd9450ac780d640baa212ecde22fcc98dc0de472b40296968df2385c824
MD5 2d42a3e23b976a4a7db837b9d2782df1
BLAKE2b-256 f075ce14852625518b77891f0041b429d580df198dc4f1288d8cc08d915b238c

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.74-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8b7a3edd0dcc9eae3020849ad6110c721399f2c8dd71e54317dcc50035f9ebf9
MD5 33f5c75fe0fd63bba49afb19077a6067
BLAKE2b-256 bbf098052460797cceaf85e52859e002b378a43424a59d9020819c3373b74120

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.74-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3bf43ea45859bec05e8496c39dbd614c75520a832da20d826fdbd7e83105414
MD5 a18c82789358cd3a6cf854750bbf9216
BLAKE2b-256 5d91bed77ed23c52987aef6c65e1a42ec41be0612351ecddd56b5255f384306b

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.74-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d6a310fab78e11dba51b55a2b194a79128d202584127e17952f7f64b52da83e2
MD5 7545b99fe59e820b3e5343463df9bf61
BLAKE2b-256 3c033f389da7272e5f4465a1cacc0a9d3371bc1f553646848a3eb5e4a0baf3e4

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.74-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 022909d10bbdfbc70eba6ea1c06ff573444e26e40ef0899025fb269898604b16
MD5 69e2b9aea866248dcb250b0d4749347c
BLAKE2b-256 3a9fad28cad92d1719523fd84732a6899c30176b72d2856227147cbff0923d02

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: biopython-1.74-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 77145b88a74c89f752db2ed11f64737161cc337c9e520e3853c945bd1d9866e6
MD5 e060e2971cb64488392690f2b49a894a
BLAKE2b-256 05b2c7902b462050d717040bb6c3e1d5591663b98fb7ee41d0c69ddffe720189

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 36c35d93d16c9270303bfc755d2364171a1aaebd75f3bfa97179712a3ac09e2d
MD5 72549961e56ba7c00ddf5aa4d4a2c4b7
BLAKE2b-256 73515b3aeb47345fd114819ff0d1648f7ea169b03ed5a5a253a57f344439ad4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 540f9df15e11f091e2d92959b891d2001bb59660ca806d51ca30d76dab60d39e
MD5 301964b516d9a1af29db36c45e97857c
BLAKE2b-256 d4f0e541af211fb50ac5628c9883b0956dea8a8fc4daf60baeeaa9fb218bcaa3

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: biopython-1.74-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bb302ad68a133ed3ae26efa0a0c82a0905c8b9b85a70fa6626611a882a65ec61
MD5 eb9b68d29187208688f3763d7f9b4443
BLAKE2b-256 ec459b83ac675b3044146894ceacc476fafa148b0e6e044c0c3ccb1cd1e5e2bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.74-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for biopython-1.74-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7103f3dd3cef9f6ae52c0c3275ecb65121f3935b90d25c5e149ce62f684fbaf2
MD5 bc71b115d62fa0505b05dcb8d51ebbb3
BLAKE2b-256 0ce81be7dba4790537950592ecb4400cae95620b09a7354593e098abf7c2d935

See more details on using hashes here.

File details

Details for the file biopython-1.74-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.74-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 6182f8c17c81aa40987b018e6241719137e463f5bb263c423db6180d118d3a03
MD5 808a8cc83ef7ae8328de47112a9619c9
BLAKE2b-256 5ada78133668c51eefd66fc00954d742564f91dee8c909bb82cd9bbf356542aa

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