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.3.tar.gz (228.5 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.3-cp313-cp313-win_amd64.whl (120.4 kB view details)

Uploaded CPython 3.13Windows x86-64

teslasynth-0.6.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (126.2 kB view details)

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

teslasynth-0.6.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (119.1 kB view details)

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

teslasynth-0.6.3-cp313-cp313-macosx_11_0_arm64.whl (105.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

teslasynth-0.6.3-cp313-cp313-macosx_10_13_x86_64.whl (111.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

teslasynth-0.6.3-cp312-cp312-win_amd64.whl (120.4 kB view details)

Uploaded CPython 3.12Windows x86-64

teslasynth-0.6.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (126.2 kB view details)

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

teslasynth-0.6.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (119.2 kB view details)

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

teslasynth-0.6.3-cp312-cp312-macosx_11_0_arm64.whl (105.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

teslasynth-0.6.3-cp312-cp312-macosx_10_13_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

teslasynth-0.6.3-cp311-cp311-win_amd64.whl (120.8 kB view details)

Uploaded CPython 3.11Windows x86-64

teslasynth-0.6.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (127.2 kB view details)

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

teslasynth-0.6.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

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

teslasynth-0.6.3-cp311-cp311-macosx_11_0_arm64.whl (106.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

teslasynth-0.6.3-cp311-cp311-macosx_10_13_x86_64.whl (111.9 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

teslasynth-0.6.3-cp310-cp310-win_amd64.whl (120.6 kB view details)

Uploaded CPython 3.10Windows x86-64

teslasynth-0.6.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (126.9 kB view details)

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

teslasynth-0.6.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (119.7 kB view details)

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

teslasynth-0.6.3-cp310-cp310-macosx_11_0_arm64.whl (106.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

teslasynth-0.6.3-cp310-cp310-macosx_10_13_x86_64.whl (111.5 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

teslasynth-0.6.3-cp39-cp39-win_amd64.whl (120.9 kB view details)

Uploaded CPython 3.9Windows x86-64

teslasynth-0.6.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (127.1 kB view details)

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

teslasynth-0.6.3-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (120.0 kB view details)

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

teslasynth-0.6.3-cp39-cp39-macosx_11_0_arm64.whl (106.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

teslasynth-0.6.3-cp39-cp39-macosx_10_13_x86_64.whl (111.7 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for teslasynth-0.6.3.tar.gz
Algorithm Hash digest
SHA256 6fbaabb980d1ca3a1c8d01d0df1c7ba8d9e40747650a7f44dd895bdca3ea458b
MD5 9c7edb00d6770da299ed51ea826083db
BLAKE2b-256 f4753e4c3c2b132cc6ccef6b294243f69b933656d6f0e565df35bfaccfdb2215

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for teslasynth-0.6.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 161ad251285704200c8adf4fcaaa2f315d8e15464f13bb1500d0f105c0127f68
MD5 afb8f42e56fd778b5e8b9a234d8d4d36
BLAKE2b-256 732a09957936a254b2fa43d7b87b175df6b13b81cbee6ccf7eb537a0ae72a352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18344a2b0612a52f484dda1eead235b750cdb080b06621bb5818aba41455065f
MD5 b66fe1674454a96c2d6ab46d13e2642c
BLAKE2b-256 69025dabcba926820ece60d973d61fd7f112940eb2035d3dfe8ed63f20a54777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddf6f734460342c39d35c378486f801e96673a51c4072a338639e3ba9ddee3fe
MD5 a459f3379e34bbd592b6e6cb8ab2232e
BLAKE2b-256 358308721517acd77abea24d2022e50ed52e77406efc719cba38d6310e77293c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f5dd93c47aa1470f31017fe7c817552140775475bb8797baef47064bd98a55d
MD5 c42b3b6e39fcab0c40846907882ebe54
BLAKE2b-256 831927876838237342b7afd8dca6b8033a2a047cbc892404319ef029ea0aef9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c4abc3779dcfb45e0a162031dd2313939a3efc88dabdf3269890d7f0d1252045
MD5 4f6cc14d0d454fcea734be0a556445b3
BLAKE2b-256 c12ba540e8bed25f2fd9d47dce8a28e527cb1f9ba157d0d938793761f6adcdb6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for teslasynth-0.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a863d5e84e633dd2817ccb2107be55f5fd2fce38e1336c42a9fab45fadb725a0
MD5 00a57293d71f2ed983402ddd5f720df9
BLAKE2b-256 2828ee0c718e042794414bc5ff9880e31cf20090bac5a179ff452518321790b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 408658029abb30f83ee53f68dc7374b922a22e6585313aea2701dcbdd3fdae18
MD5 40ce2dc0736ed97fbd12010dd530cb64
BLAKE2b-256 67574d2a27a1d423829a96f20a0c2d45c41355abdb174c055a831bf0c2d39971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0ed2a53e6163e35685096cf540181a6207b058d04290a10f1a8c9fa65fcad55
MD5 33c707b302f7c992982207d32038dadb
BLAKE2b-256 04a3c6586f52e8db06c918b5f3f4257d6e458f545b637b0f8bd980dc50d3f7ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f169ea53a8146526b181b527a579712cce1c099e1cb37ac693b17ebee3033bd
MD5 712274ad29c0affc754d003cf2789a38
BLAKE2b-256 8ad36f4529439b373b2a9591e10529229739a80d26c127b7cec933142a8d3fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 43e42a9ca378b5880d0f5cc4526b7c5f9b1ad5809529b3c6178cf2c62b958bb1
MD5 aa6b30c28b0a82d68cce663403983950
BLAKE2b-256 07eaa907a3625fa0f3b31c83492564364e1d6aab32ae0286137158f9945d134a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 120.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for teslasynth-0.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84e375fd411b91ed2d68d0320e10f48192548bf0fa80d09c16e2d2241eac0d2f
MD5 3eabfe2cc666a4cca16a1b5d677b543a
BLAKE2b-256 e52734b556aa951164e53a0381879f7c62c377d82a6b6e26b46ef803cb629b69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcfcef6561fb8c9f42dbe38faf20d7b699d598c80123f0737cb16885e3557cfe
MD5 0fb80b382930e026d54f7136707c86b8
BLAKE2b-256 f7805ba1c38c81ebb92024ccbb6918ad02ade53c1c6c2c1fba7c4919c8e54d86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56d18d0a7a588f9d71f4c0f6754bde443687e872128887bcef7d085906388a49
MD5 8d10a3d1427eacd1499130efb0d4bde6
BLAKE2b-256 1fcf70eb44634af3adac0eed6ac8957a5c249f2a2c0052e1b2789c11329d2792

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3fbfc515fb67e7087170293cab7d5c87d42676a0c30bd4a6e9e23d1f87cba5c
MD5 5914a9489a5ebe8b32080707be93fe6d
BLAKE2b-256 d8d64545f35c63deb9625ae4c2f50f8a873710519a5558baa58975cdd88671ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c551063421b9895771c201b6c34bc385f86065b432612ca9940287e6da38ead3
MD5 5c66dadb6077b749fb4bcac488ef5851
BLAKE2b-256 06c142b6be1de72156055f10660e58d2aecc5174dc32b0e259f56e16bf77103c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 120.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for teslasynth-0.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a9d3be716061f255b68a2bd36275396cc85537cc2b02ee74aa1e9039d56649f7
MD5 ea5b1e283043dcd077c00fc78d77ba5e
BLAKE2b-256 636bef64dc12a2758b0cd194036f02fcf85b6ca0a700647f80a383045973f605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02a10a8057cb464811e9c4dec555e3545a3a6d63364a410ae7f495ae3ec59bd7
MD5 b4a627ed44d5a71d69ce21e0e5db43b2
BLAKE2b-256 bcd1a9be98a60f3999a0721e532737ea4782b8f93efb0525d34017447e3bc020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dabc9ac9aba2d18e63bd4bff517f5196930ab2290397cb9eee15a91868f24cfa
MD5 6a8bd7e76bba66bdc26576572a41d5b6
BLAKE2b-256 4a71578028588cef7083314321e09e643832c06db0e8c3af676c71fe2c46b072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fd1f8a233a518d34846e33161fac2905243c741ac4b76ff20c7f23626574f49
MD5 fd239ed5efcfffb3d5e7321f9c80cf44
BLAKE2b-256 edb2a06f25c2923838dbdde326edcb4c637622d4cf4faffba577e52f2df0f5b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ed87f534a860661a6e2a1ab5bc12b7f5cc5c36197b38b07c68f19a8b4aff839
MD5 f55a3efa89ff68a1eb6c0a617ed8ae93
BLAKE2b-256 35feb1332c7b00d9935872aa04dc861770817a667f4cb4dc579ae74e4a610b59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 120.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for teslasynth-0.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ebd9bc832d6e014534bbeca13f27009db124d6723c959a8feb47afaabf3fa5f2
MD5 c49f2063c266bd3e25eb0a278850768e
BLAKE2b-256 1b6b13d1fad71b215701688fc7ec66909fc11cffdb9adc3cb4240aef40ee4dc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34072e201d0da5837a1a481ebbab0ab4f226f7652fb36d66fed9f51ed42de7d4
MD5 e0baee4546e8e9ee425a8f31c0805c7e
BLAKE2b-256 cd84fdc47d39865c98063ea912a0408c88ed246b363731f12575279ebf6cdc13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9092b367c9c53cc4571a4f8afd6a953df3082e6086127ab71980ba68435a9be
MD5 2c430cc50e6151157ef55d1405c39599
BLAKE2b-256 717efe33f89780d9766f70d71cab5a91c5368998d52c6267edf8dad0ec9f28c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3d704f3511fce9852a00ee05773b9aad65ce324f63a4942cf11d247a152adea
MD5 71852b784b55138b88677ee63624fbb8
BLAKE2b-256 e3365f09e80ed5f7b9c9829dd0893170098d3cc93b1d907a22385ea3151ebb43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.3-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e46c3ad096d6eda95a83542172eb41c7b1e33650367b78e10fa8e0e6648d43f
MD5 34495d73e8c07403bde9d5122174a23c
BLAKE2b-256 22c23316704ba0f5801cb0703d3a81e22abcec1fdd57977e0d29113d0a327749

See more details on using hashes here.

Provenance

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