Skip to main content
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 https://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.13 from https://www.python.org

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

Optional Dependencies

Biopython requires NumPy (see https://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, or MSVC on Windows. For Windows, you must install the ‘Visual Studio Build Tools’ and select the ‘Desktop development with C++’ workload. For 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 . --group dev
cd Tests
python run_tests.py

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:

cd Tests
python run_tests.py --offline

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 . --group dev
cd Tests
python run_tests.py

If you want to skip the online tests (which is recommended when doing repeated testing), use:

cd Tests
python run_tests.py --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 https://biopython.org and join our mailing list: https://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.

  • pyproject.toml – Project metadata and build configuration.

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

Release files for biopython 1.88

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for biopython 1.88
File Size Uploaded
biopython-1.88.tar.gz 19.9 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for biopython 1.88
File
biopython-1.88-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
biopython-1.88-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
biopython-1.88-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
biopython-1.88-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
biopython-1.88-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
biopython-1.88-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
biopython-1.88-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
biopython-1.88-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
biopython-1.88-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
biopython-1.88-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
biopython-1.88-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
biopython-1.88-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
biopython-1.88-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
biopython-1.88-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
biopython-1.88-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
biopython-1.88-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
biopython-1.88-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
biopython-1.88-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
biopython-1.88-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
biopython-1.88-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
biopython-1.88-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
biopython-1.88-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
biopython-1.88-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
biopython-1.88-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
biopython-1.88-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
biopython-1.88-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
biopython-1.88-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
biopython-1.88-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
biopython-1.88-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 136.8 MB

Release files / biopython-1.88.tar.gz

Download URL biopython-1.88.tar.gz
Size 19.9 MB
Tags Source
SHA-256 checksum
How to use checksums
9aaa31c0bda4d059f7b2ee00bfdb5cbb73ade3057aa4b737a7cc0187091d071a
BLAKE2b-256 checksum
How to use checksums
f6a0cf657d076ec56a5f9e5c29a560c1f97b8eb6ae6608dc8bc95b4e2437f129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.13

Release files / biopython-1.88-cp315-cp315t-win_amd64.whl

Download URL biopython-1.88-cp315-cp315t-win_amd64.whl
Size 2.8 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
abeda1d57624b82476be498259dbc4531a1957bb1d77c80fd986adaa44f1b406
BLAKE2b-256 checksum
How to use checksums
2b4ab2dd85241aa8f5fd6829a14dfc7f856364ea0b2ef4278b3193ebcf03db69
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315t-win32.whl

Download URL biopython-1.88-cp315-cp315t-win32.whl
Size 2.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d879c732e0dee158cebf09047fa616451fa30f3abcab4105e3ce5cd336571147
BLAKE2b-256 checksum
How to use checksums
5e8b52621790e15fcd311cd6c4888ed975c5981548d0410fb73c4ff24cf7fcb6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0063aea2051a99b2f278dd8bef23d5eca3f50eb922fb72d4a99678484bae043d
BLAKE2b-256 checksum
How to use checksums
826757ec078766b72accf551b633425ead42997f43a2fd1bdf878de73b19317e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f300ef2db3d3fd33631364fe3f83a64d281d255dd0e8182feb8e3db9e290ce32
BLAKE2b-256 checksum
How to use checksums
378bb17a994e6976196be88a466d095cb4618b65ad42057839e237dcf162c81a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315t-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp315-cp315t-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e800cacbf8e240105338f8eb52e92a00cd0103881d3cdf1798e89130cf878ed8
BLAKE2b-256 checksum
How to use checksums
1e5dcbc3f5f1be83c86d396f65b1c07460de1082695c7656dd10e3ae1fc9d03b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315-win_amd64.whl

Download URL biopython-1.88-cp315-cp315-win_amd64.whl
Size 2.7 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
d4180714488d2ac6418fd42c445d1cda71fdd85ff71ad6748e7a312fa944e138
BLAKE2b-256 checksum
How to use checksums
bf4f1829f778b00025b515e25edac58304e0b1262a22c492602693953e1e028b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315-win32.whl

Download URL biopython-1.88-cp315-cp315-win32.whl
Size 2.7 MB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
277b54f1b804a74df1eb7f0fe8f6d6a1eda15bc78a94802c000f5f0a20ce4fdc
BLAKE2b-256 checksum
How to use checksums
30b5ae077075d09dc030c78f62a2b92af7da82da92d3f6d45768139e323c4893
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9e6e675ff0ecd0822735c9da0b7091eb29a757279bc810039890ae1f54f18fdd
BLAKE2b-256 checksum
How to use checksums
4e2bcff50cfebfc5df04e4926b0ead36eb95f851cc19db321b34a043a8a5c67d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1c5c795fed9469b1115fd00d7681f4953a2d54ec502715720d11fe986678fa1b
BLAKE2b-256 checksum
How to use checksums
c7e23b6bfb56d8e16a78b2205072f1db6ba07a3fd16b441bb5fb5a13d0cc104a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp315-cp315-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp315-cp315-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f238b612f15166c6a3c869f833b5aa6c0dd448dabb1d4b94b132281de3e91cab
BLAKE2b-256 checksum
How to use checksums
2d941efcc2d8f24c692ea624372fcecbc3884b1460eb37035dd491c2001c39cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314t-win_amd64.whl

Download URL biopython-1.88-cp314-cp314t-win_amd64.whl
Size 2.8 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
f684b0fddbfe3b37de36d1b377c4c10d968226940c307a5a16e360e63063900f
BLAKE2b-256 checksum
How to use checksums
d185d799c829931a88de300a0546464d33ad11364e31e5289d218fb0eee18435
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314t-win32.whl

Download URL biopython-1.88-cp314-cp314t-win32.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
1e29b72bb79786f4157b394fbd852d736ffd883a13a177c21d6d15ea1b67d357
BLAKE2b-256 checksum
How to use checksums
e4dcbc9e822944f3b2171ab3cbe0418f87cc4e292ebd77f51e61b0284d89a14f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
adbafdc7769d46cc9e72aba86b7e2da3aa078d2a533b53757ca88ca6ff1d0489
BLAKE2b-256 checksum
How to use checksums
b95b1b8c3d50873f92550a34cbc269fbde4b6bf42a4bff3761c60ed127325354
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ab5c2211a9d1ad7d4b8afd7f53caa7f20e104a5ddf0b30f7cb899f039379de68
BLAKE2b-256 checksum
How to use checksums
bf087a6118ac4eadcb573a07ae6e258b569bc07e3d2f707ec3bb3eee4694a4f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314t-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp314-cp314t-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
393398c8383217f3f51aaa2372960e697b494a3eee97e1c4d5f62ee60ea9287b
BLAKE2b-256 checksum
How to use checksums
70ea35c64533a673feef289f029907fac44d2c703635e7874efbb32c0add34f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314-win_amd64.whl

Download URL biopython-1.88-cp314-cp314-win_amd64.whl
Size 2.7 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0b8fea4940c58915e6d4c670f17f4e9c20797e9e26d4300b6efbe960b99d199d
BLAKE2b-256 checksum
How to use checksums
7734ea155a75d0a9748a85c14fb4ba141d01e28bf76f210a539095cee6457442
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314-win32.whl

Download URL biopython-1.88-cp314-cp314-win32.whl
Size 2.7 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
b86c1e86c829b372995d5e0eb80146551972a1bff25da1698b48844b6e6840cd
BLAKE2b-256 checksum
How to use checksums
b1b6d3a66f7957a635fcd45e5b82a2d9f9cdfe9d764acbc8c649acdc5e6328f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
99144485e7723842fe6c6bb0c13f323a550fc30817d3e0814126987f9b06855a
BLAKE2b-256 checksum
How to use checksums
c2d92447f03967528710da972e729731035e52c1b257f8af12c8dfcff226218d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8ffa3f911a8ded827663bb98ffcd5fcfcaed2c7262bf6d3be5338332c81c7b66
BLAKE2b-256 checksum
How to use checksums
9b8982a398cbf2cb4b161e4bc6885cf663c2d2593194cf02896ccc83cdaaba33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp314-cp314-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp314-cp314-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5508f8f585d101269982d58abb4ab50cbde5d3c50e21b01986c55ac7cc5f34f9
BLAKE2b-256 checksum
How to use checksums
5a68eb7bb4b642d7c6cfb65da801a71c89d1d207caf51b05b1819defae3f44cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp313-cp313-win_amd64.whl

Download URL biopython-1.88-cp313-cp313-win_amd64.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f0aaf49f0c8919fb7a02cdc3db9e7f89165f53417a18d80508e0f167121cb7c1
BLAKE2b-256 checksum
How to use checksums
db803890552b57771e87ba8f4d7936ad6a9074252fcc615d1a8599c977a4bed4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp313-cp313-win32.whl

Download URL biopython-1.88-cp313-cp313-win32.whl
Size 2.7 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
e3ac69b8abddac75dce301cbe77fc2650cbe0bd62ab2d2662d0f6f378b8c8018
BLAKE2b-256 checksum
How to use checksums
e450f3089c4f36d9d877475bfd2cb0d066b0a6be638aae7238be136d890a433b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
410eaa083fcc308b44c7051e597ae2f39e4068754bdd605cc32aed025aa132d0
BLAKE2b-256 checksum
How to use checksums
309b1075a762fc3595d4b8ca688246be9f9ca68a29d0c05c336197670fbc7eff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
df709eabdce2fc2cc1059fcefbbea245d2b2c41fc2026eda6194b810474e68d6
BLAKE2b-256 checksum
How to use checksums
2866c3d6060ee8b08af4118817fe5ac455f1faf776c26e9c08f2d0232c687a72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp313-cp313-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp313-cp313-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
465caece761b9ec22e0dc63bb5969517c901587a27104c4f1cee69f414b4df2d
BLAKE2b-256 checksum
How to use checksums
ae9a333f14a9228f5dc702d8a7570482e096b8503d3b6679054772b79cf05358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp312-cp312-win_amd64.whl

Download URL biopython-1.88-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
dd5131b70287486af1acef2fc40de51c68de2ea740ab772097ac2d10bad9a0b5
BLAKE2b-256 checksum
How to use checksums
9e4c99ab6a00038e15f88e02992986225f57b1c675d1ad8bc8e5271d34c47c0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp312-cp312-win32.whl

Download URL biopython-1.88-cp312-cp312-win32.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
4904abb18a1e039a631e549529c9b8123a166838cafe27f649f83f0183382d61
BLAKE2b-256 checksum
How to use checksums
8dbafae2eddf1f7aaf149a2a51663853bcc9d80381b9c03ab4d8b56557f58c75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9384c30460832926e765319040d732d1252a713a05af1dd4cc8b19cb1d590439
BLAKE2b-256 checksum
How to use checksums
17c2613ca5f729b55b2f7a9c17a3cd59d3f053ee2816da2d19933acc6b8741ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fe2dccf88e309dc896e7c2cc974a47be7a7b96d59c7f2ffd74ffcc7cfbdebb0c
BLAKE2b-256 checksum
How to use checksums
aea8aaf7e3d1302cdbe9ee9261861b75a891d6de8de02e1fadeff1ea623687be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp312-cp312-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp312-cp312-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
43ce1fbed01c0ddb903fa426fa0f836062d973a09df15560ac8e895da24c1350
BLAKE2b-256 checksum
How to use checksums
83b4fbd2f53d06bd2c98d7f52da05a1d4cc838e4921ca6daa839a30d72d89256
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp311-cp311-win_amd64.whl

Download URL biopython-1.88-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5808c5b980e63226426737b6f71b5dd7747e2e3d0074720cc04edf348ab57eab
BLAKE2b-256 checksum
How to use checksums
90ea479bdfd4799801bbe2c990bbd38517f84f4b454460454d874db16ff98c63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp311-cp311-win32.whl

Download URL biopython-1.88-cp311-cp311-win32.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
024e438d044a0b1d4a0157af4ab2411b83389696aee3cdeb71f5ee74d0a59df2
BLAKE2b-256 checksum
How to use checksums
02676fb95df7d811f9028088d0e2f771dfeaf1916a5d4236c9a408acc0480b70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
99e1f7022ab8eee2ae9e9a05b66ad183b9fe4eeb4e561a65ed0fd85eef5f8267
BLAKE2b-256 checksum
How to use checksums
83395da166f2152ef43eae6c0a3976898d90e2e0065d010be174ca1460346c49
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
906a7b2d4bc4515f5718f3ae994bd3bcfe8e87d963954008b57e0109e3772a58
BLAKE2b-256 checksum
How to use checksums
2f71d98fdce67942d93b9824cf4e47e4a5c126ecd9a94e5a082eacd0d2646f21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp311-cp311-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp311-cp311-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
793de1a57d9b75546a4041f547b6a848031a71933f66d4c761857b0b0118c46b
BLAKE2b-256 checksum
How to use checksums
33f7caf900dbc48ec6c338f156fb1354fb8a78e17221fb9f0d6272d24324ac6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp310-cp310-win_amd64.whl

Download URL biopython-1.88-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0e732f44208f1bab7c42bfea94422609249bd897da6b25b5588618436e80a6d2
BLAKE2b-256 checksum
How to use checksums
2ee2a012d3df653fdb02f6388a0cbd74788893686d56fcdbf3cb6126944e3a1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp310-cp310-win32.whl

Download URL biopython-1.88-cp310-cp310-win32.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
99288eb34ce75cb85a10ab3e5d76ffe45f0c03c7f5cc6d144d3777419e44b31e
BLAKE2b-256 checksum
How to use checksums
2397d7c82acb2899629b5c6784ef30bdc72f97edc54303640fce8b52bd0afcb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL biopython-1.88-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 3.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b321ee0f652aaecefe065b11d64b527c4d04f7826dfb7cfa31edea5ab1db07c2
BLAKE2b-256 checksum
How to use checksums
60d47ac6f119c1699348538f4cf2bc118cd1216ed58b65a0ca0343f36e33f8b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL biopython-1.88-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
02a6d8ed4eea1ee9e1c2a9d7690f21a60406bcfee7c71348363e267cce397bee
BLAKE2b-256 checksum
How to use checksums
afedb624a5ecb8c11b0d0ed7ae7f7c4d39663d72c8351808ecae3288c92b123c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release files / biopython-1.88-cp310-cp310-macosx_11_0_arm64.whl

Download URL biopython-1.88-cp310-cp310-macosx_11_0_arm64.whl
Size 2.7 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9732e2c74b1e3751810b026e568817afb18101039c30c9b16b9193e40ec1efdb
BLAKE2b-256 checksum
How to use checksums
f99d2a2f88a3315a1cd77fd94c297ac9f2fc323dee8e41c43c423edf108fca20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.12.7

Release history Release notifications | RSS feed

This release

1.88 This release

41 release files

1.87

31 release files

1.86

47 release files

1.85

32 release files

1.84

25 release files

1.83

27 release files

1.82

22 release files

1.81

28 release files

1.80

24 release files

1.79

39 release files

1.78

25 release files

1.77

16 release files

1.76

25 release files

1.75

26 release files

1.74

28 release files

1.73

28 release files

1.72

23 release files

1.71

23 release files

1.70

23 release files

1.69

1 release file

1.68

1 release file

1.67

1 release file

1.66

1 release file

1.65

1 release file

1.64

1 release file

1.63

1 release file

1.62

1 release file

1.61

1 release file

1.60

1 release file

1.59

1 release file

1.58

1 release file

1.57

1 release file

1.56

1 release file

1.55

1 release file

1.54

1 release file

1.53

1 release file

1.52

1 release file

1.51

1 release file

1.50

1 release file

1.49

1 release file

1.48

1 release file

1.47

1 release file

1.46

1 release file

1.45

1 release file

1.44

1 release file

1.43

1 release file

1.42

1 release file

1.41

1 release file

1.30

1 release file

1.24

1 release file

1.23

1 release file

1.22

1 release file

1.21

1 release file

1.20

1 release file

1.10

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page