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

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.2
File Size Uploaded
teslasynth-0.7.2.tar.gz 251.3 kB Details

Built distributions (wheels)

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

Download URL teslasynth-0.7.2.tar.gz
Size 251.3 kB
Tags Source
SHA-256 checksum
How to use checksums
545153e37ae43727e3c45613bdbec786d8a5bd2cfacb5ca04318b17811f5b9cb
BLAKE2b-256 checksum
How to use checksums
5992b26dd1b46922e2b3286f19eb6d78e4a0186aabb8bc8536549319fc091779
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp314-cp314-win_amd64.whl
Size 146.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c61e51c746442333222815d7943ca4754d683ab46f14ecae4b4948665db25ad6
BLAKE2b-256 checksum
How to use checksums
dcfb69bdb65fa3ad73a22a55912a5b1ad17b644f6fb9c081a80712330d3d0214
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-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
cbca31d5ff734b7715516f7db6d735058614e65ea5d2ceabcff9e86c0d2b9e21
BLAKE2b-256 checksum
How to use checksums
649b92246f9041a73f0cd576c58647931d7866d48b4facc6d0196d8e3bb4695c
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.0 kB
Tags CPython 3.14 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e0ff2c438ec8bfba77b1cfc4b8d6ff54d8caaaff01df3c7afb842be4eeb631ea
BLAKE2b-256 checksum
How to use checksums
87afa799804da243c78121ef2748bac83c2848b83d4c1ee5747dfad31454ad61
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-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
f4b932ee0bacb39d05329d696290f351e66fe101367f8cf66ffbfea724952820
BLAKE2b-256 checksum
How to use checksums
edf6dc61724d6be7ab73ee58e90db1b13a9c16eaa20102b9a9aafa924bc1ec69
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp314-cp314-macosx_10_15_x86_64.whl
Size 131.7 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
803ba2cc6973ab10dd6ccb012ecf0b599cd2ab3715fb8cb3bb8ee6fb91b3f5e4
BLAKE2b-256 checksum
How to use checksums
f29974e1ae040797a5ef44d3a2d60cafdf819770ca312ce75612b363951f7012
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp313-cp313-win_amd64.whl
Size 143.6 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
105854f86d839a81f4a697259d9692884912e86d86e66d6e8b299af8358d5e1f
BLAKE2b-256 checksum
How to use checksums
5a882768c27d93199a4e8aff42779eb884e4fdcc085cd1ed36a4a891251454b8
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.2 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
23b4d2f42872bad521a369e270e9690a60043e03aeecd1d14b55ab61324a8f55
BLAKE2b-256 checksum
How to use checksums
c1f15a6b2c628bf14062fea2cd2663d1e47bf925ede9d91fa242bd96e90c0553
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 138.7 kB
Tags CPython 3.13 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ff74db76b677992fb8df442d43c57bcbb17974aae1dce025f0844bcdd73fa38c
BLAKE2b-256 checksum
How to use checksums
89c83bb83dee02b3306de3add2ac24f6ae59a3026d7ff11009cddba0b020b322
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Size 114.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a1a171795695ce50b572d14e99ed77aa372d3bdaf04a90e0c6091432de679219
BLAKE2b-256 checksum
How to use checksums
ce681303a00080cf49e5f1b0fa169f9281e2b61c5ba1226583ce834d37cafa47
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp313-cp313-macosx_10_13_x86_64.whl
Size 132.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
be7a8ff687dbb4bb7dd04f825a6404d23d7ac2c63a9522c3f1142f0bf46f9262
BLAKE2b-256 checksum
How to use checksums
db34e5d037a9f45b84cca3d48e15b85cc8bfe0c2c9dbc7b5a6475a8f62755acb
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp312-cp312-win_amd64.whl
Size 143.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0f90c2b77b846f936c586726cef9a0b2718cad5fdf3f2ea7064730640ab2ef17
BLAKE2b-256 checksum
How to use checksums
dd2b3ea5573386714e5461cbc8731a82907efdfd4b436ec20a9110916a187156
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.3 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
884e4c844132d445d5d58a30c2a2376af6d46819be1b0e21775f7ffdc5845122
BLAKE2b-256 checksum
How to use checksums
c5b865bb86122d46c0b6f051d02c54af6b25ce811cd446433be5c75308b9f59a
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 138.7 kB
Tags CPython 3.12 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fe232eff7f00d2830b63d4e7016626da6a4aeac7d902c3707a73359baca04fc3
BLAKE2b-256 checksum
How to use checksums
1484e1e517bc93d853232803d2cd27be0f91bab200048a77e554a08e7baeecb2
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Size 114.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b26f3ca16f8251e02db6e7f60f4a2b506acfc63393f12a65a64eedd800bf1395
BLAKE2b-256 checksum
How to use checksums
0da6bf5798ff129bc1f6a2da7eee37d21876f9e981dc76a129dfdba1082d5b6f
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp312-cp312-macosx_10_13_x86_64.whl
Size 132.1 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
c91ba419846f9e986d9140d8dc94ce3f1104add55932b998f908fc958b47281a
BLAKE2b-256 checksum
How to use checksums
54315fa387a70f049310426e038cbd0eba8b31b00c8bc4e314c0b9afa01cdce8
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp311-cp311-win_amd64.whl
Size 143.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
73d608d5ef4007a82b50a32cae87b2529dd6a9f1c28db3c256539d568fb6b3a5
BLAKE2b-256 checksum
How to use checksums
5d36fac436bbaa21a916d5ae3118042916bd7dddcb6141f2d2b77581e12010a5
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.7 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
562d107e69f65452bcfa5cc9a80177d2de9f9fae1f40a423d2271ea3f73930c0
BLAKE2b-256 checksum
How to use checksums
98a7f7dc73583fb81b6103d4ece0f8857044b39cbaf1a47156238a0b3e856024
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.7 kB
Tags CPython 3.11 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5d7b84b0392692506d69971d0863b51ab4989bb044bc132a9978af98cf8d450d
BLAKE2b-256 checksum
How to use checksums
eb8977bdd4d42d57a1726b3eb7e8137aa37f6002caf4755358c92f2506a00410
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Size 115.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
13ff5003db64f5f9b83dadeda0f1c7c7717241cd8399ce193e56ccf00ce4125e
BLAKE2b-256 checksum
How to use checksums
b4b6131784b5d9883a30d027b8c8433d68217c3b13e8f5e29198e2b08f90b08c
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp311-cp311-macosx_10_13_x86_64.whl
Size 132.3 kB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
1a0f34bc8cef660bbbad36d9ff31e613ac4b8d50c5d678b7de7d3732fa1002cf
BLAKE2b-256 checksum
How to use checksums
73483510baf87bf7173d67d2eb83024c1ed2cdf35fe9282cba383b152cdac55c
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp310-cp310-win_amd64.whl
Size 143.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
a920a51afda90dc6c2037b4547b15770e41530579d4aee9296c63e03ca99dfc5
BLAKE2b-256 checksum
How to use checksums
9620d302a63de11064a95aef012975ce10f83f605e2b7e422c1d7c6021cd8015
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 148.2 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
361292308d7e151af3d6eeca795f2abe7a77789feca1964b0a898fea62acc88c
BLAKE2b-256 checksum
How to use checksums
20c9a5c3b8fef0b06d6fa6b55cf983401fb254533db50eab7cfc3c27d1114bf5
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 139.4 kB
Tags CPython 3.10 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0f9e633258ffbdf8781c793418de214e60db331d6a3fbda5c32931cef358eb5f
BLAKE2b-256 checksum
How to use checksums
19d8bbc64203fea494393f8460e9b63ffe63caf66177431f4bfc986fad4c654b
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-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
3663851d6f247e613afe2f23b4bc27a7294419dee1564eebf88c3f4c4f3f3fe4
BLAKE2b-256 checksum
How to use checksums
4b9a7edfc79247a5df2ac114489239a7e8fe2a339dea58cc541e38fe02222ee2
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp310-cp310-macosx_10_13_x86_64.whl
Size 131.6 kB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3b76821c4cac3d30ddb967d3d9bb955655aa2a04b53036233f05d0ce16652118
BLAKE2b-256 checksum
How to use checksums
99ca1f93d3b9908cea57b3da2682dd9e5e1bd94f1a732d4a29c160df2e429f42
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp39-cp39-win_amd64.whl
Size 121.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e8d433c8724729a4839f1c93364d0e5966129c1535177cd30ef730e4b9d7e44f
BLAKE2b-256 checksum
How to use checksums
79d2f92e69fcfdd699f3076bc1a9a41a6298a73cc7c5d85ba55170e189dc96cf
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 139.7 kB
Tags CPython 3.9 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f8516bb463d1f478b1b0238b2e75efd7514bf0570f8d0ca792462efa83ad5c8a
BLAKE2b-256 checksum
How to use checksums
cec3312b1ce03709c0d27596f9b6f1af6e61c346f3b60194fae017dcd6c407bf
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Size 132.9 kB
Tags CPython 3.9 Linux glibc 2.27+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c80420c53eb49f69b9edf26370dc202aa9c95427d02e48c2189493ea175a624e
BLAKE2b-256 checksum
How to use checksums
ac900cb391bbaf07497b9fb1ad45230d0e1aaf3b822cd88235c80e2cc036c51a
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-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
447323cad6306eaa9171ae826ff5bcc457adec001f62f158d0f0bbe935fa1077
BLAKE2b-256 checksum
How to use checksums
fea0f10b7d49a89173363805bae75870b7c2a05283260003b51c48a0a6e5b98b
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 21, 2026.

Transparency log

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

Download URL teslasynth-0.7.2-cp39-cp39-macosx_10_13_x86_64.whl
Size 118.7 kB
Tags CPython 3.9 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a87f044603515ad7d4d62d1d0288788d0fc228425f633aef2dc8875e3254c568
BLAKE2b-256 checksum
How to use checksums
54e60c1c19d95ab5e321b5f1182de1e474390997045eb0153b0aa56164723970
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 21, 2026.

Transparency log

Release history Release notifications | RSS feed

0.7.3

31 release files

This release

0.7.2 This release

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