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 pre-commit.ci status Linux testing with CircleCI Windows testing with AppVeyor GitHub workflow status Test coverage on CodeCov 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.

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

Our user-centric documentation, The Biopython Tutorial and Cookbook, and API documentation, is generated from our repository using Sphinx.

The NEWS file summarises the changes in each release of Biopython, alongside the DEPRECATED file which notes API breakages.

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

For the impatient

Python includes 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, macOS 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.11 from http://www.python.org

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

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:

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:

  • 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 package).

  • 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:

pip install -e .
python setup.py test
sudo python setup.py install

Substitute python with your specific version if required, for example python3, or pypy3.

To exclude 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:

pip install -e .
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.85.tar.gz (19.9 MB view details)

Uploaded Source

Built Distributions

biopython-1.85-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13 Windows x86-64

biopython-1.85-cp313-cp313-win32.whl (2.8 MB view details)

Uploaded CPython 3.13 Windows x86

biopython-1.85-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

biopython-1.85-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

biopython-1.85-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

biopython-1.85-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

biopython-1.85-cp313-cp313-macosx_10_13_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

biopython-1.85-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

biopython-1.85-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12 Windows x86

biopython-1.85-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

biopython-1.85-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

biopython-1.85-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

biopython-1.85-cp312-cp312-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

biopython-1.85-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

biopython-1.85-cp311-cp311-win32.whl (2.8 MB view details)

Uploaded CPython 3.11 Windows x86

biopython-1.85-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

biopython-1.85-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

biopython-1.85-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

biopython-1.85-cp311-cp311-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

biopython-1.85-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

biopython-1.85-cp310-cp310-win32.whl (2.8 MB view details)

Uploaded CPython 3.10 Windows x86

biopython-1.85-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

biopython-1.85-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

biopython-1.85-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

biopython-1.85-cp310-cp310-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

biopython-1.85-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

biopython-1.85-cp39-cp39-win32.whl (2.8 MB view details)

Uploaded CPython 3.9 Windows x86

biopython-1.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

biopython-1.85-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

biopython-1.85-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

biopython-1.85-cp39-cp39-macosx_10_9_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: biopython-1.85.tar.gz
  • Upload date:
  • Size: 19.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85.tar.gz
Algorithm Hash digest
SHA256 5dafab74059de4e78f49f6b5684eddae6e7ce46f09cfa059c1d1339e8b1ea0a6
MD5 3b91ce61ec22da40b59e5aa2d13885ea
BLAKE2b-256 dbca1d5fab0fedaf5c2f376d9746d447cdce04241c433602c3861693361ce54c

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: biopython-1.85-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1b61593765e9ebdb71d73307d55fd4b46eb976608d329ae6803c084d90ed34c7
MD5 6ef64868b1bd6276924b58106d603014
BLAKE2b-256 60fffe8f03ac0ccc7219e0959010750c6ac1a5b1411c91c7f4ec3a37d8313673

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-win32.whl.

File metadata

  • Download URL: biopython-1.85-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5a236ab1e2797c7dcf1577d80fdaafabead2908bc338eaed0aa1509dab769fef
MD5 afd539a166da0c06db6172b927c307c1
BLAKE2b-256 9d8c73da6588fab3a7d734118f21ac619c0a949f51d3cf7b1b8343d175c33460

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327184048b5a50634ae0970119bcb8a35b76d7cefb2658a01f772915f2fb7686
MD5 a3d9bc055ed96d6fac11b3cf1144a1bb
BLAKE2b-256 9ea4552f20253a7c95988067c4955831bd17dd9b864fd5c215d15c2f63f2d415

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86e487b6fe0f20a2b0138cb53f3d4dc26a7e4060ac4cb6fb1d19e194d445ef46
MD5 91544be1385b9ab89ba7257504159e6c
BLAKE2b-256 5351bec4c763c704e2715691bb087cfab5907804a1bbef5873588698cece1a30

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 66b08905fb1b3f5194f908aaf04bbad474c4e3eaebad6d9f889a04e64dd1faf4
MD5 a556b3398d3ae61f5a274e322ede521c
BLAKE2b-256 97f46dfc6ef3e0997f792f93893551d4a9bf7f6052a70d34f4e1b1e5e4a359f6

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e4918e6399ab0183dd863527fec18b53b7c61b6f0ef95db84b4adfa430ce75
MD5 7511114e5bfbc2d2dfd9feea21a01340
BLAKE2b-256 be611443ce34226e261c20ae4a154b2bab72c109cf31415c92c54c1aada36b00

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bae6f17262f20e9587d419ba5683e9dc93a31ee1858b98fa0cff203694d5b786
MD5 6ed217502c58fdd5e3e4c2e828b17d42
BLAKE2b-256 c33f65814bf221f0bfdd2633830e573ac8594794686f54110571dce98cc32fd3

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: biopython-1.85-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6f8efb2db03f2ec115c5e8c764dbadf635e0c9ecd4c0e91fc8216c1b62f85f5
MD5 dec3c2a38badfc2f13823ac8efa0f014
BLAKE2b-256 c184c583fa2ac6e7d392d24ebdc5c99e95e517507de22cf143efb6cf1fc93ff5

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-win32.whl.

File metadata

  • Download URL: biopython-1.85-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6985e17a2911defcbd30275a12f5ed5de2765e4bc91a60439740d572fdbfdf43
MD5 5b6ca742652e939bf78f85f2cdd39cfd
BLAKE2b-256 0751646a4b7bdb4c1153786a70d33588ed09178bfcdda0542dfdc976294f4312

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d024ad48997ad53d53a77da24b072aaba8a550bd816af8f2e7e606a9918a3b43
MD5 e970b7ef49259778c09a653b6c7ad887
BLAKE2b-256 b40db7a0f10f5100dcf51ae36ba31490169bfa45617323bd82af43e1fb0098fb

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e54e495239e623660ad367498c2f7a1a294b1997ba603f2ceafb36fd18f0eba6
MD5 f9b24a33831a62756111c2e8140f51ec
BLAKE2b-256 690a9a8a38eff03c4607b9cec8d0e08c76b346b1cee1f77bc6d00efebfc7ec83

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe47d704c2d3afac99aeb461219ec5f00273120d2d99835dc0a9a617f520141
MD5 a73a43399f9e6197a621d9c29c430255
BLAKE2b-256 545b8b3b029c94c63ab4c1781d141615b4a837e658422381d460c5573d5d8262

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc5b981b9e3060db7c355b6145dfe3ce0b6572e1601b31211f6d742b10543874
MD5 bb828863fd0308a1fc9ca9e8624f93ad
BLAKE2b-256 a325e46f05359df7f0049c3adc5eaeb9aee0f5fbde1d959d05c78eb1de8f4d12

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: biopython-1.85-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3c99db65d57ae4fc5034e42ac6cd8ddce069e664903f04c8a4f684d7609d6fa
MD5 2b8d4973c3994ada8b08205d888961f4
BLAKE2b-256 f2113c4e8c049b91998bbbd51ddebc6f790b1aa66211babfbf5ff008a72fb1f9

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-win32.whl.

File metadata

  • Download URL: biopython-1.85-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf88a4c8d8af13138be115949639a5e4a201618185a72ff09adbe175b7946b28
MD5 168e9555611822183f728008f2768974
BLAKE2b-256 a177316e51dd42fd8225429574a268bdc627ce4f42067a3976c4c8c457a42023

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0cec8833bf3036049129944ee5382dd576dac9670c3814ff2314b52aa94f199
MD5 35e9380da38c4d96a42a0891c75684b4
BLAKE2b-256 259c612821b946930b6caa5d795cfe4169ed6a522562eced9776914be7efaf21

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5916eb56df7ecd4a3babc07a48d4894c40cfb45dc18ccda1c148d0131017ce04
MD5 5a4cb424b8ebe02f32da34b94625e8a4
BLAKE2b-256 b1ddbe3e95b72a35ee6d52c84412e15af828951e5c69175080d4619985fd54ce

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e2bbe58cc1a592b239ef6d68396745d3fbfaafc668ce38283871d8ff070dbab
MD5 4ee8bc61a83a97a4357b82823ed5fc2a
BLAKE2b-256 ffcf299524e896fa49beb7588143e1509cce4848572215ebafb8eea83a861820

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db8822adab0cd75a6e6ae845acf312addd8eab5f9b731c191454b961fc2c2cdc
MD5 e021daa8ba452a795ca0b8480f35adba
BLAKE2b-256 c373c3a1323a3fe0d07212b09c04fb903e2cbb98aebfbb58e55e8717473e1bc0

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: biopython-1.85-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7c8326cd2825ba166abecaf72843b9b15823affd6cec04fde65f0d2526767da4
MD5 7950872b35cd31d340d6ad86dae4ec94
BLAKE2b-256 32a4f20d5830dbd8654c13e763daef429fa32ef0b2b09749ac427d045cc81976

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-win32.whl.

File metadata

  • Download URL: biopython-1.85-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f2f45ab3f1e43fdaa697fd753148999090298623278097c19c2c3c0ba134e57c
MD5 bef5b4bbd176d171445385611f5ee7fe
BLAKE2b-256 682c0035656dbe51ac0bbe81321172b43c37b38408f8d136abaac443e9f44b62

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d93464e629950e4df87d810125dc4e904538a4344b924f340908ea5bc95db986
MD5 a19b79a13f163196a6cd659bba3e6519
BLAKE2b-256 ae6be7a5ae49ef7e8f81720593db22e884c1c8e3504e0e235da0395758a5c7d0

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a08d082e85778259a83501063871e00ba57336136403b75050eea14d523c00a
MD5 768ec1e1c2cf66a6d75890d91eceb599
BLAKE2b-256 ffd734233c4ee906b088b199eb2af9c4107384a547d44b5960257ef2bf2cc3c8

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 434dd23e972b0c89e128f2ebbd16b38075d609184f4f1fd16368035f923019c2
MD5 23c9eacfd2a419578bc3dc17e3e59823
BLAKE2b-256 4bd63c90df2ebc4f2a522235f4391392253e528f19f5fb6a52396a2316e17064

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6308053a61f3bdbb11504ece4cf24e264c6f1d6fad278f7e59e6b84b0d9a7b4
MD5 4ad6bcd60ef2008b36c44deca8e946e1
BLAKE2b-256 79de79824470fdc5c2aedeb1bab637d24eab654a7e9fbb7070f779fd944fd1ca

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: biopython-1.85-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8208bf2d87ade066fafe9a63a2eb77486c233bc1bdda2cbf721ebee54715f1bf
MD5 71ebea59fd7b6107e92853df5436bb7f
BLAKE2b-256 4a469cb732167a3ce4fd40920d1bec444d1739aaf18b58190f2fab8692fcaba5

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-win32.whl.

File metadata

  • Download URL: biopython-1.85-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.14

File hashes

Hashes for biopython-1.85-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ffb03cd982cb3a79326b84e789f2093880175c44eea10f3030c632f98de24f6
MD5 8ac8aa6d102c0f1466c9d1b65827c873
BLAKE2b-256 901da38a9a61abd4a917fb9b95698971914d722e75027885bdb957b0fe757cd5

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a630b3804f6c3fcae2f9b7485d7a05425e143fc570f25babbc5a4b3d3db00d7
MD5 f595e525bb2335cd73333f78e4f90aa7
BLAKE2b-256 805a6ba0066b7f38b9e7a085f2fc4c171a25ebfa64202aab0965961621f561e1

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cffc15ac46688cd4cf662b24d03037234ce00b571df67be45a942264f101f990
MD5 e4afce2c71746dc4574cf65aca583b9e
BLAKE2b-256 944920f55dcfcc5487d84a6a4c84b59bcfb7ae2610f7370847b07e63e0f79cc6

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8469095907a17f156c76b6644829227efdf4996164f7726e6f4ca15039329776
MD5 34c7fad53945a2020158fde73f57715c
BLAKE2b-256 a49bbef7dd17980eb4625c3c69411d3273e9b45d83dc7e2f1c63719607fa1026

See more details on using hashes here.

File details

Details for the file biopython-1.85-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for biopython-1.85-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d76e44b46f555da2e72ac36e757efd327f7f5f690e9f00ede6f723b48538b6d5
MD5 a84f00b12546b458e759b7fa5d88aab5
BLAKE2b-256 b3049bdf0003913803d3d2239785f0f53875694dd441bd5e1a8c1581cab37747

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 Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page