Skip to main content

fast-ctc-decode

test-fast-ctc-decode PyPI version

Blitzing fast CTC decoding library.

$ pip install fast-ctc-decode
$ npm i @nanopore/fast-ctc-decode

Usage

Python

>>> from fast_ctc_decode import beam_search, viterbi_search
>>>
>>> alphabet = "NACGT"
>>> posteriors = np.random.rand(100, len(alphabet)).astype(np.float32)
>>>
>>> seq, path = viterbi_search(posteriors, alphabet)
>>> seq
'ACACTCGCAGCGCGATACGACTGATCGAGATATACTCAGTGTACACAGT'
>>>
>>> seq, path = beam_search(posteriors, alphabet, beam_size=5, beam_cut_threshold=0.1)
>>> seq
'ACACTCGCAGCGCGATACGACTGATCGAGATATACTCAGTGTACACAGT'

Node / Web

import init, { beam_search, viterbi_search } from 'fast-ctc';

const floatArr = [0.0, 0.4, 0.6, 0.0, 0.3, 0.7, 0.3, 0.3, 0.4, 0.4, 0.3, 0.3, 0.4, 0.3, 0.3, 0.3, 0.3, 0.4, 0.1, 0.4, 0.5, 0.1, 0.5, 0.4, 0.8, 0.1, 0.1, 0.1, 0.1, 0.8];
const alphabet = ["N","A","G"];
const beamSize = 5;
const beamCutThreshold = Number(0.0).toPrecision(2);
const collapseRepeats = true;
const shape = [10, 3];
const string = false;
const qBias = Number(0.0).toPrecision(2);
const qScale = Number(1.0).toPrecision(2);

// On web, note the base path will be your public folder
init('fast_ctc_decode_wasm_bg.wasm');

const viterbisearch = await beam_search(floatArr, alphabet, string, qScale, qBias, collapseRepeats, shape);

const beamsearch = await beam_search(floatArr, alphabet, beamSize, beamCutThreshold, collapseRepeats, shape);

console.log(viterbisearch); // GGAG
console.log(beamsearch); // GAGAG

Benchmark

Implementation Time (s) URL
Viterbi (Rust) 0.0003 nanoporetech/fast-ctc-decode
Viterbi (Python) 0.0022
Beam Search (Rust) 0.0033 nanoporetech/fast-ctc-decode
Beam Search (C++) 0.1034 parlance/ctcdecode
Beam Search (Python) 3.3337 githubharald/CTCDecoder

Developer Quickstart

Python

$ git clone https://github.com/nanoporetech/fast-ctc-decode.git
$ cd fast-ctc-decode
$ pip install --user maturin
$ make test

JavaScript / Node

npm i
npm test

Note: You'll need a recent rust compiler on your path to build the project.

By default, a fast (and less accurate) version of exponentiation is used for the 2D search. This can be disabled by passing --cargo-extra-args="--no-default-features" to maturin, which provides more accurate calculations but makes the 2D search take about twice as long.

Credits

The original 1D beam search implementation was developed by @usamec for deepnano-blitz.

The 2D beam search is based on @jordisr and @ihh work in their pair consensus decoding paper.

Licence and Copyright

(c) 2019 Oxford Nanopore Technologies Ltd.

fast-ctc-decode is distributed under the terms of the MIT License. If a copy of the License was not distributed with this file, You can obtain one at https://github.com/nanoporetech/fast-ctc-decode/

Research Release

Research releases are provided as technology demonstrators to provide early access to features or stimulate Community development of tools. Support for this software will be minimal and is only provided directly by the developers. Feature requests, improvements, and discussions are welcome and can be implemented by forking and pull requests. However much as we would like to rectify every issue and piece of feedback users may have, the developers may have limited resource for support of this software. Research releases may be unstable and subject to rapid iteration by Oxford Nanopore Technologies.

Release files for fast-ctc-decode 0.3.7

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

Built distributions (wheels)

Table of built distributions (wheels) for fast-ctc-decode 0.3.7
File
fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64 Details
fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64 Details
fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.10 CPython 3.10 macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64 Details
fast_ctc_decode-0.3.7-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64 Details
fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64 Details
fast_ctc_decode-0.3.7-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64 Details

Total release size: 6.7 MB

Release files / fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Size 293.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
23f6230115bd81350fa2d4f07d8c0b4f4591391df969da6f5dce071073d5334a
BLAKE2b-256 checksum
How to use checksums
44ba1e8486b1ab727348c21a2a481dffa2ec6ee9e36fa0ac6a521be7b6861264
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Size 283.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b2301dbe33a53cd91661932be8891dcfacde2b4186f16881aff350b89b1df347
BLAKE2b-256 checksum
How to use checksums
a9c0277d4bd85fb10beb97cfad619f83e7588502ee22413ed228ddcc152f6738
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_x86_64.whl
Size 293.4 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a00c2bc431da0aa26c183afb3e385377c42a1447bdb94db4379d04d0a1c99bde
BLAKE2b-256 checksum
How to use checksums
456122ba524a63b8653102ce7230af3706f797b6a12919d077d1e5f6debb232e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp314-cp314-manylinux_2_28_aarch64.whl
Size 283.6 kB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5638309edfe131ac2b4735e5f197746b7eb203c9dbc45432e92f6d7ad6e3b15c
BLAKE2b-256 checksum
How to use checksums
ad08007cd3457db298528705778c645acfe62d0e05dfb66b859f5505fcdf27d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL fast_ctc_decode-0.3.7-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 470.7 kB
Tags CPython 3.14 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0b07033c43f8c849592aec7b16d57faa6b803c694f4886e88fde611a0e33cd89
BLAKE2b-256 checksum
How to use checksums
44babd776c7fd3bff90002f82cc39ea270431348fafe621892f7700712526e3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_x86_64.whl
Size 293.4 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c7ad81ae87e4bf70ce9094ba61da1dc71a5fe0518051ef5edb754340bae6ce0f
BLAKE2b-256 checksum
How to use checksums
cd8538e56d1d75c391cc19e5203731bc7732f7899224af2bd592d784b78cb67b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp313-cp313t-manylinux_2_28_aarch64.whl
Size 283.6 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
94f0885a09b33902e3b6424b7480f562619d805d138beca0f2e25441250350e7
BLAKE2b-256 checksum
How to use checksums
c0485c68e8d79514ad64e16c8c1303e60c5cbc18b7bc255b38e42d42d0a5055b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_x86_64.whl
Size 293.4 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f9098c3bc33d880ce05438e939b967c01c16b1e556d43c60234ab0af6a820d7f
BLAKE2b-256 checksum
How to use checksums
4f076713c0c791d4e9c34ae1ec4cfc1550caa6ac1a3ee78d65305d779e7deb90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp313-cp313-manylinux_2_28_aarch64.whl
Size 283.6 kB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0b8eb8928f0b74aaef3ce3cdc376c73d924c11f0e08bcd68cd451f3dc697940c
BLAKE2b-256 checksum
How to use checksums
2e30a5128631860b5200ccada786715c408afdd8a3fb11e292c545c960d668f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_x86_64.whl
Size 293.4 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
eb5f179a0bb6dfaa62175a7749424055bc66521adb36e46ac33cfef148180d2a
BLAKE2b-256 checksum
How to use checksums
f38973348ccd9bd442aed0cdd39bad4383c22a6b2ecb0865e4bfd8d4a1beb820
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp312-cp312-manylinux_2_28_aarch64.whl
Size 283.6 kB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f31a78d3f52bab00bfd5e682a8b9ba4aa639f36d3a09a4a1d098d2de3c191d4e
BLAKE2b-256 checksum
How to use checksums
0e0fd232953c61ee87f6a9a0bbb9cdd80c31cdd1611c17cb7791d4d4964f1742
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL fast_ctc_decode-0.3.7-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 470.7 kB
Tags CPython 3.12 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0e12c40e592da71647ae0fd4b6d0523213c37c6a3f002070cfa66256a6c26ea5
BLAKE2b-256 checksum
How to use checksums
f9a79da6f396c4a7e0a9ca95bf325e4bb92f6fcd9b9309c48cc41d469e799f89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_x86_64.whl
Size 294.6 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ed54e4efe171398f57ee264d3d08e28911ef192aff5345b13238285e678ccf84
BLAKE2b-256 checksum
How to use checksums
f0e7af2c35e646af77fd24c3045dbe35d9dbd89afcf1ea746036fa61cb60eab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp311-cp311-manylinux_2_28_aarch64.whl
Size 284.8 kB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c74b856575cd61f2373dbac57368fcb82d481b049476d341ad0fa0c18d61011d
BLAKE2b-256 checksum
How to use checksums
d674aedc92545832d69d261a817a8d3750bc667b1d09a3b0a5b0e5e78182b13d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_x86_64.whl
Size 294.6 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5b05b1b636e4f211886c245879f9d49a36fad04be62e4e529f76ad4684bb3afa
BLAKE2b-256 checksum
How to use checksums
3738afddd4b16b96a8d09b016bbf276e2c02c82a311690e848986349249a38a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp310-cp310-manylinux_2_28_aarch64.whl
Size 284.8 kB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c6eca68723252fc5e966cd3f875867b2e33695331b81686da801fb503bed39cf
BLAKE2b-256 checksum
How to use checksums
b926f38ee87fd954c021ec63bc43342617e1ff6a087d34abd17de7d3ead58155
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL fast_ctc_decode-0.3.7-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 472.3 kB
Tags CPython 3.10 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
26765629995575d7e9b938220eb0cdab6241221aa071db321af36d45da447cab
BLAKE2b-256 checksum
How to use checksums
793047dbb3aa2b371e4fa7a49f2896ad8c7d1f6120649cd20931736da802e0c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp39-cp39-win_amd64.whl

Download URL fast_ctc_decode-0.3.7-cp39-cp39-win_amd64.whl
Size 174.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5fdd4c132cd6589d185b1c09e5023187dc8a8661e7a7f693a61a543a18e896e4
BLAKE2b-256 checksum
How to use checksums
592450587546cedb24e8bc6ee7e027a957a651d9fbfe2584b6d4a8f18acbb758
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_x86_64.whl

Download URL fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_x86_64.whl
Size 294.6 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
2cf8676b5172a1b5e3f6f12232b333e2eb50b196d611b59d366ed8c145b468a4
BLAKE2b-256 checksum
How to use checksums
c533f743606d878248be9904044526252db01d8a367a4ac871112583fa881a7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl

Download URL fast_ctc_decode-0.3.7-cp39-cp39-manylinux_2_28_aarch64.whl
Size 284.8 kB
Tags CPython 3.9 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f8b437d5f9449942e1fcfbd845971984441ae166f889c2e61022a483b329da31
BLAKE2b-256 checksum
How to use checksums
a45441450e39f81943b235db52020768ec68c6c4088f9bf1565cc3a3480bc852
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release files / fast_ctc_decode-0.3.7-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl

Download URL fast_ctc_decode-0.3.7-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Size 472.3 kB
Tags CPython 3.9 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
09bfd828cd3865d130ea527872b954218c6999a3132595885431889fbf6a5991
BLAKE2b-256 checksum
How to use checksums
9dbe44a81ea53c221020acaf10fdcfad7ad87258f4ebe013de2396d6a69b8045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.6

Release history Release notifications | RSS feed

This release

0.3.7 This release

21 release files

0.3.6

18 release files

0.3.2

14 release files

0.3.0

16 release files

0.2.5

12 release files

0.2.4

8 release files

0.2.3

8 release files

0.2.2

8 release files

0.2.1

8 release files

0.2.0

8 release files

0.1.3

8 release files

0.1.2

8 release files

0.1.1

8 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