Skip to main content

Welcome to python-rtmidi!

A Python binding for the RtMidi C++ library implemented using Cython.

Latest version Project status MIT License Python versions Distribution format CI status

Overview

RtMidi is a set of C++ classes which provides a concise and simple, cross-platform API (Application Programming Interface) for realtime MIDI input / output across Linux (ALSA & JACK), macOS / OS X (CoreMIDI & JACK), and Windows (MultiMedia System) operating systems.

python-rtmidi is a Python binding for RtMidi implemented using Cython and provides a thin wrapper around the RtMidi C++ interface. The API is basically the same as the C++ one but with the naming scheme of classes, methods and parameters adapted to the Python PEP-8 conventions and requirements of the Python package naming structure. python-rtmidi supports Python 3 (3.8+).

The documentation provides installation instructions, a history of changes per release and an API reference.

See the file LICENSE.md about copyright and usage terms.

The source code repository and issue tracker are hosted on GitHub:

https://github.com/SpotlightKid/python-rtmidi.

Usage example

Here's a quick example of how to use python-rtmidi to open the first available MIDI output port and send a middle C note on MIDI channel 1:

import time
import rtmidi

midiout = rtmidi.MidiOut()
available_ports = midiout.get_ports()

if available_ports:
    midiout.open_port(0)
else:
    midiout.open_virtual_port("My virtual output")

with midiout:
    note_on = [0x90, 60, 112] # channel 1, middle C, velocity 112
    note_off = [0x80, 60, 0]
    midiout.send_message(note_on)
    time.sleep(0.5)
    midiout.send_message(note_off)
    time.sleep(0.1)

del midiout

More usage examples can be found in the examples and tests directories of the source repository.

Release files for python-rtmidi 1.5.8

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

Source distribution (sdist)

Source distribution for python-rtmidi 1.5.8
File Size Uploaded
python_rtmidi-1.5.8.tar.gz 368.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for python-rtmidi 1.5.8
File
python_rtmidi-1.5.8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
python_rtmidi-1.5.8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
python_rtmidi-1.5.8-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
python_rtmidi-1.5.8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
python_rtmidi-1.5.8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
python_rtmidi-1.5.8-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
python_rtmidi-1.5.8-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
python_rtmidi-1.5.8-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
python_rtmidi-1.5.8-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
python_rtmidi-1.5.8-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
python_rtmidi-1.5.8-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
python_rtmidi-1.5.8-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
python_rtmidi-1.5.8-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64 Details
python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64 Details
python_rtmidi-1.5.8-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
python_rtmidi-1.5.8-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 5.6 MB

Release files / python_rtmidi-1.5.8.tar.gz

Download URL python_rtmidi-1.5.8.tar.gz
Size 368.1 kB
Tags Source
SHA-256 checksum
How to use checksums
7f9ade68b068ae09000ecb562ae9521da3a234361ad5449e83fc734544d004fa
BLAKE2b-256 checksum
How to use checksums
ddee0f91965dcc471714c69df21e5ca3d94dc81411b7dee2d31ff1184bea07c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp312-cp312-win_amd64.whl

Download URL python_rtmidi-1.5.8-cp312-cp312-win_amd64.whl
Size 129.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
052c89933cae4fca354012d8ca7248f4f9e1e3f062471409d48415a7f7d7e59e
BLAKE2b-256 checksum
How to use checksums
93466af077d262f521ea2bf1ab60b8aad72f34fe6dd55af739176605369d449c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_x86_64.whl
Size 315.6 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
cec30924e305f55284594ccf35a71dee7216fd308dfa2dec1b3ed03e6f243803
BLAKE2b-256 checksum
How to use checksums
f6925a60f56dfb2740e644e932233928947423cd2101895319b331f84527eb31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL python_rtmidi-1.5.8-cp312-cp312-manylinux_2_28_aarch64.whl
Size 305.7 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
25f5a5db7be98911c41ca5bebb262fcf9a7c89600b88fd3c207ceafd3101e721
BLAKE2b-256 checksum
How to use checksums
6f5bdc19c53d9d512b74dc2cca3725591cc612b9465645695a0696352a8c8b54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp312-cp312-macosx_11_0_arm64.whl

Download URL python_rtmidi-1.5.8-cp312-cp312-macosx_11_0_arm64.whl
Size 153.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
29d9c9d9f82ce679fecad7bb4cb79f3a24574ea84600e377194b4cc1baacec0e
BLAKE2b-256 checksum
How to use checksums
4dec57cecde253daab896ce53778520cd41eb062641862ebdb0ee6f97511b1d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp312-cp312-macosx_10_9_x86_64.whl

Download URL python_rtmidi-1.5.8-cp312-cp312-macosx_10_9_x86_64.whl
Size 158.9 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5443634597eb340cdec0734f76267a827c2d366f00a6f9195141c78828016ac2
BLAKE2b-256 checksum
How to use checksums
5127887b0378e0a907489a07bdeb808fa5ed349675245c6ee14d9f6d00304f96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp311-cp311-win_amd64.whl

Download URL python_rtmidi-1.5.8-cp311-cp311-win_amd64.whl
Size 132.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cfea32c91752fa7aecfe3d6827535c190ba0e646a9accd6604f4fc70cf4b780f
BLAKE2b-256 checksum
How to use checksums
13ff2c55797dbf020d462132d1bc5b34d596b400fa197e2a259b8dd2ea2e5954
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_x86_64.whl
Size 305.4 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
46bbf32c8a4bf6c8f0df1c02a68689d0757f13cb7a69f27ccbbed3d7b2365918
BLAKE2b-256 checksum
How to use checksums
a0791ddb4fb1bdb1a8b8bd62007ca4980344a53b7f29633a7bca1088eed964ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL python_rtmidi-1.5.8-cp311-cp311-manylinux_2_28_aarch64.whl
Size 294.8 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
271d625c489fffb39b3edc5aba67f7c8e29a04a0a0f056ce19e5a888a08b4c59
BLAKE2b-256 checksum
How to use checksums
535eb866491545135c699bfbed62f54b93c4d6587afc2bba6e2cbbe898570c32
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp311-cp311-macosx_11_0_arm64.whl

Download URL python_rtmidi-1.5.8-cp311-cp311-macosx_11_0_arm64.whl
Size 146.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4e234dca7f9d783dd3f1e9c9c5c2f295f02b7af3085301d6eed3b428cf49d327
BLAKE2b-256 checksum
How to use checksums
4b1237d41151b08a292719f05dbeae15475537f8aa291cda34c6634b35916dff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp311-cp311-macosx_10_9_x86_64.whl

Download URL python_rtmidi-1.5.8-cp311-cp311-macosx_10_9_x86_64.whl
Size 150.2 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
30d117193dcad8af67c600c405f53eb096e4ff84849760be14c97270af334922
BLAKE2b-256 checksum
How to use checksums
4b0c23be16b75c90946784b8d233e61db14cf0482def5396821a1ae0bdcd2739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp310-cp310-win_amd64.whl

Download URL python_rtmidi-1.5.8-cp310-cp310-win_amd64.whl
Size 132.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f2138005c6bd3d8b9af05df383679f6d0827d16056e68a941110732310dcb7dd
BLAKE2b-256 checksum
How to use checksums
9b0ccf771eca1b64610e627ca1e67be8390ecdf5e0e1914efbdd9d50ac4c5986
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_x86_64.whl
Size 304.1 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
878ce085dfb65c0974810a7e919f73708cbb4c0430c7924b78f25aea1dd4ebee
BLAKE2b-256 checksum
How to use checksums
bf2432dc239047a56f44d8d8090d55010f85a38ed959ffe517c2e87a2aa34190
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL python_rtmidi-1.5.8-cp310-cp310-manylinux_2_28_aarch64.whl
Size 293.3 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8bbaf7c7164471712a93ac60c8f9ed146b336a294a5103223bbaf8f10709a0bf
BLAKE2b-256 checksum
How to use checksums
b548aa1d4924f7aa238a192d69aa565b315af0037f684c9475e8b860c679a655
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp310-cp310-macosx_11_0_arm64.whl

Download URL python_rtmidi-1.5.8-cp310-cp310-macosx_11_0_arm64.whl
Size 145.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
844bd12840c9d4e03dfc89b2cd57c55dcbf5ed7246504d69c6c661732249b19c
BLAKE2b-256 checksum
How to use checksums
bf9b8e452d6edc2c04e3407f542d3185c66ffc2d39c8811cf2b117653a0a4d63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp310-cp310-macosx_10_9_x86_64.whl

Download URL python_rtmidi-1.5.8-cp310-cp310-macosx_10_9_x86_64.whl
Size 148.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
efc07413b30b0039c0d35abe25a81d740c7405124eb58eed141a8f24388e6fe0
BLAKE2b-256 checksum
How to use checksums
469c95c0a6a43bd24a17568e1e31008b1fab7e9a2e54c0ed7301e8d5cc9fa109
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp39-cp39-win_amd64.whl

Download URL python_rtmidi-1.5.8-cp39-cp39-win_amd64.whl
Size 132.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
dd2bcbea822488fca6b8d9fc7e78a91da12914f3b88dc086f051cb65a643449f
BLAKE2b-256 checksum
How to use checksums
c9ea2b775358c10f7ab13e4bbf07c488f9ea7e26728ac3337657b85116c1323d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_x86_64.whl
Size 304.0 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
29661939f9b7bd1a4e29835f50f4790e741dacd21a5cb143297aefb51deefdec
BLAKE2b-256 checksum
How to use checksums
c70a9c719afb56538041c5b970dc3dea41447fec2850039d0d65f9661ea46f50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL python_rtmidi-1.5.8-cp39-cp39-manylinux_2_28_aarch64.whl
Size 293.2 kB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5966172ed28add6ff2b76d389702931bfc7ff3cc741c0e4b0d1aaae269ab7a8e
BLAKE2b-256 checksum
How to use checksums
25890a844ce7f774784f08fe230cbd114dccff722122203efcc1a888876ba5d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp39-cp39-macosx_11_0_arm64.whl

Download URL python_rtmidi-1.5.8-cp39-cp39-macosx_11_0_arm64.whl
Size 145.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a706e9850e22acc57fa840c60fdc4541baafe462a05ff7631a6d9eb91c65e171
BLAKE2b-256 checksum
How to use checksums
4d2945cc82f68de966069d5884a0ae92f8f04c596f4045f0bf93955c3fe3c2a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp39-cp39-macosx_10_9_x86_64.whl

Download URL python_rtmidi-1.5.8-cp39-cp39-macosx_10_9_x86_64.whl
Size 148.9 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
82e61bc1b51aa91d9e615827056e80f78dbe364248eecd61698b233f7af903f6
BLAKE2b-256 checksum
How to use checksums
254b5ca7936f22974fce66f600a3b30e50bb17acb94dbadee0b15b310aaf7066
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp38-cp38-win_amd64.whl

Download URL python_rtmidi-1.5.8-cp38-cp38-win_amd64.whl
Size 136.4 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
26149186367341bf5b0a3ac17b495f6a25950bd3da6b4f13d25ac0a9ce8208dd
BLAKE2b-256 checksum
How to use checksums
6a257e6b825e0bacec6ae38b25d82aeaf5796eafff782f2b3417b552ea90b8a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_x86_64.whl

Download URL python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_x86_64.whl
Size 321.4 kB
Tags CPython 3.8 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c60dd180e5130fb87571e71aea30e2ef0512131aab45865a7d67063ed8e52ca4
BLAKE2b-256 checksum
How to use checksums
d7353d3222f330669f59df9592f926f8d7e9735107473898ccc8d348349ab84c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_aarch64.whl

Download URL python_rtmidi-1.5.8-cp38-cp38-manylinux_2_28_aarch64.whl
Size 307.6 kB
Tags CPython 3.8 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a5582983ad57ea7f0a7797ddc3e258efb00f8326113b6ddfa85b5165a4151806
BLAKE2b-256 checksum
How to use checksums
ea10fbf8ff2b69f07423fa775bcb688fd1021989dae388318d6906d6cfe060bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp38-cp38-macosx_11_0_arm64.whl

Download URL python_rtmidi-1.5.8-cp38-cp38-macosx_11_0_arm64.whl
Size 150.2 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1d5da765184150fb946043d59be4039b36a8060ede025f109ef20492dbf99075
BLAKE2b-256 checksum
How to use checksums
6ede81eda7f8f7ab5ee9f28a4d7b59ed2442d0545adb9ba210218bf31dcd1701
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release files / python_rtmidi-1.5.8-cp38-cp38-macosx_10_9_x86_64.whl

Download URL python_rtmidi-1.5.8-cp38-cp38-macosx_10_9_x86_64.whl
Size 155.4 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7bce7f17c71a71d8ef0bfeae3cb8a7652dd02f0d5067de882e1ee44eb38518db
BLAKE2b-256 checksum
How to use checksums
6c61062735cb57ca237f78a60fb7ca097ead1d83f542fa2d172e06416cb7d0f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.1 CPython/3.11.6

Release history Release notifications | RSS feed

This release

1.5.8 This release

26 release files

1.5.7

26 release files

1.5.6

21 release files

1.5.5

21 release files

1.5.4

21 release files

1.5.3

21 release files

1.5.2

21 release files

1.5.1

17 release files

1.5.0

17 release files

1.4.9

13 release files

1.4.8

12 release files

1.4.7

12 release files

1.4.6

12 release files

1.4.5

12 release files

1.4.4

12 release files

1.4.3

12 release files

1.4.2

12 release files

1.4.1

12 release files

1.4.0

12 release files

1.3.1

12 release files

1.3.0

12 release files

1.2.1

12 release files

1.2.0

12 release files

1.1.2

12 release files

1.1.1

1 release file

1.1.0

11 release files

1.0.0

9 release files

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