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.4.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.4-cp313-cp313-win_amd64.whl (120.4 kB view details)

Uploaded CPython 3.13Windows x86-64

teslasynth-0.6.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (105.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

teslasynth-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl (111.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

teslasynth-0.6.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (126.3 kB view details)

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

teslasynth-0.6.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (105.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

teslasynth-0.6.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (106.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.13+ x86-64

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

Uploaded CPython 3.10Windows x86-64

teslasynth-0.6.4-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.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (119.8 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.13+ x86-64

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

Uploaded CPython 3.9Windows x86-64

teslasynth-0.6.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (127.2 kB view details)

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

teslasynth-0.6.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (106.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

teslasynth-0.6.4-cp39-cp39-macosx_10_13_x86_64.whl (111.8 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: teslasynth-0.6.4.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.4.tar.gz
Algorithm Hash digest
SHA256 17943645e04787929cde291b64151c139f94de8561d09790fdfa34a992073495
MD5 bcd317877d731547573be636c955e339
BLAKE2b-256 d895bf680272cce1e4ee269c577b40662f8eec77b7b5a9fa93d44aebca4adcb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 379d0e7b3a896689f09910eb612217a92061fdebd700191fbd96c85010bacc4a
MD5 f20a5cf3102da55f2beca64ae5164136
BLAKE2b-256 8058da2efaf6f1eb7c788d3d20351817e0c13e0be55ee544b37e0ebf5bdf2b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 973e53aec581a45144957601ad8aeabea86cc329b42fbeef0d8b7df1b10b3632
MD5 f290cedfdfa7171dc662196b1cf01cc5
BLAKE2b-256 5ca8bc1fca4d8abb4c1be5ff575729edee5876551e944e39ec6e440fcfc42563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24d32c4139810b874d72ad480fb64163f0f35dcd23672081ec992b92018c04fc
MD5 f415e23e9aaffdeb1961f67ae27b0c90
BLAKE2b-256 d41f541096c50a44bd5c8b2cab9e289b1734f9589a50a0fe5c88ca19bc81dc42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 127271f26bf690c824a9262291ee9aa25dcac61530466be0e3feb8ad8db4a004
MD5 b803818a62451ff5ee5be27a688bf099
BLAKE2b-256 b406ec74d56b6231cb70be27360bd3338354a0c2c5fd2983461e99ee303d42ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 35622f24c907c50a2fb0f23984d11fc51a644243f23a69ee010f5306ff94c5db
MD5 b92c49ae3214dd1a1031ef22f812fc07
BLAKE2b-256 098b87f1eb192e3f3b041689c6dea9fc779802c8da0689a67636073b9d63d6c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 190901b270b74e8793bedfbc4f7100c7dacae339ce108beaba84c1a997bd342a
MD5 94727582e7c5121f9aeeda40fbd3532d
BLAKE2b-256 178cac0244e18ad8ee4bc54b65f69be8bbfd99033eb4983cd55737dd02276351

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11e0efbbe01b61cb0666dc5e00072e7722632016bc79bde7d0d1d4621c5b6b41
MD5 c85fcbae7b5170b1742bd3de083bfe99
BLAKE2b-256 0a46549dd5223305a312640a2141461629459370facc79a041f5bd964e6041ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5770371ee673eabcd72b521b2e94938921cd154cb1a222d49d74e19b2940efda
MD5 0404a46fadd9c0005e99589da30e8fab
BLAKE2b-256 22bfe15990a82aca3ed411d449eaa42f43aeff9eb50e02bf140895daa3307a16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f544e0bea13e1088017da498adb8f7bfde35a4ccc0cafe6137be386a2b1002eb
MD5 eb23b05b0953aa0139194b92cdf56506
BLAKE2b-256 398bf016a556e0fb209c5b5c789cd8a48ba8ca6dc575d81268912cf0bcabeea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f7ac7badf34a28a526a622656095dff85e00f69a4efed94bbbf1e822ab4611b6
MD5 7535afdce201ac04c66ac21960ba7244
BLAKE2b-256 4942e76f2614452ac84ffccf017bbd63843defb85bdb7d2b454c50f74162d46f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dfadcea9bc88c8b5adb8d6b9d35d9184afed457b5534dbaaea14a1c20ccb431f
MD5 d7a389ce8a91fb1cc069bff9034b9849
BLAKE2b-256 e0e6e296284b8fdd112a6b690499e440b002f071ee6460b0178d412392f8d032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 02f1fbecd35f9479ae9d9666b7f82b17f57569957b2debd5d72b2d2dcc8459ad
MD5 4255d135c60c2978ac6e62b43a1bc6f9
BLAKE2b-256 3b1e7e327aadd13a379a558078b23c0a7441566a6e0e4b74911b5b2ea93bfc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6926ba117c7b337bb5d18fc6406e074c3987d79bba9cb9b986311bd9564f7caa
MD5 e60dac00436e2a8f9ff6dbeae5aa7323
BLAKE2b-256 7b4f7b59f64c2f1cfcd5ca7a72d225c6b4df108c54fb97120a1d01d5a6aa895f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 373dabaac688ec0d7a74d247885c934f697f470404431f3ce4de4b69310a552b
MD5 0226a2695a4de923646412795dfe8a3a
BLAKE2b-256 9a384268dae6089592f8b1470dca311a7551339ecd5e5ba10a0cba955231e44b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5d36dc6717bb0d9ee02d9a1968636093853ad52123b181211981165f8d4eff26
MD5 cd8c2c1b1f04ad4f75f5c1c2cc0003f0
BLAKE2b-256 51ce49e6ee0f2cad948aa31d16aa2a429ea1e08825ecc128349d244409fb6e97

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 892ca931b83170a7da61e566eb8817974c26f1d3187d58625aaf9c2f348ef6bf
MD5 8b1bb9452eb471014174e96223367402
BLAKE2b-256 0db081838711d21a0acf4551d9deef2aa84f291a0588513aae14271fd7671d06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 917653e4c8df6e2e5e59af68a8921af10309605f46f1b801f99889c4bc420057
MD5 d621a35034e98d58582d1ccef7cce5db
BLAKE2b-256 ae101f51bcc386809f3fecac376ba3ed1f6b18c734a80d33c0b23375aaf540dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b943dc6fdca064084d1b84e2dd734f65449a28ad79a1d1da2009f422d80a3d65
MD5 01e80d6836d799d317bae68d26a68e84
BLAKE2b-256 f07cbde7119e10805c40117cad0ebab9cd463d56850133129affe3882d737a17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79f38e6de1eb5ed89f0aa18271171725ae440d94f3765a5c3aedbb2aea41813
MD5 ff01c39312e0f16229cc587f4a91d78b
BLAKE2b-256 6ef5e84aad17998dcc1b23b45fb56f5858a26eb22e90199f749aecd9d4e1aba7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 867ead7f3c635b6605d1d7becbd3eb4c7ad5c3a5ea63081435a2c63e9dc47709
MD5 96dd9c8cdbfb577f04a393e65f8eb04f
BLAKE2b-256 a65e113520117f44b0c1672844a4e88748703d4d09ecff1933582cc8560f73ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: teslasynth-0.6.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d61acf15b3a4fa8ce3417f380b0833f71278801c64a855bcee682b39c880e1de
MD5 6a5dc1c11a56d918a33729aa2b8668f1
BLAKE2b-256 0fea0a6074ccac3c88aec8671129388a942f16ac0d4f9fff4b5ac60aa46952c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8df099694736cfb7357427b0f29ee5b9d81499fb114e8134164c86cc7c25306
MD5 892e9facb30c693a3a73f860af4597c5
BLAKE2b-256 c1e21258a577ff5be2410891f438602455c825b50bbf84f1c76d5b312be6b974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfbb19bb2cb51dec71a562cc86aecf750e2269bca2672670fafc626a4f7809bf
MD5 082e8716df5b2dac406409cd090271e3
BLAKE2b-256 39dad9fa2cde33572f4041f452155f52b47ae21c607d676f6226559aac10bf2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b795222681004e04c0d762f506bf24aea49e6d85766f3a7dd98f30bf14089571
MD5 d0b25f182d8539028823935ca27449f1
BLAKE2b-256 be0b66a790b9ebc3efc3f7bbfbee098abfa912d2943bebd78b8024768f6d2b4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for teslasynth-0.6.4-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6c277c6eb057d1bb75616e26d57811189e022466d1fc9d40650ee315729b9048
MD5 31153142d76565de0e8b37e2a1c040b0
BLAKE2b-256 1b09200444768723ddcdb167e4b80932b1081593fb757a95ba10199bff14ffcc

See more details on using hashes here.

Provenance

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