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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

teslasynth-0.7.0.tar.gz (251.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

teslasynth-0.7.0-cp314-cp314-win_amd64.whl (123.5 kB view details)

Uploaded CPython 3.14Windows x86-64

teslasynth-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (108.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

teslasynth-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl (118.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

teslasynth-0.7.0-cp313-cp313-win_amd64.whl (120.6 kB view details)

Uploaded CPython 3.13Windows x86-64

teslasynth-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (108.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

teslasynth-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl (118.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

teslasynth-0.7.0-cp312-cp312-win_amd64.whl (120.7 kB view details)

Uploaded CPython 3.12Windows x86-64

teslasynth-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (108.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

teslasynth-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl (118.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

teslasynth-0.7.0-cp311-cp311-win_amd64.whl (121.0 kB view details)

Uploaded CPython 3.11Windows x86-64

teslasynth-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

teslasynth-0.7.0-cp311-cp311-macosx_10_13_x86_64.whl (118.5 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

teslasynth-0.7.0-cp310-cp310-win_amd64.whl (121.1 kB view details)

Uploaded CPython 3.10Windows x86-64

teslasynth-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

teslasynth-0.7.0-cp310-cp310-macosx_10_13_x86_64.whl (118.4 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

teslasynth-0.7.0-cp39-cp39-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.9Windows x86-64

teslasynth-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

teslasynth-0.7.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

teslasynth-0.7.0-cp39-cp39-macosx_11_0_arm64.whl (108.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

teslasynth-0.7.0-cp39-cp39-macosx_10_13_x86_64.whl (118.7 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file teslasynth-0.7.0.tar.gz.

File metadata

  • Download URL: teslasynth-0.7.0.tar.gz
  • Upload date:
  • Size: 251.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0.tar.gz
Algorithm Hash digest
SHA256 e2b2367e7c8480d343013053ff1c9c63376af47c11902378630b7ee0b900a66b
MD5 85a5b83709cb3e87a0a09167bcda9586
BLAKE2b-256 bb7cbde99a929d7c6ee05c946c92232ac07e3d27b8de7f69181a1d3ad4a0a4df

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0.tar.gz:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 123.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4fb3bbb0c19070eff3c283f19c855ec532de4baa52ddbb134e01726149b17bb7
MD5 ab2a2313e6511f249cda140f34a8333e
BLAKE2b-256 007a3670f8755d4d17e8260052160f117fbbea6aa1c97fc50184fa8c936faa9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a91e228df3da186cbb9adabca09add5789a424c1a0816572a9c12a408d1f0809
MD5 b82de916387a4fc72cf44a108e47af00
BLAKE2b-256 d186f51fe5e3ab4d3686371c8c864630356e385ecfe43f0afdd82a2c82fc047b

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a9ed61c06a3e11d3efa7803aaa057adf4139447dc078cacb13e20940ff6f86b
MD5 05ef57d41e503cc7d53f890954269c6b
BLAKE2b-256 ab30debf32ee1e949ee8bdc4e5e0856fc6db68be3e6883a1603817b091aa7d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddd2cba014245eaab81c759a6f43e8212e5ed712858ad0aee5818257c863e89b
MD5 5b16a92788e7d3ef526023219112c1c7
BLAKE2b-256 c5562cf202b6c45d5827fd3d8e3614dae3bb40ed3ef77775ab1070613cae081b

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bbac29052a02f86d021023f9ac2a902b9f114e4a5deb5d3cfe86d785f05650ec
MD5 14324ec07faba39ac03318c500f62ef4
BLAKE2b-256 9d238c41f0229560cc4693e732fdc60c8b5af99823cd87cc419dd1002fbf387b

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 82758c2f39ef74474ed08fe745dddc48f65f00b5a0973384bf9331e08c74a2b5
MD5 b7873cee42006b84ab36ff361254a714
BLAKE2b-256 360c6b7d3db48c9538261837bde8b50b680d7a3db16e4655144fa15fca90de9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a40f20fae98a97337982848b3947f550358f2e44bbf5d241471a34416b06dc0a
MD5 34dab970167b33799aea624a8707f414
BLAKE2b-256 93e4d0289148bfd9bf6b329dda55a58a0b87980f9305061681bae62fabd1e03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44bb77dae497789335266b820001f4432781aeff4723f2c1ee60ab4825b23afb
MD5 ea0fa2c7106f93f4842189ac85a008b5
BLAKE2b-256 83cadddc62786fb76906cb840dd3015d380f7348b5b5a2ffb0fca9ffdcc720b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a4a9224bd857869ddf5fa7f02e5c4242a2b2294bc5ee700a2167830bd469d4e
MD5 b00d92e10804d95447c73e007c7cfddf
BLAKE2b-256 96473500e33938de320553345f27ba28a11f3eb3247891bcd92f3932fe7ea1b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 71ed706ca4e96ea6c7f34351333c624147bb2bf10d1769967ae8acf43fc27214
MD5 fddfc3d9b8871dea51fcf28b6c8d64df
BLAKE2b-256 dde95cf80bf3fcad12a6beb5d06ccaf0c635f26adb5ff74b609f7d6c5aa5a90e

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 120.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 20d8218fcc5175bc51ef39f51e191f257bcf9db4c6f8fa939d909445ec131e85
MD5 f1379b28428f97015c38dd6bdf079811
BLAKE2b-256 fee82e790cd2d8b225a301149c8d1345102570654ca27a66e8b6d03e9ef79db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e60d8f00ab22458e0532747be32f7c40b3e283c8479028deafab562c03e43df8
MD5 518fdcb08e02f7afdcfa4bb44d7f4c14
BLAKE2b-256 60f729d8d8843980c4d02a9a3c7f2b6b94b95149d0c89f5df81f394b1a6bf946

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72dbb353db11ef30f6e73b88af1218130f7168fd85d5dcf01644a7d12859ba12
MD5 970cec6b6bb5fcc4eeda5555d16b1ae3
BLAKE2b-256 7789dcff7a21e25685824066864b4f8e48547e074f654108295961afb3b3b167

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 999dc471d25b92c6fd65102d69369f600a540808df06086433fb5bea48c5a5dd
MD5 772115e88c797f34d251833a9092b35b
BLAKE2b-256 380a0938b73b54b55533d2d1610ee419f3d11f291c13a7e9f0d8ee36fc4a8f23

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5be2fd077e6ad6fabe5e8e0a398dbf0950d9d1c1fba7b4a62e246a20e62782c2
MD5 e8275cb47aeb828e3e9767d8406f77ed
BLAKE2b-256 d0a5787784db621ecdffec763ac4d9ffc748e2c08cf865c6a5c8c11a608b331f

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 121.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5900bc02f2626b3b2c402a50d3dcf1a8000ba414d4cd351b9ed95bb9b58bbfab
MD5 4b51905e2a4db50897427a8e424c9497
BLAKE2b-256 616ce6e8f8057ed9ea65bba366cceecc70cd31becd6adeff5fb202457c1fa5a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e90c5b8c2a3c6506d962b6f19910286a4987a4f530d508ac8853797717dd56d
MD5 f56719d1076eeb7c6c807744d6fc0d53
BLAKE2b-256 b8a8fddcdbaafe141ff1fb66a3b84e4a8b98067415bae3042b9930aefd8fc2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a32b15aaea71d9b4b5a4c74c00feef03c3051302eca3e5b659a79f47fa50d617
MD5 55b279928b0615ee4d7288ec8860e706
BLAKE2b-256 01dc8998a44308f33bc3211a67bd2e3ba2601ea6a31a0168a010250699f36cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80cdc315ff854c6f94657ed9867381edfa5cfcc9f813f875ecd1825325e4d44a
MD5 5307c1a5ce93e7b33faed4b0d29ba1c5
BLAKE2b-256 d05de3ecd3c52f8ee36fa4d99324acc3dc0fe30cbbf2dc84feb43cc4301342f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b0b698d236cec2e8ad4f61e3692fc710c4d7eb2ec8d27f7650a1a8e9e3a1e00b
MD5 fcd580c9be71754461319b10f9e80c0c
BLAKE2b-256 28a40ac316d1e09d1a7c6bb3a9665b6ef09451a8763286da5fb17a909e54c988

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 121.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72bb4568d1e0c6d16be9e0b4ba76eea71bf85357b6dc86c5c1fe2843c2511d17
MD5 8c59a8b3aafcd1f6cdfd9b607c29ac73
BLAKE2b-256 3480383bee659da9bc548a1f032b7b15fdf0f0372020a92d310d883f08fec774

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b388bae2fa08cbdaf5304397a88558cd593be6468602bd8e429d14210f72b6c5
MD5 bd2dd89764f329d77faf3411210e0e33
BLAKE2b-256 4602b545df4715934e256e26cc7b1de3cc0619464a354c0cb560624187c5a878

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5858a4334885303850112f9057918bb83a749c7c2907a981fbf3a97c0b9eb13
MD5 57c39a053109a97a44a519916aa815f9
BLAKE2b-256 cbc2936fe4e1ef2bd15b00605667b6d907bdc249c61c98f5fa514e02e8ab9c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13847bef29e2868acd5f1eb03f6fb4311f1eaba0fae5f51fe220426fa2e45cdb
MD5 867e4efdf30d2ab3d40203e21168e6d8
BLAKE2b-256 192064892cc6545141b26ebfb1faa6ba3f920a2597d47a5fe27c9b51c997be9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0198326ce36d07bf0110b45a733fe72f2d454028f5a21545e156e45c300efe4f
MD5 808b547e516a40ad824ac46ccd9700b1
BLAKE2b-256 77f465dfe9a5f4c77e12cbcdab277b14fbf739ea1834a2e01e4734a563e4a446

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 121.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ad0b647a9685bcd769fd43a4a4089fc9ecf95cec8358e6067db7856e5c8a41f
MD5 5195b6db7fc61123f7f64e429b647cae
BLAKE2b-256 98279fdd7896d0479ca419b97ec5abc815fa89f3ef8fee27b83e7e625ab71c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e96621bd759a1373ba6fcfad5f093b8347ac632bde308b098f51d9207ffef12
MD5 ec5525c3627b34650601a71bac556fd5
BLAKE2b-256 c75099ba50296104109fcc904ff2c5ea16d0a339d234fa65313789b8cf6b8908

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11b94699c39c993680c100946e1d0983cacbddff2add197485a13592a0772639
MD5 82af52b8b476e4d5a65cd999799b5f61
BLAKE2b-256 af20b18942b8b79b985e9837d5a8fee90b87b43220ac904bfcf218e410c16193

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3d99cf0bcf9c447c9bcf11a98aa30a69d8645635ba6ab6d84adca91552d5e4b
MD5 6f7df1ff7159065b2d83ee8491dee05d
BLAKE2b-256 df175beb170302d8a08b3126de13b5861cd85567214ac87a7e5efee8f48439e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file teslasynth-0.7.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.7.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec83ecd0eeb66322abfb565099d9db6bf41efe55eeaf7b979ecc3abacb7feb8b
MD5 1471440b9b7b2f263b42d6ff9114730e
BLAKE2b-256 a281e875fd87b1ac20c48a2559b6c2142c3bf7c39fc912e175dd649d2c56f3a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.7.0-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: ci.yml on hnaderi/teslasynth

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page