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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

biopython-1.75-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.4 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.75-cp36-cp36m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.6m

biopython-1.75-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.4 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.75-cp35-cp35m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

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

Uploaded CPython 3.5m

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

Uploaded CPython 3.5m

biopython-1.75-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.4 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.75-cp27-cp27m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

biopython-1.75-cp27-cp27m-manylinux1_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7m

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

Uploaded CPython 2.7m

biopython-1.75-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.4 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.75.tar.gz.

File metadata

  • Download URL: biopython-1.75.tar.gz
  • Upload date:
  • Size: 16.4 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.75.tar.gz
Algorithm Hash digest
SHA256 5060e4ef29c2bc214749733634051be5b8d11686c6590fa155c3443dcaa89906
MD5 59ed4f1ead5157cbd8ba28989bc16681
BLAKE2b-256 3355becf2b99556588d22b542f3412990bfc79b674e198d9bc58f7bbc333439e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 62f25b04ca283bd28aa06328353279a909cbb8899d62d483776e28f83c52058a
MD5 8d226ef81ca33348e819f5167083dbe2
BLAKE2b-256 36c172ec2d9806b2e22d253fe29b72b7002c121ea0f5a4601bf4f2044ef60ed0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9476393b148a418aeed19330d541fbb1921d248ab10e62dc1c6c5d3a3d13c719
MD5 7ff03c34168b4bb57051d4903bbbac22
BLAKE2b-256 add5b6a18ccafe425f855af3a070097a60c0cac95b80e171ef77f08c42752ed3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c017b8796be410610f7cc3ded4bce5415634797f61224f9b693a93d8ebe34edb
MD5 cd5009b8afb86fce8a4be8b7b650fb62
BLAKE2b-256 ea351382e1afb829685e6b96c560ceba41b92c7420dbd7dc47177b5829417d9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 42ff0a69e5cf1f79a1179d0ff66c32c71de34d34bd1ecc438c5a82543e759173
MD5 cde12a5070defa8732aa6c7c3722808e
BLAKE2b-256 788c499302169a77afebc4b42d5443bb54d48fb434255f471680407f3896d13f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a260e5cc7b14362f8b18ab4a97293617f9fa95881fb95e0e9b7bd24cf23ca55a
MD5 40d63d92ad7c4f2e0b91a7604bcc7584
BLAKE2b-256 73e0cbee28b57a6c9844b1c78d6a396e93f3fdc979a27ae99cbd0aea2b40badc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f0a578282167d62f426b5b695f18c00069074aaad4704799e6071832a9bfad86
MD5 2ba32c8bdf38b0e13e1a952f3a8d02e1
BLAKE2b-256 58638198bde2eca0b3c0200d08565a23bf57840fc626e9f5f765e243b8d495d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 98fc563aacf20a43a5476bf243a6ea6ccaf5781cb5d8d91a8a5a7c0503410574
MD5 a8a6e3941b90675a78101c4aee02695a
BLAKE2b-256 05c80b1d16b44e7fc37a500e6fc3835e9f950d969475f4ab107a64bb5643e40c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ddd1aca6aab4dc665933e949c43356b550c54a76629e1a1399d4a4459fac774a
MD5 de2426efdd53248c080fd1d67b464268
BLAKE2b-256 75c386fe32386bd2ab9cda3bb3fc88674324b828fb2587f72183e3157bf1a594

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2d4cfc9683b3ed1c407fc7278e9a95c72fc6713ec795c4a521e58e93b7e6d5b
MD5 8aa2508a1267081a63dc944e97687b0e
BLAKE2b-256 531bf0298a722f66f2f6766108a7d9d7f5c56a006d727cbbb38ad253631c570d

See more details on using hashes here.

File details

Details for the file biopython-1.75-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.75-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 faa3d95809e1a98011f58ab6bc32d04cf5b7e780cdd89529445c49130649323b
MD5 47ed65e9c9c128808159863459415e7c
BLAKE2b-256 e104cf6190fe41a366acdd89660eb8e93b7d9ff669d0b0e8d11b7d5c7ce81732

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5e30f4fa8aafd8000eca300c0a1a8f5266bb21dd066a4481824741888a705df9
MD5 ccce6b2e2ffa9ab537f1fe9d8ad73c16
BLAKE2b-256 06c2ce4f74ce5dd00f02189b3abf3cfce138f615c285d56f65d69cc994162f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c2488d8567847ac5ee3577b22f1d08f3a53aeb6f76f17520604f92f6064e6c64
MD5 9af369e87c245ba752d2217e99cfd5a2
BLAKE2b-256 5184b13de4219c6e16a3abdee05cfc9b94918f57f95aed0a0480ee2ee97e4f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2654c854f47c0cd309581504c82df35df1901658366225e11b8536f5324dfc16
MD5 fee71dd3b7e55590ba47f609cc955311
BLAKE2b-256 96017e5858a1e54bd0bd0d179cd74654740f07e86fb921a43dd20fb8beabe69d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 055d95a566aa61d59abe62e987a119a3f687e247ef6ff55097d1571a505e6126
MD5 f0ef87118ed1abcb7624d7f4d0000923
BLAKE2b-256 997bbadf3796c65dc161c0e22ef3858a941e30cea15e95325e9d2135450c50c8

See more details on using hashes here.

File details

Details for the file biopython-1.75-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.75-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 5d61aca91a4e88ee8cbc0f896f951d5799c23987c2470768354198b9ab98a9f8
MD5 62906257ac5262df8c24b618ee9c93e4
BLAKE2b-256 75f6182980b81e4dee2b8e9ebf35bb36ccfc33ca4c65a00032ed98859d74f869

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 036d9cde523edaf72c8e2b207c0ce80ef45d57eedd4297fa19e36b9ef49527b9
MD5 c6f1fa8223dc4698a33e6e243efdd5e8
BLAKE2b-256 a3791b1009677a46db22534e38f185ef769ee901680ab31bfca68aca9485027b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 ad24b02020ae69ee0e59ade3509af83eb119bdc3a84d7b7695477096994d7cc7
MD5 424d0fe40aac3026e377c32d406871a4
BLAKE2b-256 01518ba179b111c0d0beda1a924334b3e5ad3bad49b3c66b6b05c77c05332946

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c29b2c268574d90bdfa1e5d3c1c9b52083350a08a3ce6e7907676a1ac873aac9
MD5 fe6b5f3ec46605ae60721238638c5451
BLAKE2b-256 74e422727a6fdf5427960af784328ac5c0935728731ac3daf69af99e1fadcac2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cd9e6bfcf1f758a4e1fa727cac5a9e0a2d9d007bb74423c7fda4c402cb46965
MD5 e45fc8f7023ec0c6b7a2b01625d6fa06
BLAKE2b-256 4b53801e8c6d85c7d01ff73343097269594e8717933653b160d6f2f5ed000db9

See more details on using hashes here.

File details

Details for the file biopython-1.75-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.75-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 004ff16d5303dae2c99b83afc3c31457cdba3b35d795c70665eca1dd5cd27758
MD5 22dd4f8894b77429aa0e86ea10853cf5
BLAKE2b-256 3f8d209c1953bf288914e6c716a857b9ea55a2fac1db521295ab5b1beb8ff402

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 076b24b0da176f07f15b1f23894f6f486350f3cb757a793c2932346dc0bef712
MD5 da52770843c9aec568cc0e1dff6aea89
BLAKE2b-256 712e9af47e1ee665ce640933bb4c5eab3fd72ad0f2055a7f9fc53ceed7a04e83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3

File hashes

Hashes for biopython-1.75-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6dd5d66082f5d6844ddb6be91475f61b1b959f34bb6e399e47c0c7adeaa18d25
MD5 ba6680789e93f9451a07b4eac538eb8b
BLAKE2b-256 19f2754b054560d3eb77956d726db7f9d7c3572d5d0e35b7c623d2ab69cf223c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-cp27-cp27m-manylinux1_x86_64.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.75-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c3f28921aa7dde0b0a81b6fbdca56aaf99e535d3589ae3257f042d6b657564a
MD5 cb8f71202a6bfb186cc36c0ae31f2d28
BLAKE2b-256 eeaad119dd2b7c15c324ec061cbf29c24a4bae94d3b554f779c3bd346e4e564f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: biopython-1.75-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.75-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0cd7f1eb199b203f92e51b05f232d0b215e3918faabd0dcd07de590e5cbff53
MD5 9e829e4bd1881321fc194bd7e25f97e9
BLAKE2b-256 6df6fdecfb5a4982685b8583bad378406e7eae2c9404c8eb6b1ea70e445263ec

See more details on using hashes here.

File details

Details for the file biopython-1.75-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.75-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 1a32a009fac153a319eac7736b9072f17de88d44160c41c32f252a2154f469f7
MD5 08e9aae48fc974bb6222debfd593a79a
BLAKE2b-256 55fe3c1ecd4fa3a4ac1c981ebf948a189d702b77aa842bf879ab460eaaa934ce

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