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 Landscape Code Metrics 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.

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

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, it is possible to run only the offline tests.

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 visit the 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.

  • 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.73.tar.gz (15.7 MB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

biopython-1.73-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.73-cp36-cp36m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

biopython-1.73-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.73-cp35-cp35m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

biopython-1.73-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.73-cp34-cp34m-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.4m Windows x86-64

biopython-1.73-cp34-cp34m-win32.whl (2.1 MB view details)

Uploaded CPython 3.4m Windows x86

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

Uploaded CPython 3.4m

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

Uploaded CPython 3.4m

biopython-1.73-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.73-cp27-cp27mu-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

biopython-1.73-cp27-cp27m-win32.whl (2.1 MB view details)

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

biopython-1.73-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.73.tar.gz.

File metadata

  • Download URL: biopython-1.73.tar.gz
  • Upload date:
  • Size: 15.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73.tar.gz
Algorithm Hash digest
SHA256 70c5cc27dc61c23d18bb33b6d38d70edc4b926033aea3b7434737c731c94a5e0
MD5 d1d2e6154c2c89d6bb0e77f4a3578686
BLAKE2b-256 7a4a0d4381a60b6e942c6772b01cfb931196f1a9c33910cc43fbd4faccbd7d9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0fa9346c8ec144da12a556861090cfe5fbb6ecd89418d6358047b90def48e032
MD5 e32acd6a4a2c703ee5ff34cd62f83124
BLAKE2b-256 eb7ea3b0c61127bcb0d7ee9d7d20a5c3c4877f38627bf561ac955992c3b76da2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 93d79520586b48a2a77bec3a0623871b656c45dbb83c9b6834540f0a7232478e
MD5 58c58f52d514bd9a86df01da1db0d804
BLAKE2b-256 f3f2d7dd3e161bc694b32e3551117134424401bb0b28fd71a470bcf14db8f896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26f8ae8ddf06c85dab12f5aaff538593c7cec69102bb4ad968b3eb40a0477bf8
MD5 c92184fad3be8c8ba3cc3e8816603dc5
BLAKE2b-256 d05d8aedf28541f4936707d78997ebe6d9e25935ae6df6b8f7a045ce294df664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ede4e4335828a780dc2096fd0443c45efb3f8fcac741e544454997b978ad3cf3
MD5 0db98f888700a7e119f39f136687c3d1
BLAKE2b-256 d71f9465253f01c77626a390814b239d1c4a8aed1c21f8cd5e6e5f439b6a92a4

See more details on using hashes here.

File details

Details for the file biopython-1.73-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.73-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 cfb44ba6cdfb1dbfc05b7e46f26286b37d35b2bb847868c9088e9b67060fd7be
MD5 e082d026d3bb894838e389f159a8362b
BLAKE2b-256 f06f388e730f61ca76dbc89885e102d6105124151c3291e8ac0a08be51410afd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ef69ed6acf7bee26c530e40a768d060f46eef228d06aa2ea89439d3c54759bd8
MD5 f0dde83e1a7c27a107e6aeb253f29f08
BLAKE2b-256 4fcbe27d6d2e71f1b1cea0be357aed599ad24d60a82263989b58a31d0f6cec15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5542f847a860b90e742a1be8a9807aa57accacd2bccfb07b3f6511f85201af19
MD5 1f49d1a5b492639008dd674b83a8bcb7
BLAKE2b-256 6750191791d90b67e30c97cfb09e3544d7dff07daeb397bdbbabfdd4f45d0b2d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 92c0940c5c2a76b559538a4eb1fc0277d3e960209c537d5b74632fa87a51a810
MD5 fb8a38c943a9e80492ddb657e9d330a5
BLAKE2b-256 28158ac646ff24cfa2588b4d5e5ea51e8d13f3d35806bd9498fbf40ef79026fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d120346e2eed46beaf1d0771826a18cee7c3155cc8c0dafc6ffffc74ac49e8fc
MD5 8898e77221359b4d4280e42a53bfbc52
BLAKE2b-256 d79822a7c422538013d0934ee63ffe3b6fbdb3981e2891545dee0febfbcc84cb

See more details on using hashes here.

File details

Details for the file biopython-1.73-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.73-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 164b9958d1714f318015900f2689fcc08859f76b11484e8f91f1f29acb4b7465
MD5 d11a2c7ba85a9927815fb9b6dfd9a0ac
BLAKE2b-256 e3ef5325c1c28b11e459fadb8a2a42662d34c1cbabef93fd8c7cfb7b9e60a0ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 839882c1929476538f9872e7fe6617c6fbcd65989483254817effbc388feead1
MD5 24c6352a143ea28c47bff5da754f0af9
BLAKE2b-256 24d064fc5753e2633aa5d4009dd7b49e9b2b4200747a90d76cc20dfb8db99a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 99e6f78317c68b27a8b406c5595364005d43fee67f3b8ae20c3332588999442f
MD5 65165d6551e43bdc18e0912935f9c7fd
BLAKE2b-256 2633f201226d81e38e491cb64bd32c8d7d57e7df9afd5586f6ac381f9843d476

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fce8051b05d62d7d0ff7af0999f6874bd9af17f0613e6c8664ac20c93215345a
MD5 6d4ebb6131a611a71816b0208747de55
BLAKE2b-256 3c5a05c29e3a75269e00e50779b28b60041d9783ee79054ce53a1d193e05deab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7a03ae81b5507b3a668f81a58351c065fa6d8a0b77f772e183eb284c1cc4619
MD5 0676a634a73e049903a4bc36e3b60fc3
BLAKE2b-256 bdeec3178788e51e3920ffec99cf1832fd3fd8cc46af86473bb5bc18a87c4112

See more details on using hashes here.

File details

Details for the file biopython-1.73-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.73-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 a149ea816f21ef72e1b4e6f538b13141584bdc531f864c5f1eb8b8feed71ba06
MD5 a8ecaa7bf30fd912536881228e754664
BLAKE2b-256 ce3b62b896d2803d261697657ed12181aed45323941bba58ddaa301e28f6871f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 f49558bea021cc5243e50efb38d545842153cde276e14879d6d63222065c683d
MD5 04a91b6ea826596b0c8b643b743d176f
BLAKE2b-256 7da30b429cb392834037a851650afa6c2d210a0ac480bda8978e64f8a2357975

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 3cc401c15a85829eb6ae01babb02fbe7828548709b4dcb6d5149e94d5173ed7c
MD5 1b0d7ba1b4c097b318213431d9b6b99e
BLAKE2b-256 0ff47af6f34bf6c297b65cac0a2460a553a7af2bc5a610ff2a48084312b92596

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 aed261f47f72d63292fdf4c81197fdbc150094a34e10176647a932c83e179db9
MD5 ae414b4666900567579cc92df4223521
BLAKE2b-256 031579e1e05bf47be8983cc2317ebdffcc91e3736f0e48209974229304eec4cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c4b55412c12b246b948c3bbb30e60a7b075da9770449371a731ac9987849381
MD5 5c78b8210de0b511c208facf7325c7e6
BLAKE2b-256 587c11ddacbed90a200f60216e6b2abb22c8e462b5612243c6e3a0d816734f70

See more details on using hashes here.

File details

Details for the file biopython-1.73-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.73-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 59610b1639a7d9c1f36a5398e748c044c21f4285230fa79fcea2cafe835f9366
MD5 32fc6184cbf21faca0776251570b2c58
BLAKE2b-256 fc432678e84db5d38db6e64dfd2ce581c485e036fa3c806f1d9f6c665dee7051

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 85d53b91406aacfef673fb3cf24873d978654fa49d52b5ab4d9c3b0d06b003d6
MD5 bf23d2daae5c72c2d84058bce3acd7a2
BLAKE2b-256 194eac487da685e947c56fafd10b2a04c6a09f0051c2e7665a873263f5e303f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 21723d79a1d15e99c823b440dd37176259dffa686e2a015919ad255d89238491
MD5 41fdb1f257cdcd030a468e7339a6c6ab
BLAKE2b-256 3a0aac144259d7f3e7edafe52cd4a9d1439b98dbb1fd30781ef05c0decbfb0c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.20.0 CPython/3.5.0

File hashes

Hashes for biopython-1.73-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 add575d5b81eec95381a53ca8c042e9de9e506b24734ec773690247d997eaa69
MD5 178be72d7b294a2a15c92630bbee2a81
BLAKE2b-256 268147469b58319992bc9545848f738a7775c2dc0c1c9996ee61454dc5e8cf34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 c5beb53e2d5a5a573baaaa449a32d3adfb3d03bd7752adbcb20a62d6e8041e03
MD5 d3cab98752b83cef121b7a1e8b81853c
BLAKE2b-256 0cb46e86047e19e3528e76142cfb175393219641b9b49277802bfdec9931827a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e5b5666724cab7983aebeb593e52dd276ff9fdabb3669d57db8b5ea303a097a5
MD5 27f5179f2493408d33e5322690f1bb7a
BLAKE2b-256 2d145262f6aa22977e8f42369e898c07f02f9dc2a313b7b95f6197e396b5b72e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.73-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.4.2 requests/2.19.1 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0rc1

File hashes

Hashes for biopython-1.73-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 0302d5be80850fbaa93789ab516d189c9400755901cfe566a324e8fea10ed39b
MD5 a531f656ecae854adf1fc6021735c2a9
BLAKE2b-256 0dd13467dd6f15caf315a5819806373f213f0f7467d56ccd530de3a351a586eb

See more details on using hashes here.

File details

Details for the file biopython-1.73-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.73-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 c43a47ad3397336aa7af5a0bb5ebec91aa2ae328b71421e550cf7e7f80d00f69
MD5 9bab1776b3f63cb2a81715e78abfb6e0
BLAKE2b-256 a0fd6ccbfe72c6ba14c1dec3b93e0441228b650c82d74f0270e4b785600d66d4

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