Skip to main content

Python bindings and analysis tools for the teslasynth firmware

Project description

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

Project details


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.6.5.tar.gz (251.0 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.6.5-cp314-cp314-win_amd64.whl (123.2 kB view details)

Uploaded CPython 3.14Windows x86-64

teslasynth-0.6.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.3 kB view details)

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

teslasynth-0.6.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.2 kB view details)

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

teslasynth-0.6.5-cp314-cp314-macosx_11_0_arm64.whl (107.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

teslasynth-0.6.5-cp314-cp314-macosx_10_15_x86_64.whl (117.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

teslasynth-0.6.5-cp313-cp313-win_amd64.whl (120.5 kB view details)

Uploaded CPython 3.13Windows x86-64

teslasynth-0.6.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.2 kB view details)

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

teslasynth-0.6.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (131.8 kB view details)

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

teslasynth-0.6.5-cp313-cp313-macosx_11_0_arm64.whl (107.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

teslasynth-0.6.5-cp313-cp313-macosx_10_13_x86_64.whl (118.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

teslasynth-0.6.5-cp312-cp312-win_amd64.whl (120.5 kB view details)

Uploaded CPython 3.12Windows x86-64

teslasynth-0.6.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (138.2 kB view details)

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

teslasynth-0.6.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (131.8 kB view details)

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

teslasynth-0.6.5-cp312-cp312-macosx_11_0_arm64.whl (107.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

teslasynth-0.6.5-cp312-cp312-macosx_10_13_x86_64.whl (118.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

teslasynth-0.6.5-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.6.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.5 kB view details)

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

teslasynth-0.6.5-cp311-cp311-macosx_11_0_arm64.whl (108.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.13+ x86-64

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

Uploaded CPython 3.10Windows x86-64

teslasynth-0.6.5-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.6.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.4 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

teslasynth-0.6.5-cp310-cp310-macosx_10_13_x86_64.whl (118.5 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

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

Uploaded CPython 3.9Windows x86-64

teslasynth-0.6.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (139.4 kB view details)

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

teslasynth-0.6.5-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (132.7 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

teslasynth-0.6.5-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.6.5.tar.gz.

File metadata

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

File hashes

Hashes for teslasynth-0.6.5.tar.gz
Algorithm Hash digest
SHA256 b58eb02085dc967e26a6a95fb2b9dd53df7c6c76db3cdbd769f7ce6ae0083a96
MD5 44656440157554a07dfb8531e055a4c3
BLAKE2b-256 19d329bec224d172ff1d726f56c0496c77e591a7191555d83048228bb23a8b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5.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.6.5-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for teslasynth-0.6.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2ae360def78a6c8539077682c5442e1ec02533e48d51c942fe22d7230a8300ac
MD5 5d1b1442412c41d60febda11d58bc08c
BLAKE2b-256 1289475826848bba7b0ea2442a6659fe017fff2ab45b8535ac111c3f50b629de

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54345f1e59dce9f05e388ac9990cc806533af999e648616b491655139e08159b
MD5 bdf228bc40d01c4b57f5cfc57376c460
BLAKE2b-256 61ee74c3a0f469f10954e9c3f0f8375bfac78aaa0d6cf96eb6e6cfe6af125d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbd86b24d3cdfe1c211f26a67577752f3f8b555515a4c5950c3cdab86589ee66
MD5 6aa5c697656b7fc9470928592b36ecd8
BLAKE2b-256 d8d0b3fd42c246de07581131b202e6502babd5d7f18a816bf9209799568842cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd3b0c6d59a24a08ed700ab731fba4417e1c8a25c1e687a210108751808e31f3
MD5 6ba5daa0742a35ebe3cff4235d97ce5c
BLAKE2b-256 6dc7308c453c4da8a639b6abea266d60eb64b55d9ceb347ea37fd6a2150dab07

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1303303e0e14482a3228712baebf87526e77f643ce5bdd91bb5a11f6cb51c824
MD5 2b2f032415c1e2241688676793378698
BLAKE2b-256 ec7b0c85358b8b3dfe8f58a1a904d30e57288c1e86de1f387c4e9165250bfb79

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for teslasynth-0.6.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43f12182866990fd052f867d26a8c5dc20125ea0f81b31809570c83b23a1caf6
MD5 9fcd72dc62fe9b9cfe7ba8d8f37da46b
BLAKE2b-256 36cebc4209992affad28a977e228825d91ba623a5d55573601a777f9f7d47da6

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a6f02f7a549378b39ba2bd72b247b1ad668b5d56a199437b893d8cd1704f4e9
MD5 de0862066bb6e37f45be7497b63ffa7f
BLAKE2b-256 af023f5f11cc7acc008ce02346564dee163680fa186a5765181288b2b430d065

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca5c59311a48703a68e81ba8e1a80207a8b9c5cda21795a1608c2de1db338514
MD5 7105babeb0454e706152f16dcbf40777
BLAKE2b-256 29861cc90395cbf4384bd9cb1215ce9468ad2cd9393154e696cfc84feaf44f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34551033408ee4b74697de0372f1bf7735de6e6ff7b150227a36a75058f7a33a
MD5 10e356fca22d78eb3c9f6ecff62f2430
BLAKE2b-256 46dba86b6aeba3652338999ccafb51eb8585b5fb961e7f13d43e2dbf2af1a9c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f6f6867bcc96f9eb00dd64ad40dd75e8e2d7f0ff911ec6e34bd5fef424a35f9f
MD5 a7a8f7685423137d430f460833d7e46d
BLAKE2b-256 5d3b4ad8bd857d3ab0471aab0a5ca3e7181fb6fbcd27b9f08b45584480b36771

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for teslasynth-0.6.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d520968389b3f20777e96551144ac6d6f473406be6962d893d21ff86b5e96923
MD5 194a68f7a115cc80abb73ed2979ac0cd
BLAKE2b-256 e4bc3b655fefec464a2eb8d1e1569ec04d6a297716d9b4ef7c3f9780a56e632e

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41f5e1893887190be64e7ce4083bc5f27eeb1d021241d94d79db020ec52cc465
MD5 84ac498d7751aa63b268ffddad58b138
BLAKE2b-256 b5abf6019808a6c93ed0544faa9e5a28bb981707fbad1e796f19f3eda2692f51

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7782044eff1ebc6113c98c078c7c83126856f3704881072f593051134cdaf36e
MD5 402a65decd11aca2dc45eaf795274de5
BLAKE2b-256 448d2f4fa97daa431f8a1bd8c4eaa7859c235280e91810ed576a8797ea905ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c14436b7aeb7fea371f0623c76aa2cbcd34d02d4df300a72fcc5f9cf9ef8ea
MD5 46f2d1abe272432f6146eaffa487413d
BLAKE2b-256 64bfa934786bd9e4673c2a3798dac851ffd895a8351a0768fc82485e7f143482

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3a4aed52b97c501729f0eb569acd5b892428d419c4fb35484ca1cd728cb6a14
MD5 e60f67f4bc7257937b1c8c3cd921d73b
BLAKE2b-256 cb655f3537d78db33df1df4654a19c51e5a26a06add643c721c4c22f982add97

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.6.5-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/6.1.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.6.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee394ee4b47b4a69126965a9d047cd5ca1eabaf27dc19d74162c7ce584714aa5
MD5 708050ca8d39f28d5ffe9af7ae908cdc
BLAKE2b-256 f3203fbfaaf31ee0adea692f4bac19e8ff4ac7ecf1aa88a6515133e0d89981ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1652e01a9dc60385279afa80ce0890c44c7171fa7320016ceefba19e2cee3bb2
MD5 c68ade8a62902a6a2ee4da8898d8eb13
BLAKE2b-256 8c5450555f4df76d3dc84c35c4b2e34df04667b64674b8054f099ee5370c60a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 166b57bee290b2b7388f0a70c41429fd628496cf7e688b54d2956c47f7e3b17b
MD5 f39fb508a84236a1b7b64baec2a779bd
BLAKE2b-256 205769764c0100da8aebe7753690c8f61ea12627abb4787b7692e8d03effe33a

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e13befb35ab2e2a8965661675f2447fa07ac21e0181f0384498ac36092bea740
MD5 d7668aebad331f6ceb15892448023c5e
BLAKE2b-256 d279f2a15c7f40a3b05210855b0e159f038ee53eb9f66bcc18d4f2d0bcadeebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 afa69f8c8ae5a3bef6219adf4881068494dcf6b9a6969508eb5e666e46441111
MD5 6d5e10372ae57c81a10d75543de33ac5
BLAKE2b-256 f42013b0e25b19c7165c6d2858e3f11da9c5e7edabe1034b64479f8a76b55e8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.6.5-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/6.1.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.6.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c9b4f5fb61c645187f71c6693627c1db165fd5ba950eeb4f846c4c53ab07f77c
MD5 624d0ecc8d747d9d51dee173b4a22b7c
BLAKE2b-256 c2544bfb15030916d2dc1706767259a8376f4dcdb2e5a549027d87269e984a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ccdc1dde4ec58e739c1e34bec8b86536e8386055b48750e9a06b358098a59c9a
MD5 fbf72bb4dc6f04a90e6bdaf001311722
BLAKE2b-256 e7bcce505fdff13cb20067134ad0bc6a65b2d0eb7905d96fbb77fe4e4990b048

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65446c49e598b7878847b3763f3b91233e306f2f17b0369ffba13d64804e2611
MD5 0ab20cbba2e0dba2dcf02ed35fb4d924
BLAKE2b-256 3e39ba7022485e30233915dbf20b743e0d6dcdb9bb8ed97e8c9e65a65a19a26d

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97bde1a35cbc1d33b7e13e78c81ccebb865d508921ab17a40968b2d28fc94e52
MD5 f8d76804dcda9d2159c0a98aa9087dcf
BLAKE2b-256 448cc255b44e6c43835ef089579c027e65b3e507e559e705e4e35a2726a3e283

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3fe96f83a9d663b65f19f04878b7bc789abcc84c567ca9f46358ef8359be86c5
MD5 d6b4cf2d8a85a802857abdf90ee8f281
BLAKE2b-256 61eb22b3dac0a638fa33d3e0892ce880c4a81a2df90af946bd493a538a849674

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: teslasynth-0.6.5-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/6.1.0 CPython/3.13.14

File hashes

Hashes for teslasynth-0.6.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 64a44e00c1f658e93919c1f3c7f0192527010797658b23a2835d594dc2959e55
MD5 14611e9e1063bb67aa69f84fced8c063
BLAKE2b-256 6537fbb8ac20b8df0d8a4a876d4eff0a43cb35ad0a7390ba9da276d99bdd7a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f880154630263f0f7b69644e03e13e258d069fcfd82d45ca6d3bcb3eb2515f6
MD5 6121089a7d40be4afdeb623949dc8e7c
BLAKE2b-256 a105782aee30c611a7ff554f2d79e06c7ef525bf703e85ac6c8b32f99a18d49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee2e8db89e46379a13f63f904b4c7118a494d6a08325a014df486fcc24dc3e9d
MD5 12a1623f9ce48fd498213f317bae3ce8
BLAKE2b-256 e0f0df8cd304997289881b6f714792f026b2a9aeb9cd40910217899430910ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 284c827d7cf97f6cee039e158d7ce50f82cdb2f952f4cd6753be45cccf812ff5
MD5 b480a35328a561b9e9cd3aa2c7f78476
BLAKE2b-256 232c12541e792ff689e809e530da95872045a46406e71ca245cd9f29d32027b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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.6.5-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for teslasynth-0.6.5-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 652746fea6119f46e0edbd32ef6f5cea2135fc3f01685d90fc891a2f722c0e34
MD5 883d1cce38b58c9679ecbb06d899a359
BLAKE2b-256 d0498eb459a10712def17b7cb2f4f30ab2c875aba61bc7738be0aa9a977c174d

See more details on using hashes here.

Provenance

The following attestation bundles were made for teslasynth-0.6.5-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