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.

Our user-centric documentation is hosted on https://biopython.org including our API Documentation and the main Biopython Tutorial and Cookbook (PDF).

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

Release files for biopython 1.82

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.82
File Size Uploaded
biopython-1.82.tar.gz 19.4 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for biopython 1.82
File
biopython-1.82-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
biopython-1.82-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
biopython-1.82-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
biopython-1.82-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
biopython-1.82-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
biopython-1.82-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
biopython-1.82-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
biopython-1.82-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
biopython-1.82-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
biopython-1.82-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 78.6 MB

Release files / biopython-1.82.tar.gz

Download URL biopython-1.82.tar.gz
Size 19.4 MB
Tags Source
SHA-256 checksum
How to use checksums
a9b10d959ae88a9744a91c6ce3601f4c86e7ec41679bc93c29f679218f6167bb
BLAKE2b-256 checksum
How to use checksums
237d55b8dc4a01bc951b3f6d60acd4eb4617aa22cc5a0d27037972f02e5d3844
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp312-cp312-win_amd64.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
762547037038d42c9ac98877fc32d4aeba798077129df7790cb178256171a4e5
BLAKE2b-256 checksum
How to use checksums
b6fa178d8b7788cd3441edac708168fbf34308eeccd441599f11ae106cdf7aff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp312-cp312-win32.whl
Size 2.7 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
54a9b200d4960ed2a4ec85faac2124ffa278afa58d22e07e2d15ca7509219ea1
BLAKE2b-256 checksum
How to use checksums
aa2c6a38636d8cf2514ad87d7a85e3d6839918e37c3f87071f2e87d95f9e15ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL biopython-1.82-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
49b829c2276a0711106663af632c7e203695a5cf082d488d6e10b8aca5ec63e4
BLAKE2b-256 checksum
How to use checksums
cb0607f5593ce919dbedef663bf0c158b7076110ff66ac5a43696db6f839eb4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl

Download URL biopython-1.82-cp312-cp312-macosx_10_9_x86_64.whl
Size 2.7 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
96f77bd6540683c8958e4ebf55b58e8caa26d20db72891915d06670b783e9cdb
BLAKE2b-256 checksum
How to use checksums
4967cc333a7753917edd9430d914b80062faf05a77aec1b4b1a141f474e15bf5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp311-cp311-win_amd64.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
40297d418bb142a7ea1a47faedc24bbe21b0ba455f3805373264470e5cb6ec5c
BLAKE2b-256 checksum
How to use checksums
bdc1188a08a15c3cd7fa1c788f473cba2ae0d6a53b0ada5e847a6dfad9dbc29a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp311-cp311-win32.whl
Size 2.7 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
ec35893b32458f6fa0c98d5f02d801a5fe76961ac66473455f51c0575562c594
BLAKE2b-256 checksum
How to use checksums
3661629f9cec5952bd10eae92fda4ffea6cf75a8ac078492b65027dc53602ce9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL biopython-1.82-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c7802b5033edaf34bd2fbd96b87f96999a6808caa0064c91087c7f1340624898
BLAKE2b-256 checksum
How to use checksums
f343eb145b22b99ef2ed1cdf5a1a41423017962ff34adc74ec93fe4155272b7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl

Download URL biopython-1.82-cp311-cp311-macosx_10_9_x86_64.whl
Size 2.7 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c9bc080b7dc6cd6acbf2576766136e8e54acbcc6b7a29ad8075cb5a73f4cfb97
BLAKE2b-256 checksum
How to use checksums
a9f983eb07c14e77d19a27def66f58a3d99b1b580814260b45107a81620876b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp310-cp310-win_amd64.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
0f3f685a2d85348b8c84c6eebe58a74cef7e1158ac52ae5aa91789436907f0e1
BLAKE2b-256 checksum
How to use checksums
d7b961f05c0935cf41faad9ee6b49a73ef8e9df831f33bafd96defb5bb2d487a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

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

Download URL biopython-1.82-cp310-cp310-win32.whl
Size 2.7 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
f53aff30f01ac9a8aa1fd42dab347a96ee5312945098dfa38f9a5125f6e913fd
BLAKE2b-256 checksum
How to use checksums
dc1ccb28f064b3def590d09f34e75af9315b73aa562c157abb19aa5e2a6b7853
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL biopython-1.82-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5bc908e84278bf61ac901a0c1b695c85ce49491957e0ab07e1e2afc216882525
BLAKE2b-256 checksum
How to use checksums
70eea9403105d0a007c783e0cf7eccc2fd3f69b0a7166e0f116874c2eba56d52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl

Download URL biopython-1.82-cp310-cp310-macosx_10_9_x86_64.whl
Size 2.7 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
713be5e1e8571ea151864544dfcd2637eaf98c67a6e47b69781d325feb02f6b9
BLAKE2b-256 checksum
How to use checksums
e70555501bf2052caf26039d50ad1678b82d7e08260925298f34f8c4cc24967a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp39-cp39-win_amd64.whl

Download URL biopython-1.82-cp39-cp39-win_amd64.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
73d619611bd7cf9d2ad8b3217b08d3796acfabb765b0771ad2ff7ee2e46a59b0
BLAKE2b-256 checksum
How to use checksums
227f461f14cb0a66b272b82a8683b4448161832323133186384b69644cd418fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp39-cp39-win32.whl

Download URL biopython-1.82-cp39-cp39-win32.whl
Size 2.7 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
80f48d220b92e747300281602f52e98ec6c537ddd4921b580d9a0368bae05ff5
BLAKE2b-256 checksum
How to use checksums
4136c9820ca03e9a4aaa05caefa5f92162ff733b8a918ed03649fe7c6d8c54dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL biopython-1.82-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8e2533db9275c3e1438151260844e7683f91308da320df02a4c28fb7053ea3a9
BLAKE2b-256 checksum
How to use checksums
fb6b4f3c5e877e5ac4b4c4cf409e3afd47c4a1533e8807299b6a240ba8baea4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl

Download URL biopython-1.82-cp39-cp39-macosx_10_9_x86_64.whl
Size 2.7 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c88e9f87d1b07958e7e1e25ff20efced4796daf650e5290692b5c3ff9aebf9d3
BLAKE2b-256 checksum
How to use checksums
ebbf9dd7753fb10197eb524ec13977c97889edc96c91d6814486d1156b242542
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp38-cp38-win_amd64.whl

Download URL biopython-1.82-cp38-cp38-win_amd64.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
0198f23776d9cb9d514a797e81a024f486adac973b252a2f4696995a5a163745
BLAKE2b-256 checksum
How to use checksums
fbae26ecc9eb04de7231891e81c08fc1111fac4cd305f34d9162b71e5f4bdde4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp38-cp38-win32.whl

Download URL biopython-1.82-cp38-cp38-win32.whl
Size 2.7 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
a1ff583b2f8b314a4c2d612aad4f4b73827a5f741b391f3a834b0c192a4f1527
BLAKE2b-256 checksum
How to use checksums
9f4473fa9d1fa22711944ecd489f111f534ec52998ed7537ca022e0ff35e7c40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL biopython-1.82-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
16829760fab60ba17141b7a81494fed837c6f29ea28cdcfb3070764c8e8f2ff1
BLAKE2b-256 checksum
How to use checksums
017206a3777cdd96ee53858aa63d4223f185af526e61fb917ba7beedf7896e0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL biopython-1.82-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 3.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c6af82894dd4f736d737fdea62008a19966251ba39aef39a0ce8b41321305ad5
BLAKE2b-256 checksum
How to use checksums
2926eb97963b1f80f1e6b1548d85e727f9a2ebb770bad4a890658aad702ae044
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release files / biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl

Download URL biopython-1.82-cp38-cp38-macosx_10_9_x86_64.whl
Size 2.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
cb013256742d31e24fd5093d55511f58bc6a93b8ac723d2ca3b33c7904f1ca14
BLAKE2b-256 checksum
How to use checksums
4b7e2655436cd99db0e7ae9c71bc38be46f3f8cb532c71c0b830484a2a827c44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.10.12

Release history Release notifications | RSS feed

1.88

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

This release

1.82 This release

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