Skip to main content

teslasynth Python library

Python bindings and offline analysis tools for the Teslasynth MIDI synthesizer firmware.

The library exposes the same synthesis engine used by the ESP32 firmware so you can render MIDI files, visualise pulse signals, and tune safety parameters before connecting any high-voltage hardware.

Licensed under LGPL v3.

Installation

pip install teslasynth

Optional extras:

pip install "teslasynth[plot]"    # Plotly visualisations
pip install "teslasynth[wav]"     # WAV/FLAC export (requires soundfile)
pip install "teslasynth[listen]"  # Live MIDI input -> audio (requires sounddevice + python-rtmidi)

Quick start

from teslasynth import Teslasynth
from teslasynth import wav

synth = Teslasynth()

# Render a MIDI file to a single-channel FLAC (recommended — much smaller than WAV)
wav.write("song.mid", "song.flac", synth=synth)

# Render specific channels into a multichannel file
wav.write("song.mid", "song.flac", synth=synth, channels=[0, 1, 2])

# Render all 8 output channels
wav.write("song.mid", "all.flac", synth=synth, channels=list(range(8)))

CLI

teslasynth render   <midi> <out>    [--config FILE] [--sample-rate HZ] [--channel CHANNELS]
teslasynth listen                   [--config FILE] [--midi-port NAME] [--channel CHANNELS]
                                    [--sample-rate HZ] [--blocksize N] [--audio-device NAME|ID]
                                    [--list-ports]
teslasynth plot     <midi>          [--config FILE] [--out FILE.html] [--channel N]
teslasynth signal   <midi>          [--config FILE] [--out FILE.html] [--channel N]
teslasynth config   [--config FILE] [key=value ...]
teslasynth instruments
teslasynth percussions
teslasynth envelope <instrument>    [--out FILE.html]
teslasynth version

The output format for render is selected from the file extension (.wav or .flac). FLAC is recommended for multichannel exports or long recordings.

# Single channel FLAC (default channel 0)
teslasynth render song.mid out.flac

# Specific channels into a multichannel file
teslasynth render song.mid out.flac --channel 0,1,2

# Range of channels
teslasynth render song.mid out.flac --channel 0-3

# All 8 channels
teslasynth render song.mid out.flac --channel all

Live MIDI playback

listen opens a virtual MIDI port named teslasynth that any DAW or sequencer can connect to, synthesises incoming notes in real time, and streams the result to your audio output. Requires teslasynth[listen].

# Open virtual port "teslasynth", stream channel 0 to default audio device
teslasynth listen

# Stream all 8 output channels (audio device must support 8 outputs)
teslasynth listen --channel all

# Connect to a specific physical MIDI device instead of creating a virtual port
teslasynth listen --midi-port "My Keyboard"

# List available MIDI ports and audio devices
teslasynth listen --list-ports

# Lower latency (256-frame buffer ~= 5.3 ms at 48 kHz)
teslasynth listen --blocksize 256

Documentation

Full documentation at https://teslasynth.hnaderi.dev/python

Release files for teslasynth 0.7.3

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

Source distribution (sdist)

Source distribution for teslasynth 0.7.3
File Size Uploaded
teslasynth-0.7.3.tar.gz 251.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for teslasynth 0.7.3
File
teslasynth-0.7.3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
teslasynth-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
teslasynth-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
teslasynth-0.7.3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
teslasynth-0.7.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
teslasynth-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
teslasynth-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
teslasynth-0.7.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
teslasynth-0.7.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
teslasynth-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
teslasynth-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
teslasynth-0.7.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
teslasynth-0.7.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
teslasynth-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
teslasynth-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.27+ ARM64 Details
teslasynth-0.7.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
teslasynth-0.7.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
teslasynth-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
teslasynth-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
teslasynth-0.7.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp310-cp310-macosx_10_13_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.13+ x86-64 Details
teslasynth-0.7.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
teslasynth-0.7.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
teslasynth-0.7.3-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.27+ ARM64, Linux glibc 2.28+ ARM64 Details
teslasynth-0.7.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
teslasynth-0.7.3-cp39-cp39-macosx_10_13_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.13+ x86-64 Details

Total release size: 4.3 MB

Release files / teslasynth-0.7.3.tar.gz

Download URL teslasynth-0.7.3.tar.gz
Size 251.4 kB
Tags Source
SHA-256 checksum
How to use checksums
7ebc200d4495840671b33c49078958eac5eb966778d1c8127e93df90b82376fc
BLAKE2b-256 checksum
How to use checksums
15054ec5da4efce91dc0e68bfeefe235cf43c79d69eb7e8c0deedd522a373075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp314-cp314-win_amd64.whl

Download URL teslasynth-0.7.3-cp314-cp314-win_amd64.whl
Size 146.7 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ae5ca81365adda7f11d9b607596007512a12a6c1c7f204d5c0cabd1f4945a47c
BLAKE2b-256 checksum
How to use checksums
8cb091946d6510c1fab6b747d02e6baf4f0b0083740c46412ccdb88a9547553d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.5 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d2e6fa40cc376e4858ea0d4551f75ae037989f9857b8754767184e08245b9c8f
BLAKE2b-256 checksum
How to use checksums
49e44fdf8e38767a93e313c58f30d7d2ed387efe3cde1712e180c1cfcadd9726
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.1 kB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a4e31025b7eccd4636a2c8acc5eb49543d4610fb8c0820c9def46d641a80a734
BLAKE2b-256 checksum
How to use checksums
a8081cec5676d3a6be410cde086d42c09d828b070d79e14dbcbcfcc93b5472d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp314-cp314-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp314-cp314-macosx_11_0_arm64.whl
Size 114.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9c35ef8b9a2a7c1a8d16fd0d22c29dd769acfb61778855cdaebb659cf6651038
BLAKE2b-256 checksum
How to use checksums
eb4e98d637aff18d4c61b27c0f328524943ce26b359ca806bcfcc81971e73774
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl

Download URL teslasynth-0.7.3-cp314-cp314-macosx_10_15_x86_64.whl
Size 131.8 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
04a0c72453dc1f5bad50a8060d053b94b18974995739fb5a2493d169f8911259
BLAKE2b-256 checksum
How to use checksums
27bd5a2aa4a0b9fc5c95d7d8e9af2cc458dd3de7e3652e601daa2477a751b090
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp313-cp313-win_amd64.whl

Download URL teslasynth-0.7.3-cp313-cp313-win_amd64.whl
Size 143.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ece29659283746dc2c388d5a425f2d7bdd9150f8027e33fa8a0bd4c6a8e30ac0
BLAKE2b-256 checksum
How to use checksums
36314132bd372380d6929fa94f41765fa1d0ad3175c51b8532426af6deedc8ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.3 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
d8430618295d683eaac047d951429706e5899cd55e16ece67f890d09e87fd0fe
BLAKE2b-256 checksum
How to use checksums
bb358eac93d96da8de36848536829ff623975c355017d76fec3c25f24c5c5e1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 138.8 kB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7fc19de5d923b847f531a6a848b4799bb9677f21989fbe5cc318390894be3290
BLAKE2b-256 checksum
How to use checksums
4e8ce895171e3e896f8fd2dad7e84888c13abe1a4e2f8092339599f3f57cdb53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp313-cp313-macosx_11_0_arm64.whl
Size 114.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cbb0271988a3f6298519cf2b4f5d7fd5a2b0b3121a47ac168a9fbfcc77cb4828
BLAKE2b-256 checksum
How to use checksums
75bf8573a76e6416b51dd6244cada13114e48d998ec9bd1fb5d7ede624f5dff5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL teslasynth-0.7.3-cp313-cp313-macosx_10_13_x86_64.whl
Size 132.2 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
602570e7860562a37f8d18b82b11399249e8b0015f4ebf2d06a9e3868e902b98
BLAKE2b-256 checksum
How to use checksums
2782eb03a3928b0100117056310a60d2ef18135c8e801f0a40a89b23177c5b1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp312-cp312-win_amd64.whl

Download URL teslasynth-0.7.3-cp312-cp312-win_amd64.whl
Size 143.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4f295246a1cae68ec62cf40e0458ef7e590de7bf3da598ac38bae3b2e4f8397b
BLAKE2b-256 checksum
How to use checksums
917cfc943f18ae4373b1cf9e719cd1248048fbe6911105a61bd45a4a55651e8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.4 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
65c528231e3562125a5b921b9fdac377ea331e3748e00650195028406477a965
BLAKE2b-256 checksum
How to use checksums
6fefd983373b9d4415a4869c3219cde6a72900969be9b6024c6a6113f958a337
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 138.8 kB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0f6960cbd3bb7e3c7e64a23b02fa726639a87989e6d15393a0b5b5f1bc2c9160
BLAKE2b-256 checksum
How to use checksums
b7bba0f480dc4c33d653fcc7ab0d14dc2a9aefab14d6cd46170412ea90071a19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp312-cp312-macosx_11_0_arm64.whl
Size 114.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e302bf49b368d50821a9abae5e79ba30f0b8b1b326df59da0259f1183a24e3be
BLAKE2b-256 checksum
How to use checksums
37ea4a79d342f3af715fd95d553c70eaff85b867a5d69caaff2385d3c5675d5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL teslasynth-0.7.3-cp312-cp312-macosx_10_13_x86_64.whl
Size 132.2 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
8838a391c78e70ae8fbab976a941b9254645a7053bdffb5546d756bce8b6b06b
BLAKE2b-256 checksum
How to use checksums
8ba2e7bb7eafb74b81da742c6ea5d1f27969258312d019745161181832f7df16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp311-cp311-win_amd64.whl

Download URL teslasynth-0.7.3-cp311-cp311-win_amd64.whl
Size 143.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
73b39384c0849a12794e14b5cbe156315429b42ccdbe146a5e3a6c342d93a18e
BLAKE2b-256 checksum
How to use checksums
ea3228b1932002e5be437ff3fb8bb191f7017b364dfaf4d4fee567b82b5e82aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.8 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e864c5a87908895f0fad3e3c14bb9ab3fdfecad9f13130996d2651728f2a6d7b
BLAKE2b-256 checksum
How to use checksums
4a87316d5be4014a38faa9114d40b3b34a9206e395f49b9e3e1ae7e95f52207e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.8 kB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f540ee6014bf448aab06d55aa23aecb3d737bfa32198557a5ca79d933640bcc2
BLAKE2b-256 checksum
How to use checksums
34eef1bac091d150a5014d605f9201d982c989bcbfa09a911fcd4b12fb7bdf86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp311-cp311-macosx_11_0_arm64.whl
Size 115.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5c60c6e071c8fd9517bfe11a0301b31633937a324b72be582270160dfecc7e99
BLAKE2b-256 checksum
How to use checksums
d564f2eb8b287c21f378a3259819611fdd20fea8935ba7b0c737e816015c8726
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp311-cp311-macosx_10_13_x86_64.whl

Download URL teslasynth-0.7.3-cp311-cp311-macosx_10_13_x86_64.whl
Size 132.4 kB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
06c74e5a41fa57cd6a2eec86732851c5ccea379378a59a111e5628dd2d9b4a47
BLAKE2b-256 checksum
How to use checksums
a6314bb9376ccdbbd470cd6528af53a3853146f2f33e2da1f1f18bfe981b7bbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp310-cp310-win_amd64.whl

Download URL teslasynth-0.7.3-cp310-cp310-win_amd64.whl
Size 143.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
93aec02b7e20bd49b5bf94133c87e149ced5f28fa8bee3f8e7e8038d1085a1aa
BLAKE2b-256 checksum
How to use checksums
9728d3900d8b6cb81043d545878f78cfdc9d84e5ddcc333ee9a011bb1704a8ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.4 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7d7499800876979825d60b9f0a605d1074792f6e0dc9068a8a47d15e81126d22
BLAKE2b-256 checksum
How to use checksums
6c3730c2f5f19bb94ab01db726b243d3390b0e7446687845dc77ac2d529fa753
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.5 kB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
59eb772ee563042c26562f57779813508f67f702274d1dd2045ab61776789b13
BLAKE2b-256 checksum
How to use checksums
c3aae1d24e92eaec081a63fd3b0ed9ee75816455d75e735d3b9d23d196db5e1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp310-cp310-macosx_11_0_arm64.whl
Size 114.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
18024177ea892396bb380a50397b490aaf22cdca36f7f82577887f9d4be02606
BLAKE2b-256 checksum
How to use checksums
8815456d7a105b7506e1d1c073757e4e2e6ead3573eec20587bc8dacd368fa00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp310-cp310-macosx_10_13_x86_64.whl

Download URL teslasynth-0.7.3-cp310-cp310-macosx_10_13_x86_64.whl
Size 131.7 kB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
33fc462e22ffbd3e21dd39f0fc7f13afc2d31713047a1e134860b2cedee0fd95
BLAKE2b-256 checksum
How to use checksums
5a8d2418175b8bbbdd30fe6a036a23da719998cbdfcf285885f16ba428be3e9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp39-cp39-win_amd64.whl

Download URL teslasynth-0.7.3-cp39-cp39-win_amd64.whl
Size 121.8 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1d6927061621915b56e28977e2f99c3c73494dc534cab51da5bcb09d4775a849
BLAKE2b-256 checksum
How to use checksums
d0ced7136170b49b5a4f9ba7f38267341984f051f1da82d9117ca85c27fcb9ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL teslasynth-0.7.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 139.8 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ff6247f18150ee76095cfd9e8eaaa45a09a14d81dd82258cacebe7fd19fc9647
BLAKE2b-256 checksum
How to use checksums
c23af42a641a37fe577bf8098d8921f00b5c7c35fd94a5cac9fea484b6a9410d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl

Download URL teslasynth-0.7.3-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 133.0 kB
Tags CPython 3.9 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
927ea7f67543f7768cfe38e872c05182f0392196c3baa397f6bb7fcce8f0626a
BLAKE2b-256 checksum
How to use checksums
0f8ea4b7ad35b3b31bf50163043b08849ab44bc63dcb5dd78a5517737633ab28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL teslasynth-0.7.3-cp39-cp39-macosx_11_0_arm64.whl
Size 109.0 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9f73f6b09347b60cd64b13d1e0466f79b61c2c1ade97dbaa20a965a2a85fbd9f
BLAKE2b-256 checksum
How to use checksums
40ca8df5c2c31c76fd01bc6709bb3cee8ae2b608f0841004518a51a95829c8d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / teslasynth-0.7.3-cp39-cp39-macosx_10_13_x86_64.whl

Download URL teslasynth-0.7.3-cp39-cp39-macosx_10_13_x86_64.whl
Size 118.8 kB
Tags CPython 3.9 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e3facac58697901f30148d5882af87afd8f48eed03ff9f39d0b6b9e1bbfd6f91
BLAKE2b-256 checksum
How to use checksums
472b7355a4d2feeda3eedef693d534e1f9e271f900617c3658d62110b4b0d81e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.7.3 This release

31 release files

0.7.2

31 release files

0.6.5

31 release files

0.6.1

26 release files

0.6.0

26 release files

0.5.5

26 release files

0.5.4

26 release files

0.5.3

26 release files

0.5.2

26 release files

0.5.1

26 release files

0.5.0

26 release files

0.4.3

26 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