Skip to main content

Python bindings for ODDSound MTS-ESP

Project description

mtsespy

Python bindings for the ODDSound MTS-ESP library.

Installation

To install from PyPI:

$ pip install mtsespy

or to clone the repo and install from source:

$ git clone --recurse-submodules https://github.com/narenratan/mtsespy.git
$ cd mtsespy
$ python3 -m pip install .

Using MTS-ESP requires the libMTS dynamic library which is available in the ODDSound MTS-ESP repo here. The places to put it for each OS are given in the MTS-ESP README here. To use MTS-ESP on ARM, for example on a Raspberry Pi, you can build the open source libMTS in this repo.

Examples

Set tuning of midi note 69 to frequency 441 Hz

import signal

import mtsespy as mts

with mts.Master():
    mts.set_note_tuning(441.0, 69)
    signal.pause()

Pull frequency of midi note 69 on midi channel 0

import mtsespy as mts

with mts.Client() as c:
    f = mts.note_to_frequency(c, 69, 0)

The Master and Client context managers, used above, handle registering and deregistering the MTS-ESP master and client.

Wrapper names

The function names in the MTS-ESP C++ library and this Python wrapper correspond as follows

Master functions

C++ Python
MTS_RegisterMaster register_master
MTS_DeregisterMaster deregister_master
MTS_HasIPC has_ipc
MTS_Reinitialize reinitialize
MTS_GetNumClients get_num_clients
MTS_SetNoteTunings set_note_tunings
MTS_SetNoteTuning set_note_tuning
MTS_SetScaleName set_scale_name
MTS_FilterNote filter_note
MTS_ClearNoteFilter clear_note_filter
MTS_SetMultiChannel set_multi_channel
MTS_SetMultiChannelNoteTunings set_multi_channel_note_tunings
MTS_SetMultiChannelNoteTuning set_multi_channel_note_tuning
MTS_FilterNoteMultiChannel filter_note_multi_channel
MTS_ClearNoteFilterMultiChannel clear_note_filter_multi_channel

Client functions

C++ Python
MTS_RegisterClient register_client
MTS_DeregisterClient deregister_client
MTS_HasMaster has_master
MTS_ShouldFilterNote should_filter_note
MTS_NoteToFrequency note_to_frequency
MTS_RetuningInSemitones retuning_in_semitones
MTS_RetuningAsRatio retuning_as_ratio
MTS_FrequencyToNote frequency_to_note
MTS_FrequencyToNoteAndChannel frequency_to_note_and_channel
MTS_GetScaleName get_scale_name
MTS_ParseMIDIDataU -
MTS_ParseMIDIData parse_midi_data

Scala files

The mtsespy package also includes a scala_files_to_frequencies function which uses the Surge Synth Team Tuning Library. This is not part of the MTS-ESP library; it's included because I find it convenient to be able to use tunings in Scala scl and kbm files with MTS-ESP in Python. The scala_files_to_frequencies function can be called as

from mtsespy import scala_files_to_frequencies

frequencies = scala_files_to_frequencies("tuning.scl", "tuning.kbm")

or, using a default keyboard mapping,

frequencies = scala_files_to_frequencies("tuning.scl")

and returns a list of 128 frequencies in Hz, one for each each midi note.

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

mtsespy-1.0.0.tar.gz (2.3 MB view details)

Uploaded Source

Built Distributions

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

mtsespy-1.0.0-pp310-pypy310_pp73-win_amd64.whl (195.5 kB view details)

Uploaded PyPyWindows x86-64

mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (291.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

mtsespy-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (180.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

mtsespy-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (98.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

mtsespy-1.0.0-pp39-pypy39_pp73-win_amd64.whl (195.5 kB view details)

Uploaded PyPyWindows x86-64

mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (291.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

mtsespy-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (180.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

mtsespy-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (98.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

mtsespy-1.0.0-pp38-pypy38_pp73-win_amd64.whl (195.4 kB view details)

Uploaded PyPyWindows x86-64

mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (290.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

mtsespy-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (180.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

mtsespy-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (195.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

mtsespy-1.0.0-pp37-pypy37_pp73-win_amd64.whl (195.8 kB view details)

Uploaded PyPyWindows x86-64

mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (293.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

mtsespy-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (194.8 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

mtsespy-1.0.0-cp312-cp312-win_amd64.whl (101.0 kB view details)

Uploaded CPython 3.12Windows x86-64

mtsespy-1.0.0-cp312-cp312-win32.whl (91.4 kB view details)

Uploaded CPython 3.12Windows x86

mtsespy-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mtsespy-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (149.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (91.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mtsespy-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl (100.1 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

mtsespy-1.0.0-cp311-cp311-win_amd64.whl (100.4 kB view details)

Uploaded CPython 3.11Windows x86-64

mtsespy-1.0.0-cp311-cp311-win32.whl (90.8 kB view details)

Uploaded CPython 3.11Windows x86

mtsespy-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mtsespy-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (148.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mtsespy-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mtsespy-1.0.0-cp310-cp310-win_amd64.whl (100.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mtsespy-1.0.0-cp310-cp310-win32.whl (90.7 kB view details)

Uploaded CPython 3.10Windows x86

mtsespy-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mtsespy-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (148.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mtsespy-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mtsespy-1.0.0-cp39-cp39-win_amd64.whl (100.6 kB view details)

Uploaded CPython 3.9Windows x86-64

mtsespy-1.0.0-cp39-cp39-win32.whl (90.9 kB view details)

Uploaded CPython 3.9Windows x86

mtsespy-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mtsespy-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (148.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (90.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mtsespy-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mtsespy-1.0.0-cp38-cp38-win_amd64.whl (100.3 kB view details)

Uploaded CPython 3.8Windows x86-64

mtsespy-1.0.0-cp38-cp38-win32.whl (90.7 kB view details)

Uploaded CPython 3.8Windows x86

mtsespy-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mtsespy-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (148.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp38-cp38-macosx_11_0_arm64.whl (90.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mtsespy-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl (98.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

mtsespy-1.0.0-cp37-cp37m-win_amd64.whl (100.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

mtsespy-1.0.0-cp37-cp37m-win32.whl (91.9 kB view details)

Uploaded CPython 3.7mWindows x86

mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (151.6 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

mtsespy-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (98.4 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file mtsespy-1.0.0.tar.gz.

File metadata

  • Download URL: mtsespy-1.0.0.tar.gz
  • Upload date:
  • Size: 2.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0.tar.gz
Algorithm Hash digest
SHA256 5aab32f03b891b5968c00ba383835213764e1e307839e14176d57297bc28512c
MD5 4efdb5e17a0a5ef8a34ae0783a52a8e3
BLAKE2b-256 743f05fcf07de962e9a71bb8fd37627433e2d66a0944a8286f268ba6017aa82f

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b1dd23071687c5d8d37adff5aa391afc2a5772f21996d0d9342fdc45ee67fa17
MD5 9870d64dd757374d5ea806fc917bc986
BLAKE2b-256 67eb11ef4826f9cc59f2f01f8b1f6b26a16a615f25cc4b0e4ba8d8a87746f034

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3681a4855f56f24674e60ce008f81db63af248d80bd0edd241c8584d87fe5ff1
MD5 fb8870aa6df0beb885142b5d3ca6abfe
BLAKE2b-256 535abc01c09994a3c9c1c0eed3f7d848675e0bda95a71dcd2ce08c26f233035b

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6290715ea4f04462e60458a23d004be8e9ebe66006cd99a510d5b5c135666f37
MD5 29a8d7faefd391d4103c3a58bcd66023
BLAKE2b-256 8801839f58db53c892567498b767d5f9f501f26918d2b748dce329d0948f8b63

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24b2574674a52d424053b2f4e348c8764ad0578deda109d04d02cbf1d8b6fdcb
MD5 20e52dd111429947f2a76f1b89247e0a
BLAKE2b-256 b8ab09b66fe78fa8e5ef8ffcb6a0b26c36673a59d93aa1f492a3c9e688e8d3d2

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe480998b6d088baae8c3bd2e07925ba25dc4a0b7df3e7340171c5056b2240bd
MD5 41511723aa13218c494f4d2d83a7ade9
BLAKE2b-256 77d86301079c636cd1d35299beeb801382b794d83db3e31c4461ce802fc1a815

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7a817fd988530f1aa3895d178138c30ab965455d228bd7592b0c4b5468a436f3
MD5 5929597c6905b3a95109a6a7e00f52b8
BLAKE2b-256 64a7ad453f9c73583ad1989d79a382406102df2ec720b3db8baa33fdaf278301

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a328d5afd9eb3331da2c1324dbc9590f595a617d4e76c5e1b8748e1b1c438698
MD5 63b5468f5f8db900b0010507cc43886a
BLAKE2b-256 0c1e0e25204ebee8198ecb5804dfba6d37ed12b52ca415594514574af428c065

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e0708ea4854505f137695fd2b7a0c17f9e3ba4516f191711bfdb14db750daf7
MD5 749b9d51b565ad65271dbedce103203f
BLAKE2b-256 812d94d6b70da1d529cc57d23f426aabed6c93e9c17c9b574d7ed8300ad0d4b9

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9607c8cf6301739b8de43b3b16cdbe50a1a3f689f1448db0bed48ae7864be058
MD5 02c4b02054ae2484caf257d69dd8df08
BLAKE2b-256 8410b64da6dbd61d77ffbbe5ae248d3dd6661d0d32042c4a73570dddb8d3ce19

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f60e61ca33d2481d94dc8316cb43f2e573d5d0be8df178d6bcdc2fa889144823
MD5 9f322f473042a5e31b978d2352c65873
BLAKE2b-256 02b095b1c0815179f7f1d52030554cde0d980fb7d6877c4acdcfbe6530230268

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 34a2d509b9b02fde37f75768bcc056028df484361696d41ac214a8b21cdd092e
MD5 9b342c79fe1a47bef2b1a527ce2024e4
BLAKE2b-256 0f20e155ede65f75da631871a368cd22fb335153409deac77330edcb38fb7635

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91c4dace4aaffd1d61447ec0e3e2de06b9d022c8ee832139eb9789f595d96ebf
MD5 e918a943ea3e95db92fc574c2b82963c
BLAKE2b-256 a35e600ec12807cd427002f91ed2c20baa16fc9d7583ec003eceae0f6b42279d

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6af42e7cb083339f921dc552f17cb9b0708018f6e7eeb307062545546ae0b9f
MD5 e2c972e8aec71ac50ff2df63fa2af96b
BLAKE2b-256 e9732e2a9475de8975fe8dac5448b67018f47b0502cccadfb5b2c223dd78a208

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81e98467e1ae99a24c3206e9b57ea2253d463ee86753466270d0b001de2eac41
MD5 1d6d3aef0d5e8daeff018a1d8e8361a2
BLAKE2b-256 fea5094ef243280aeb8812df53899305bb3fbd8e2b39d1ef38cf27e3c6314b2e

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12db0dbc826de8105c4ec377d3b23c6c259bc451c72022ffff533c068822cc38
MD5 b61f3bf780d8a410bbc0450165b7e27c
BLAKE2b-256 8773deb4ddfb4c07276d6aed5aab7d45c43e290a86dc84b66824a3d785bd87d4

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a0f7928cede1e6e561e5552f72e0c7b050acafdcab47dbd133e6afbf71a4d902
MD5 1906d7613d6c6ded230961b4c2bf4f80
BLAKE2b-256 fc888c3bdecf820fbffc7f39f02a5f211a65fa5b75f2920da941d0569428b1d0

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86a8000b11610128bb9ee175aa0939c63983bacba23df80e0ce78b94fe36bd58
MD5 901dc7ac2226aa3ad9b9ce81e99c889b
BLAKE2b-256 1a3e6153bf907f05a89d370f6f6c334a518bcfa9872369b68e2399c4d771657d

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34b2d5e711ac747628333ecf2a976388ec4f0c580f1adcdb7ab8649c6010155a
MD5 4e6541f522a4e1066ae5a0faf20471f0
BLAKE2b-256 ce7f04b1e88e85047791fdf22072f4667ee36eefff39f45e2f0a3276e8743d69

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a82ac84c7f8d4a82df69c8d0b10b6dfdeaee0932e31ed9164b185cc9c9ef0b4b
MD5 dfcdeee0b7191f92691d8e533581088e
BLAKE2b-256 af379e41389a5b43d346a154bd6ea779fe898d5b17259eb3ff8f5c607b89b89f

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 101.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61560195e322c3311eb9c1bb6075d2b110ae523a4faf8f098a4b87216f02591e
MD5 5fb06302ecceb67f1393a8db3848437d
BLAKE2b-256 30abfeb9b5f291f754df9b00a7bff871633ef3be02f0eee6cf51af1b51c2dba5

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 91.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 70054bce0a5247ca972bdead3e187eeeb64b3d545787c326ae4bdd13e2b70607
MD5 68b556c1f0a6eddd87077589bd4f6f04
BLAKE2b-256 cf7971df770c2618d70cfcdd52134f7d26b6133c24aa001470b05982ad7430ab

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e03f874832cbd38b82892188cfbae35aef8f5ab0f1ed0f3f9b92b1cdc6a0426
MD5 bcde210d2ba09c5a230898c7644c6cdc
BLAKE2b-256 93f8cacc7f898fb1d3699312a28761140496ee060e11971b19cfa8e058c65249

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07c0a1732eaa75197792606878baf88954b290cab0726caa343287aefbd78293
MD5 85c849df23f9474f14b70afb2d1d3247
BLAKE2b-256 816b340ff9824f3f92d2e75a5b1b2ece71fbd74da92065a76e2710a8186a5d52

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce5645eae61baae20712b7b8f150ee9eb6aff92ac83f64483b7269340c34e7af
MD5 ffea3db6164d4f45c8fdaefc35c0dedd
BLAKE2b-256 ecfeddad3aca460671127d0cdabea6a240ee713c4bcfe34e2ef2cd6aab2cec13

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37051adad91530c4d44650f7dab1dea3780c617fd4c644afa19f6634521543b1
MD5 758b5ae00edd6628b7c3cfee278b1533
BLAKE2b-256 60f342a0ea066552800d04c9b91976dd4be683bda5084161584981dba71c2b65

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56bf59bd9db4f793b6683a7a77553a4aed0c417c660479eed16530b2ce1978fc
MD5 ea7b606822f8a42fc0fdf68ca6cf1c21
BLAKE2b-256 4b98bd9870cad9d484b5dce2cfa82907737e77f6d2a7c2beab6c3f66b350d5dd

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14e15d7e2775e3f2d112a97d51b7d4f9c03dd3b397f654f857ca99728e646e6e
MD5 16cefcafc61b4eaada6d1b41ca71ec22
BLAKE2b-256 ee2f1dfae136dbdcb0cf3cc11e67e1ac0a7b1e8e83434d377eb6971b1b202f1f

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 100.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4570fc0009674ed0e4e24f33cb16c86987717532d768397e74df4b0e15214543
MD5 183aad7bac1161796943823092b6e0ad
BLAKE2b-256 2ef3acd98afa165e76542f6f52685151ddb95bec337f0fdbe94c3ccd881c6982

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 90.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f4361c5dbcb3fff6111e623452d9e94a8d11372e5cc410c308baff9b82eb11c8
MD5 7111ecbc793bd0418e35b10bf85659a0
BLAKE2b-256 c08c44967b76eae964a408e13aa8dd162eea968b0466145af0780aca7d64ce51

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0eb7c55e6d5bcdca89b5e7f6fe187635cb4f85a277315f1e42f281628c861688
MD5 1d2211a7b707693784cbe1bac1905483
BLAKE2b-256 62a19ff4ac70db967bfecd309c6a43dc9ee47d5436cfbb5e0cd15e3c5be4d0f1

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e62cc1e5f0947f585079a59133dc6756c6aae1ca1fc681894f16fefe2c54e80e
MD5 884e2d40797da5b6193d2dc649c347c7
BLAKE2b-256 7f2e79613be8f11d2cd4e35b1e7d0832929657b209948d3f7be3260fa7f5bd87

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724d4cbe219ec7f4e9736345f133c6afcfb8a2fe1f833a513729d8376bc6bb84
MD5 5a9082cbc5c9f7214d7396722bf995ae
BLAKE2b-256 214c890d902a5bd7bfde5c8da4fbad078e7d80e30e9c13bd8205e3f631d4f86c

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d85bba3ca02e8db210a1c5f780bb15d2d30ddbf56869f281e7ca2649bbb012d7
MD5 129da472167c9f6694f348f83d99f682
BLAKE2b-256 7e122a2dd6c17d98197d1b7747ca479c608a931bf91f80105604c4aa17960673

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a74e3fab7f519996316032aebe2d640a3ea4f019a98294205fc39c3a1c8a4959
MD5 2f7e212dcc4801f30bf25a23e805ab62
BLAKE2b-256 5e6f530d7fcfc17dd45b96a7a7671768d022d4c09123f6b4dcf52c68b12e718e

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 401b823e5a778b3d60d9ba9a75641d922d1bd0089fa171d994da9cc4a40a6ba0
MD5 e65c04be6ae3447ac2440fe79f2a890c
BLAKE2b-256 048248a33a8c8ff730221a350708e48574f82e17ef35a75cf6e1b73b705c05c8

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 100.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 969f4fe558a3fecb61d4dbe60b2203d23cf1737c10faaaaee9d6b5237ae32c77
MD5 1091c2eb08a670eb454c4778fc422cdb
BLAKE2b-256 457b2055412e0751559f230fedd8c1e2e1fb23b84bd1c1a5daabb5194ff43e51

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 90.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cd3fa7b7e502ff90292b952871a72b2d7a9111c0ab646f5efd489cc8eb94e74b
MD5 b8955542f50b8616813cfba6771576d6
BLAKE2b-256 f280c01f4de512bb0f0c18aa64304499be61040750c6e0be50e6eb9ff0886b34

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eae36e84ccdd9cf07c59220814637555dd01f399aae5848d84948c64fa04eb1d
MD5 3ccfe7afa39002d6f6a35e795152cc2d
BLAKE2b-256 bcff084d37e2580ff007ac68bf4034411c6d0aa310320c9eed90b5b58b0f1584

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b7001e8126ce3c0b4ead09e9c3dc6476fe17d0665f19cf94e11532c00f62248
MD5 bb3495ef1af0bc45e6ea3909f442d89c
BLAKE2b-256 ba6fb2d70d5d275103bc5861b6c9a4cb9804a86245011f4d3f9e94318b623dd9

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b26016eecb13594e8ba0190d52ff8acec347d9ccb9026023b12dece7cbd9599
MD5 9b01657c4a94fedfc39ddb764dc6d436
BLAKE2b-256 14aef7d72e9015f09f552b702897b446fe4139e237be9f6b2874758094bebe38

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 11638e0b616102aa21a2fc7d14f4c7a7ff865e0b5436c4b808c5ce5a9cde7bd3
MD5 93a9dc94520071b3fd3cc29acc536144
BLAKE2b-256 f4b7ffaa09ebb250c9602d68293dbcde692528150d6495b0d7cf3c8df8bfc258

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45c27976aaabb149f8fb9adfe4d60964eb1d3ba4363ce597692a78c2da5a2b78
MD5 976e4b4a98a70719fc6d1b8849bfec98
BLAKE2b-256 b4ff6af71802bf78ad7c6d94e4619a3e6ebc4d92d9e7dfe0cb8e862fc3296a56

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4166e8f913ce5a2935887bb504ac19a7e3a970e36b70d4fa9d58c47657b0f69c
MD5 dd41de4b97af19e68fbaa2a2fba767ad
BLAKE2b-256 3f4b6c8b0433cb8821b56752874ec1505b36cf7d6e0c84012fc5a0eff27514b4

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 100.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e55f3fc1b383b762e7ed4cfdbe268509f25feea8fc314bdf83a9ac793e4c776
MD5 6498963d344dbeee3113ea72150082e2
BLAKE2b-256 83fb155324dcd9398dc4f867dfbd6dca5a5e7eeb489ed7c950a3f90658664562

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 90.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a1980e2d27bbea7aa51d6f4fe5626609fec57f632cc69736bc2d443b8fd90058
MD5 434282e1097bda66c3b99cbe5ec81588
BLAKE2b-256 fd96295175e24f7ec9433fb08ddd6378d7e8fe53247e2975caf42e1bd638368c

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85ed96325bd065916dfaa2e1ddf9f7f9d0f8c501770507e2536376a8aa6b021a
MD5 98a9d595592b5e890d05e4e8c72e4ca3
BLAKE2b-256 4ed42ee03a3edc6077cf838c87469200e0e3476f531534f4e05b664625e9f680

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d747e6f319e465f397a9715baa1f95a839340cd2102501c36b426a579622e29c
MD5 312d399e02084837eea6ff07f4a70d03
BLAKE2b-256 6b2ed58836e94379e11e8baee48cc69bac7447c5195ed3be4f52ea3cbd6f66df

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be04cde3c2e0a28a8ac971ea7acbcd5173cc9ac928ed43d62e5eb0c921c017d5
MD5 6ed12efca81c29133e3b972a93d3d92c
BLAKE2b-256 6225c38635947415ec8f5550e4d6c29dfdf8aaead9db0906984a2150b1599144

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9bc1f023f2e7f9ff1748d640ce3bc26419292c57d2bac5d65cfbbeb54d7ae16
MD5 3438c8754c4b72b14bf2bdcad5635c53
BLAKE2b-256 f04371177e49647509f2131f4277ef322b4381d7acde234eeda7e1d66a446b89

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d819e9878841ba70610ab28afcc9ad440e343b7c1dd55ef89bf32b69fbbd9d7c
MD5 516e0059595d0e31d3e7895ddbfd8241
BLAKE2b-256 5db4f6c83e65326305ff9d8bae5b1a7909ee47fb97470ed20223f19d58d2b78f

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b905488608208c5d26135f821f927180642336634fd9cee20abc602b5fef181a
MD5 0a675dc990c7aad7bf7edc417ebd9de7
BLAKE2b-256 d928b2e309f6d46c817ad32f27023f3687ef1aac1e374ca0c102f2d511fb79ef

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 100.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 05f2831e092c98451b3538839195bb7a1e408924dee357504662ab270a58e6ef
MD5 2bb543b160e0341e6b46d20600c43165
BLAKE2b-256 483fb43108a6e0f0a136a85109d03fa0e4a1b7e204174f141532f532c7f36b3e

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 90.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8dd92c20eef261abe41b740e0e6bda39acb97403c36014bb1de15bc1574e4022
MD5 31da1787827c3b67dc8c2419a068192b
BLAKE2b-256 9ea2321e60084ce378e89a2fda8605bdf5f7bc4b80b6b36833d6e2c96c6cd102

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff954d4d9f8afd114d9aa8c214e580d45c71ee7826fab16ea8980b754ed5d449
MD5 cf67d8b7c0d58903806612a3c7bed965
BLAKE2b-256 173b7d9d841851fd55f84e1e0aaa0545b821732e56f37423b0f0fd58fe2b323e

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0cd04d6fad4cfcd55c1e2dbe28c4b4f96b63ceb6fce1bb7960ce8f003eb0707a
MD5 1713d2bc8bb937df46e9de244250b68c
BLAKE2b-256 b9fabb87cf208dc0641d3f23f23f6e4fc94da14a95b3e31438a939f634b7eba6

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8712b7683a5409aec4f726829da2455f2557da27899cec50c8691ae1e7e4a17e
MD5 391613a5bdf58bcda2bb2390fe3b7963
BLAKE2b-256 fb22232eae36060f46a2625d4d823241653ef1ddb9c389f5fd196b14e45c6170

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cf1f31f7393bc48c748333021214c3287601cf11f36203033d0cb389c75372d
MD5 880d71891c6b9d67fd57fb37c9cda8ee
BLAKE2b-256 d44b7ce0b9e443f148330d35407c18f44e0828842b0f59363b3cdcb5e2a46330

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e04fc33da90662a9fce43e3fecabf6c651a9a8b18e47ce4d153ebd5b9374ab6a
MD5 46407cefb645d99ce2e2413edb73d0b0
BLAKE2b-256 d3776221c3530d6a32578645a87db14b047ed87d2341d163759ef4c4295568dc

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01f6942933622f5b23895801080116c604d9967f821f58c03be06b2e54b491b6
MD5 2be0e88eceb0735a1b8e6a1627f9d36f
BLAKE2b-256 7f10685bfb3f06df433806ac18cbca18dba25bba5d8b7e8312dda308195f933a

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 100.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 809a512ef05d837b931097b674c401bdd5d01736ebd3e49e3647d397e95648c7
MD5 f7fffcde207da4a31ac75968a17b3343
BLAKE2b-256 3faef348fa907e2ddd6ed76ac37a7f24ac4a99c090b5181fa67e4d24cdd989e4

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: mtsespy-1.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 91.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3450ec3b53c516ae717e8c4129e577a66cb2d2d7b522527505ef459bb4ea1d59
MD5 0ba54ea6ddf9cade0e016e1ef1553b78
BLAKE2b-256 cb251782755f0ddd9ab5a9d93aacdbfbb239f45ea322dae2dd5a341a27335c4d

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2da17db1e4c242948384b4c90f25691ebdbb35032d28c9bfc239283abe1cdd2e
MD5 d11109d6a265142a692fae7b580d7ef1
BLAKE2b-256 f06db4681e007c1e9f3a54c556cd41acf97c30cb15b935e113f2b5672139dd85

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63439440ffa27cb8ad62df69a42041d317394e76ae6362a6acf366047ee408ee
MD5 81033ee2ec3c0ff6de28080eed6d85b6
BLAKE2b-256 765f58f365f4ab4b93783ef672236e836b69b46fc92a934b93da67f6181455f4

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d509937ae6ee1fa8db4631d38c0c56cc2978c7a3152ef35e42ded83cdb02612
MD5 438854058fbf911e717a3028dfd80097
BLAKE2b-256 b215a055f799a4387d7e70395e5386618c7931ed4afca1a172b1fc9b141be9cb

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b493cb9e4e4984795e627f7fe27b2e4d9e7349c44869774c21c55355ccb3bac6
MD5 25ffabd6ccd642d983ef66a9a5f8c288
BLAKE2b-256 db6cd45e4c4eef1634629d1df3efcb9fd62eaa4fea8e52a2cd390fb25936474b

See more details on using hashes here.

File details

Details for the file mtsespy-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80794cee15c233d92683380063de2a6950ab69ea9ef542dc13f4b93bfbdb1095
MD5 f8bc51a1a8917e0b5305c88414490591
BLAKE2b-256 b96d71d657c58f4ca3ee795c94dd5a0200d192a768fa08700713a609f34a46ee

See more details on using hashes here.

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