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.6 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 – 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 are 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.72.tar.gz (16.4 MB view details)

Uploaded Source

Built Distributions

biopython-1.72-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

biopython-1.72-cp36-cp36m-win32.whl (2.1 MB view details)

Uploaded CPython 3.6m Windows x86

biopython-1.72-cp36-cp36m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.6m

biopython-1.72-cp36-cp36m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.6m

biopython-1.72-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.2 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.72-cp35-cp35m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.5m Windows x86-64

biopython-1.72-cp35-cp35m-win32.whl (2.1 MB view details)

Uploaded CPython 3.5m Windows x86

biopython-1.72-cp35-cp35m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.5m

biopython-1.72-cp35-cp35m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.5m

biopython-1.72-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.2 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.72-cp34-cp34m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.4m Windows x86-64

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

Uploaded CPython 3.4m Windows x86

biopython-1.72-cp34-cp34m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.4m

biopython-1.72-cp34-cp34m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.4m

biopython-1.72-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.2 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.72-cp27-cp27mu-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7mu

biopython-1.72-cp27-cp27mu-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mu

biopython-1.72-cp27-cp27m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

biopython-1.72-cp27-cp27m-manylinux1_x86_64.whl (2.1 MB view details)

Uploaded CPython 2.7m

biopython-1.72-cp27-cp27m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7m

biopython-1.72-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.2 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.72.tar.gz.

File metadata

  • Download URL: biopython-1.72.tar.gz
  • Upload date:
  • Size: 16.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for biopython-1.72.tar.gz
Algorithm Hash digest
SHA256 ab6b492443adb90c66267b3d24d602ae69a93c68f4b9f135ba01cb06d36ce5a2
MD5 418fecc41f75353fde30de73586900ac
BLAKE2b-256 f03cab5783b5d2cb4ed566abcd9335e90b13ff57c4fcc93fd08bda5dfded2fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5e0b830ff270b16abf1f050a8bf4732c9f2da29d27fdd2be9aeab76b6d087919
MD5 acdf4e57da4fc90bf7c52c76c2bf4182
BLAKE2b-256 93db370ec7aad1a8d45d4d2d6eb42fc89bc19c230ef5893b72861469275f6377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d3c7ba7b0ffb3dd5132093d4fb21782daccc0e41358e5887676c455e1ae841c9
MD5 4e0d4de83b89d632a5dad9ee417306f2
BLAKE2b-256 59251f27e85f6462b4ae4f2b112715f174b4bc370341f0adf2f63bb5acd43052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6d27eb0fda18f2f70661bcd498f2aa0148ce56953aac094c35d8a12fb8261482
MD5 8259fbf571b15dc05f0405b5e99394ce
BLAKE2b-256 641aee21f05bd9d5e215bee7204f4d0280a8de0323ac1c51aa5a911b2436de9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d8e56e46cccc38fb8ac026e70f700528f0d5e6f264d03f9c348fb81dd7e65b6
MD5 49fd975593798f0d7a293ebe327f800e
BLAKE2b-256 a8f1dd0111685e8b1b055a1b61ed23e1a972e3786e811d738b12d979248b9be8

See more details on using hashes here.

File details

Details for the file biopython-1.72-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.72-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 2fbfe0f2d7b731b638c41466987cf00e36e08502b3db2b2d72beb9cbb79097e3
MD5 dab6b61605938b75eef18fa9cae944da
BLAKE2b-256 6a22c5b6e425d7ed86a52fe10be670b95513b43e0853908d70a984d9a68a9945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 db3517d654c2ca81c57b2e4e5340650b55055eb3985e5732c5ec668cf70143f1
MD5 f043fa59e3fbd5d505599474aaed74b5
BLAKE2b-256 cc3179c0dfe82a8d0877d288ce5c09f69f77168071f9894a8f124e643bb3b768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 874a3c30bf7287e003e3668b55bd73a243edb85f4249826cff54b6fe3740483a
MD5 d76442d3fc18de8953936a6c5ef5a79f
BLAKE2b-256 d131b3433f00174f7600aac2b3400e9d9b2adbefcda044c4e3677060dd3edceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 539a475c263b68cd1ae3624648090bf1a5d853ec967d450e4cb991e63f72cb05
MD5 b883f5439353885224789b9e25107661
BLAKE2b-256 19ce6865387e2c04764fd9b189a06cfd1078df1e30e422ab5494bc4c09ba3838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 99faabef8c563bf5a9ed80ea677a5fd9edab5c06405a08fe44fb0f5bd4f6af38
MD5 75b83b673997dbae8a8fe1a6fa15d3e3
BLAKE2b-256 1bde69455325c19948ee9fb74a1382b7ca4eddf98a8fb7fc3ad275f893937b1d

See more details on using hashes here.

File details

Details for the file biopython-1.72-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.72-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 5882ba8fb87cbbe36d9e5d87c9b8f3139d503fe7da1023b472760a8122e579e6
MD5 bde20eb5d6abdaa6479113dc96690603
BLAKE2b-256 f3809c70d0b4feedff4e2fcee84a6530d9b4f35b4865223d8860df3bc23ff49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 defd163110d698ea534e470995c68c519bd56e4e23043ae9dd8b646f2a803e5b
MD5 848d5d53c3a6c60d9e94528e6cc35087
BLAKE2b-256 f15d4bf0e6dd1990b2bda277ebff2eff10c0aed3270a0eb87a2d73fbabc72744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 16a99e2462ee5acb6962f3a1d344336db58d7b87acf9d5023beb3efe6ebb47a8
MD5 1ea11554a42996491c847ae0cf36de97
BLAKE2b-256 c33843dafe6968e7a9bc80457ca921c8aa481140232cc9e2c38330a42a81834b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3a199d469465c4f3c4c238f688d07b9bce4f504be73dead6cdf5d36a47728fcd
MD5 d20e9cfa98ee8991b7008f64a44f6130
BLAKE2b-256 09ee506533672f1eb2172064172151ebce67e4df5bff3c083a9c2e7572dc49b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad2c72c289561d51f6f7a9ae977e9cd54cd48b575b946421f82ede1ac24198cb
MD5 50e8fc0e63ca3ad524ea8c5d237ed6b1
BLAKE2b-256 5091d08bf20a80fafcbd07721137559fe2899141d2260072c9c6b6693a5033e8

See more details on using hashes here.

File details

Details for the file biopython-1.72-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.72-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 b76241a55a1ba832c2768733fb113eef1fdfa1d738aa1f84fcdd4ba0b6432394
MD5 eed950f7b23a3c42682f3f635a135e57
BLAKE2b-256 eed67559650c25ed92314a0c448f96845bcef7da7eeebf2db6997463f2a9597e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 71762c193ffc9a1b936dfaa2d456fb172856f0952090483ee4a84635a1aa6fe3
MD5 a5a418d1c4b6a2e58ccb73bafdc60a3e
BLAKE2b-256 e53c1aae19dc685dab77ccd0adfded6bba93821619ad6c57766b349d61cbe61b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b426a2d858414bed0c25fca155fdf27485347ce6f69805db65b8b36ec00a0f41
MD5 13b4e63a2a4c97e3fefa5360425f5199
BLAKE2b-256 96926babd88f6139bfe08e6590a7b346beacc72dd085510aa1d1d73c2d423deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 3d3deb59c3f5d04d41aec443db4e89dbbdd0bb7749078f91e797935849c8db48
MD5 4978d56508b002591e7b6c931c5d54f4
BLAKE2b-256 3ed543f7178260773d77fb31942b17b07213d00828555890b02a3570900b2205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 57a449709df7a47980360ecbd2f195effc56e9b0253fa0e74fb00b10b44778e0
MD5 e6ca44a18b5fc65e7ca4267f877fd9cc
BLAKE2b-256 7638667fa17cc6b1a448082e0567832aaf974e063d75875a8fc9c169526ca69b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f1b4abd90d0c84ab2c5dab704da1d397cf75ee41f72619a1802479c3768ac347
MD5 d7eb8003d855b3b425e2d7b5062d390a
BLAKE2b-256 cdcc2b9833bfa63ca09fe024ff57ebfe4c5683844c10138d40b33e7185564848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for biopython-1.72-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e8c85d4a3295be598a9e9616adeed8a4f81bd0452326aaea7bf81cca468f7c1
MD5 a66e12a83c44ee50f01888129658eba0
BLAKE2b-256 d80b9bdcc0b19b6933cab67b2c3ac618470b5b14f72f0c1c5c4f2f8b68512723

See more details on using hashes here.

File details

Details for the file biopython-1.72-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.72-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 abc14a111ed89332c902d239f516cc9ab84ab4458b577c61208dc4c20b74dc83
MD5 661d50514eaa8151192b2127f52a8f5e
BLAKE2b-256 b3a2db0c332584cee4ab3438e2316be6e8b65785e202b41e44fc9af2452d0965

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