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.

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_Master_ShouldUpdateLibrary master_should_update_library
MTS_GetNumClients get_num_clients
MTS_SetNoteTunings set_note_tunings
MTS_SetNoteTuning set_note_tuning
MTS_SetScaleName set_scale_name
MTS_SetPeriodRatio set_period_ratio
MTS_SetMapSize set_map_size
MTS_SetMapStartKey set_map_start_key
MTS_SetRefKey set_ref_key
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_Client_ShouldUpdateLibrary client_should_update_library
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_GetPeriodRatio get_period_ratio
MTS_GetPeriodSemitones get_period_semitones
MTS_GetMapSize get_map_size
MTS_GetMapStartKey get_map_start_key
MTS_GetRefKey get_ref_key
MTS_ParseMIDIDataU -
MTS_ParseMIDIData parse_midi_data
MTS_HasReceivedMTSSysEx has_received_mts_sysex

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.1.0.tar.gz (1.4 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.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mtsespy-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (113.4 kB view details)

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

mtsespy-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (103.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mtsespy-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (94.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mtsespy-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (100.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

mtsespy-1.1.0-cp314-cp314-win_arm64.whl (92.4 kB view details)

Uploaded CPython 3.14Windows ARM64

mtsespy-1.1.0-cp314-cp314-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.14Windows x86-64

mtsespy-1.1.0-cp314-cp314-win32.whl (90.1 kB view details)

Uploaded CPython 3.14Windows x86

mtsespy-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mtsespy-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (114.9 kB view details)

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

mtsespy-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (104.0 kB view details)

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

mtsespy-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (86.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mtsespy-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (94.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

mtsespy-1.1.0-cp313-cp313-win_arm64.whl (89.5 kB view details)

Uploaded CPython 3.13Windows ARM64

mtsespy-1.1.0-cp313-cp313-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.13Windows x86-64

mtsespy-1.1.0-cp313-cp313-win32.whl (87.8 kB view details)

Uploaded CPython 3.13Windows x86

mtsespy-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mtsespy-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (114.8 kB view details)

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

mtsespy-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (103.6 kB view details)

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

mtsespy-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (86.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mtsespy-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (94.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

mtsespy-1.1.0-cp312-cp312-win_arm64.whl (89.5 kB view details)

Uploaded CPython 3.12Windows ARM64

mtsespy-1.1.0-cp312-cp312-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.12Windows x86-64

mtsespy-1.1.0-cp312-cp312-win32.whl (87.8 kB view details)

Uploaded CPython 3.12Windows x86

mtsespy-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mtsespy-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (114.8 kB view details)

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

mtsespy-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (102.2 kB view details)

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

mtsespy-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (86.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mtsespy-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (94.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

mtsespy-1.1.0-cp311-cp311-win_arm64.whl (92.5 kB view details)

Uploaded CPython 3.11Windows ARM64

mtsespy-1.1.0-cp311-cp311-win_amd64.whl (94.6 kB view details)

Uploaded CPython 3.11Windows x86-64

mtsespy-1.1.0-cp311-cp311-win32.whl (87.2 kB view details)

Uploaded CPython 3.11Windows x86

mtsespy-1.1.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.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (113.6 kB view details)

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

mtsespy-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (101.7 kB view details)

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

mtsespy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mtsespy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (93.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

mtsespy-1.1.0-cp310-cp310-win_arm64.whl (91.8 kB view details)

Uploaded CPython 3.10Windows ARM64

mtsespy-1.1.0-cp310-cp310-win_amd64.whl (93.5 kB view details)

Uploaded CPython 3.10Windows x86-64

mtsespy-1.1.0-cp310-cp310-win32.whl (85.9 kB view details)

Uploaded CPython 3.10Windows x86

mtsespy-1.1.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.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (112.8 kB view details)

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

mtsespy-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (100.3 kB view details)

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

mtsespy-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (84.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mtsespy-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (91.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mtsespy-1.1.0-cp39-cp39-win_arm64.whl (88.9 kB view details)

Uploaded CPython 3.9Windows ARM64

mtsespy-1.1.0-cp39-cp39-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.9Windows x86-64

mtsespy-1.1.0-cp39-cp39-win32.whl (85.9 kB view details)

Uploaded CPython 3.9Windows x86

mtsespy-1.1.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.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (113.0 kB view details)

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

mtsespy-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (101.1 kB view details)

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

mtsespy-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (84.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mtsespy-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (91.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

mtsespy-1.1.0-cp38-cp38-win_amd64.whl (93.2 kB view details)

Uploaded CPython 3.8Windows x86-64

mtsespy-1.1.0-cp38-cp38-win32.whl (85.9 kB view details)

Uploaded CPython 3.8Windows x86

mtsespy-1.1.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.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mtsespy-1.1.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (112.7 kB view details)

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

mtsespy-1.1.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (100.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

mtsespy-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (84.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

mtsespy-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl (91.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: mtsespy-1.1.0.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2d39a086ac0e5af904d4b714a48c348429f85d4263ea60d283152061257b51ad
MD5 776699641ea1610ebd33dd4bb7e0f783
BLAKE2b-256 94499a30520c8d62f1609cd48f77134496c69851281fa146daccb26b3fbacc19

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e389ed85d52f76816a4fcbe7210553161985ba44b740c7a98811f51e8c0a4c10
MD5 8ff8ebe88ecaa3679c6facfa734ff054
BLAKE2b-256 e8708ed0d31973d49d6f6bb9db71f59159918f0521d66f18ff5bda143402b75e

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9ac93429e1c14aaa5dc7647f7423a76fdb6c887cfb5bca2da4d875c7771602e
MD5 bc77fea027d44faca8f5536051dfb910
BLAKE2b-256 28f3f74dc0bd9c54e683e81ddb3724910a95336e67045bd91db41b1389ca59d7

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e33bb710b182f771cafc286af6c1c362aca3b42a96091c9a242ea7937c59d03
MD5 724a40acb273de0fe3d0937be6b02661
BLAKE2b-256 0c5dbb35728120862fce18d64ffa26201c5ce4cc4c5a4e6a1fd4d7fc2c3d9595

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0cfb06eee7322fa889526256df9b08008d4d556cf1542c340b7f3f4ec72202d
MD5 6460c3ba4ca73382cf04a72bd1f1e248
BLAKE2b-256 bd28f32b8ec0a3087998ca35678f38d5e6bdf1ec73fe5802f21bf59661c9bbc4

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aca940d5afb9d1d485aed06630aa255c05b55607ca7f0519104299cee28a468
MD5 f7da262618857b6567e169219a2aadbf
BLAKE2b-256 479dc9077d1e8f428870482d134a487482ca96dc17d9d4995f27dc9189cd8279

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef802dc9fdaf8de03fab67d66a59a260b803e745a948ead0bb23ef2006c92d9e
MD5 3ba66c2fd86715c76fa1dd5fb298480c
BLAKE2b-256 500da7df322551e6a2ecc87b0be4c4a4b6fe54de699d37f81359dfc12b7a78d4

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 92.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3e9edc7a2473b7805fa2dab17244c1a16f21ed0562c99dd7530a8f326e2e6e37
MD5 227ae6a71e1ecea44420bcdd21e1d916
BLAKE2b-256 234c6c3eb153fa4061ccb380802c8925bcbdeb4bf3ebce1ed692670cfad0f16a

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b990674d097ed5a48da42218fed2b39723ac7e72f045a584c03f7d11d07d37f4
MD5 4b6eae9372c66e83ffdccb35c0abcd70
BLAKE2b-256 cdf11467051751107e83ee5acf02d7f6fc5715ec3b66f15f25bedd376f504406

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 90.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7305f71a35aadbc05796714437017edf3855dd4d83af49eb8ca65de66003efb3
MD5 ba2971ae86e03dbb043ba78022c82578
BLAKE2b-256 e7a0aac0467738ca571e505b1411a6e84c6aa11d8871de6319f59760d4543e7f

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3c7670f19c06fb598aaad1e2e1f66d7bd97e97aab49c7f332a83761e34cf65b
MD5 cb784ff35ae369f8981bfcf40ab6bfd9
BLAKE2b-256 fbeec0d8ee4068d19e7d63cd9496790758bd3385a7faa009c2e139c3bd9f94c2

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 271603f0e43fa803b05ba5af53f8bf1d38f524c07125124c8b9920bd868c97c1
MD5 fcc9f20efd6cea3e4245deefbd9e4db5
BLAKE2b-256 1e8aae8ed53423ec072b112ebd2db75a35a45585de66f5d69fa53ce7d0fd26cf

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1241837835ebd1d14d407c267401e800fb6c3ecfd13bd99d480f00d509b58455
MD5 a6c8cd5a317d7040d065463b78f2457a
BLAKE2b-256 e01a80ab2a6f93e88b37cee84c211485109ff1417f655333095380a88c4da0ec

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cf8f187e9c8aa391ab16f835556904e2d2273897105dc93f2228c3b0a69cc8d
MD5 b88d41390383b0aacc364b02a3f10277
BLAKE2b-256 53147a56aec14bed92806d2b7f019d453a2d035d0d1259997962f783c9a893af

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f22aa57a3761c76944fa08b6d59cae7c6a9960ed8040702a290b0368ebf16f2c
MD5 9664aa33f58bfd14d5db15dd6c80e24a
BLAKE2b-256 76649e8b3d4c8f06d491a4efcd56c60ba2b99d29e94e0eaebad1cc8ea8b616e3

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3655bb5da8cf751959a38abd06e631ffc343afa3fcf9021f469901eca4354319
MD5 49fd310181631d846eefe6fd16edbbd7
BLAKE2b-256 f0fb966b67bc0b580463e83c78dd93300ac653069916b4051e28b1dacae44cae

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 89.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 43e97586c4ccf723c42c269d79a4c76af7979b0a485b77cdfe3f00088cf6e1e4
MD5 9b489313f9d26768989f88c34af06243
BLAKE2b-256 8567c8857f0d8fbfe792165c551c33d6c9b7b18647b58a708494f8c4fc6ebb68

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 364ef50d0beafd756a8e1c2c28ae7f68bda3095a04de67f972f7297b07abafd4
MD5 bdf2b2ebb1c800e1bb044b3c38361e4a
BLAKE2b-256 f0beb19df752594a4c66ceee6b9b58356add6ba47f95c92a4f8729c80eb07fd3

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 87.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1525967f553d6ebadbf6cab4bcf489680b3b7442d15e4402966b9338001b6bd5
MD5 b90b982d8fdba414bccc68671d967856
BLAKE2b-256 bedbc22ed60d8eff66457656530c9348619923609ee6ae967e85d81491d11a9f

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f534e827c5e6e2963d3666cb0ffbe488b93f6eb85dc3114c3fe91ff4485ab9d6
MD5 96c03fbb74c31e14f55c868b94e2672d
BLAKE2b-256 27f7a4d8676e7f2f3b8e21fe410ed599b8f6f0980703457c6b30bf24f7bb4941

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4396006e42e3357fd869df216dcd2e292163edd2940d7c078a5409c480d0928
MD5 fadfa00d55854b08685a82f097287b09
BLAKE2b-256 c0eadbe867f314b4824c44187b3cc0ae488e2385564ba7bfda56b9557c4fd988

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23d9aa15405b0a55998e513d40777e5b349d2704f54aef886e9ec340d4b69540
MD5 b3de28c8fe33970d9fa3b7aafdef5719
BLAKE2b-256 109754e3a104fc7dfdbc99ece5e00d579925fd28d69f562a4b1545d32be8c56c

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c44d33c9866c53d271739a79e2a7ee84924991e1d97b0cda3d1c0d5e8c05c2e6
MD5 4f3b39b53b0a94ab0dbaa2df1dc6793a
BLAKE2b-256 1555361440a08d4a7f562eb38d2b007cc9d7cf90910974f33a59868131689e50

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7614b2e56b5d5a2a1d4d47c0511a5b2d0090b5f9809d94c612263a41705681e
MD5 48a566bb1e2f6d3fa1364f6907ae6d8a
BLAKE2b-256 7897ad2aee760ac3f767617b20de31dc73be7e64b6997391388be838e14d00d5

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 06e8ae1c4e303a06ac29160a3e04453833ea3a32c060bc3210a1cc75894620c0
MD5 db4a552576207f3305968bf524922b81
BLAKE2b-256 ba64974f734c1d89ab5b3cc64c174d3234cd462d81ea7fec35990f9fe7ee1ce3

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 89.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c188bf7b497d12f81ed3e84645a4802f0be52dbd0ec9818cc4a5610a8734e9b4
MD5 71e6a19a36e6fde272f9d7a7bb2a5949
BLAKE2b-256 c050000256c889d50188ae2c95572ecea18b879fe86ba2ef5bb0824cbc843b74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2606e8f28e927d7e09cec35bc28266a1ce760d7c3b5b55ecc300135c0908102a
MD5 2affb8173db9f4cb74939e4b49e14bf9
BLAKE2b-256 691ad4242387e7906411644659a26ecfa0e06b57813afcb27e303060581e3e59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 87.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f12c731631f58e116b65feda120a2574702c8c19fe12eb5d510e0c7b176adfc5
MD5 f3d36e3ae1c957c554fa89bf467ce3fc
BLAKE2b-256 df3fc3501aac68d67e95f81f3c754768d2e4604c21d41a69ee90fcdf5a1850a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8eead97f4da0dd47aa156b95c9158f2bbf710a38b3f91e035ee2232525b80b4b
MD5 edcc04cb36dc229578a2330da258286b
BLAKE2b-256 08f64081749614f69b56307f75000c1da78c60914987c90ffbf55f24b5c7f861

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ab97546ccfdf442e1fe1c232afbafdb43042f42911d14b7e729ae4e23d465a5
MD5 045ed6d45d47724feb18f613b54bd100
BLAKE2b-256 21e555605b7fd8fae805347b72e6c21fe6efdac8d586408eb1dd300eca3ed29d

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2739500aa353eae7fdea464621e1533d4889d6316efd79269e6b41f07300ae97
MD5 d72428d08309ca38990cf6a8444f6c82
BLAKE2b-256 cfee44f4bb0703175cd0abdea33267ff474e0026fd5a99475da8a80ed17dc98c

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a7c8119dd174d51e9e527d18cf55cc624e4b338eb40b4196383ada1e9d8d8ca
MD5 e8510e3e203439a07f0194c33624b4ee
BLAKE2b-256 d6739b5b09cc4351003451a1e0e774e49e56ef10baff5ee3b99842e2c5e4d0f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99f27634b405fa66493682678010b67ac5386ba2697be4007f6eb8def7c4954d
MD5 3dec2fc9ad659def5675303bfae0c7be
BLAKE2b-256 5b2c50f6382ca5906bf41fac329fa749027de4c8aa443909ccef577c35191f85

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1effbc5499b0fc4e20670a2981d3fae335170da7d18586adb1dfd5e7e5846be5
MD5 81079d678bbdc9b8bd8b783987778fd1
BLAKE2b-256 367be9aad0d415220c79dc0ee7712a67d601818d40746dbefb165975b56920af

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 92.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f818fd05c2b925c3d029de9dff50b79479e351d8d46fb6963cf84f08fad2fe4c
MD5 8af35b82fd31e321ccc3433328fa7e07
BLAKE2b-256 1c6ddb6c06e7b0bb26f15f4a19ee4cb2abe314f28fab393a6efc55fda902cc48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 94.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3cd854bdd6f7f11c025e17b1456e2bf7122e753671604a7cce53c79f99b2677d
MD5 0209b60bf5bf612ec753241d84b027b5
BLAKE2b-256 5e38b04fcf21d561a8f98eb6a65e1804dc92a688c8cc70fd82676b0f20c87289

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5cc4a5e874da8849a3ac1bd522c2dcbbbc302b7e1930d2a3538749ddf31ea743
MD5 d2b6074f4acbb53258773e43d0300231
BLAKE2b-256 c388a69d1f1a405eee88362e827c57a906b43d09e1a7c6e2d92e0e787f5aef27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a45296f26c659ae8c2c56d8b78320be1c97b81ab6ffd197c18ac43d078035442
MD5 42b3bd8985cd30517a6e66a1d0642453
BLAKE2b-256 e14fa6ddda125435526a27545044bd4ec597e5bdf1e38ac3decf6a3e8ac733eb

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62e5c1b728e2c68df159b5c2b75e67c232b32de0e9ef0f4d26e2cdb09348b493
MD5 c93a5ff786d85837285867ae03437258
BLAKE2b-256 83e577ffbbe47a9ab073e76e0f4a0c5255b5632c9f3f291d29ad9831fe6de561

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a02e4aecd564ec8e995e7dcd60c36fbbda6f05797b063c0c53485b956120df2d
MD5 717eb4f158c38a355c102344a973ff71
BLAKE2b-256 60aecc4ce4b4a81cf2edd048160b775be741238ba88c234524f5578dffb042a6

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76c652bb2802699d561c6598c422d3354756c95c45a18ee2f5475c620e30a37a
MD5 b81cfbaeb12376cab04f321eee395a94
BLAKE2b-256 020eed5bdb6e448248f321704c68473608b0857bdcb391ddcda4ec12bee268f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d03f8b8dc627e9fca717e80eb3b927cbe6508d1dee6d2331947ddbb214367d05
MD5 c25c8b80ae8de80f4108992bf81bccc4
BLAKE2b-256 d225aded4ff58993400cde81b36088b329f46473714b53c6fbe3370357c6dc24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acc2ec9a104c8792b16fe0fc81b995ec411a4f6f0e713eaa5d91eb71d4519628
MD5 fff5f56aeba095d7b46395d93e804e71
BLAKE2b-256 99d9d33134cc61cff73c249a8c7b07565da528e97769aba06faa91ac79c8539a

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 91.8 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 577e2ae5b3c34187628de716573b3b83c20e6beb29d78172174c81e8bb92d370
MD5 e7f91f663a8bd647cad5b585b53adaf8
BLAKE2b-256 946dfeeacba07b89f03458cd7f6454d2c20c6e319baea5e0455bc068fe5abc24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 93.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9b824d02fb5efb8cf1f2ad4bd11149403fb1297c59943d1dda7f252dabb813b
MD5 8607acc0cd7c50665e2cbad488ea5d9c
BLAKE2b-256 656fae7d8a741cf95ed23016c5f621ee9d9db636826bac5746adc28a056d3959

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7d7d5c4737c32aae572388c79b0777a0cca9cf72f01872b32f26c09aa5365172
MD5 262d5aac917e8ecfb5185b97730f3630
BLAKE2b-256 c7a167eb81d7b6e447dae3ef5abaa7e2d0dad67ca1058e40648ee39b81153d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f83c207ab8d2ac9c151af7140728c3d7fcc1b4a654bdca6263711101113c79e9
MD5 046678fafd59435eaa64479ba2820e4c
BLAKE2b-256 7de2c956ed5c3856563c2f58ac0369a1750d439b5c30fe1e13b172fa53c18753

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0d0b1751dc84c67732f1720821043dc5b1ad6698915e0abf992ba0f37c26a6f
MD5 41b1a04b10c97c02edc91bace63d630e
BLAKE2b-256 8bb728864e65723d297ee361ca49e4eb142bfff874a695326290c40978df5bd2

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7e1d47332043fa00b1bffa0e22384637f0d916367d9792c76eccf11fd9451d9
MD5 91d53044e9e2395f3417f1c06e34f635
BLAKE2b-256 d1411f9c31089366932f668dff79b1343fd43fff768c68efbbd97d4905296060

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26060d790cf2d831d06735ce6c089daea4cb1cd4efa2a438a2bc91bed36102d3
MD5 40d85261e85fd6cc3e05fe9a0510a291
BLAKE2b-256 12e7aebc391ee1e03c9ffe381711a32d37c973d7959840dacb347fb0ff6d87ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b13580d2c29158bc7e6e403740a40ab2ee6f160bca084d2ae2d2e5c70ea18ebc
MD5 9180d1a460c174f6f7d363d0c298146e
BLAKE2b-256 cf83380cf5a8df2934810fa9ba4854bf867dd03149f3db08709b4316f898ed35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd9163bdf24d468db6211c36d6bf6beca91b5fa2c3da0f83a48696c1ccf9a822
MD5 eae7c4db78cfaeae69a64b7ab8140ca5
BLAKE2b-256 9772b43527442369492772fa917cd474763d9a458120f3b8ed2edd8a7a7c241e

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: mtsespy-1.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 88.9 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b20d8884c59157c6be2f8bb0ec41b422ea9955b6ecf502d9908bc3ea626dca73
MD5 22b50df97acf55c321d51b7340431242
BLAKE2b-256 6969f9caa5b8555851108baafdabdb0de9f62fa0e0ef3c4c7be0eb766c028112

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 93.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3bc5bd94b267a7922f278c47648df00492d4e57370a863a547ede13e57e7fc02
MD5 14955c4069191b041a9badb368ee4f16
BLAKE2b-256 7103455fb41bdca7cbe35176fc52d405b6d6dc44d66b19793d53749d98b2994a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 53879cff3fd6f82773186d31dcc5828763c93e6d74e801bfab36375edca5bb8b
MD5 96d7fd711bda4bffdc6925cfdf1ff6db
BLAKE2b-256 27261de412c5e4bf7da981cb9712017ea19c5182adbcb71e0dcfc2b35e57ec50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39ded1b18ee329acd11e448b8f68eed5660d379e0caba6f94024708e0c8da1dd
MD5 95c7453e95d1a32ac0036b0b4ebb35c2
BLAKE2b-256 30ea5698157e4d4b74b1012052cc9a7877957d058e7f5006a2c37c7f9094c4dd

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef4ab5c665bf96192720fe568f24d43dcbc35f3c1967a6f5a7b06990faf4978c
MD5 3e890a0f82acccb83f4339773d9dc3a9
BLAKE2b-256 d8e7dc6b65db80cb818459ea39d9175ce051c6d57018a3bafe32157e6927217c

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56ba212ca3eb118eab91349476770cea603de7492b3e2b0ef75f9d0dff3d9213
MD5 832f96141091bf3188f1d23e3ae3d543
BLAKE2b-256 ec96329837f9b5b656f783999f991c95b4b724a1116d3f8f098f184bc5df8f6d

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 041c9f9b94220a1fe9094ebb356791fa3b7972fb818a6c6b0bd3c4d38a661c64
MD5 44df69ccf86371ee7b4e8ad50cfe7713
BLAKE2b-256 8a60f1e0185662c7e59e157390154ea1cea2d3b283dd871be02cb9bdcbe78247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 532a713127e35c581eadf9e23e0e9d07c485b1c2d0415e0ea29d225593c09599
MD5 89e42e37d625ce7c141e551906f96612
BLAKE2b-256 46d3d945991e0589842010ba467978249e97b4539a7990a8a354aa1c20168886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b750126838a42cb4b0affa85e602ed211e14baad26bcdedc10a7b091295a3c00
MD5 96bcdac179346522d39d01ede8b0299d
BLAKE2b-256 c81e8fbf639b566cd054d5888f05100930b77f06d0634acbc0c8ca081eab4259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 93.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a7f58159076b63d2341a5f749c3af00ef175c4853500d3f08146a2696ca01f7a
MD5 1a7edf7f54007503bb3a90946fd79767
BLAKE2b-256 6d3387f8c37c2d1c1f2a8be13506fa0066c3c597ebdeb9ab5d0ca8cc190b931e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mtsespy-1.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 85.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 45bc46944966e8794dc0517909218945a01a340c2306f17252cf65065644fe02
MD5 6e421dc1b485219d51bb2bc1da9a6e0e
BLAKE2b-256 d81da228d7866d87a27f36fec46ec56fd3b599e24024cfb84aa7bb58f1386528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c79f26c34d2faee128b353c4f0a4a53ed405eb00f9a9df02faa5f454378ab19b
MD5 ca0e22a053064221ea0c28e0973b74ea
BLAKE2b-256 48050bc57b4419bf8d96f02146ea94c7f902283769384ed6ad877db197940cb2

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dabfbc50454d533a613aab7c4ed28e46a94a3563706aae17bcd61345e49ecee
MD5 61198e47d4781e8fee36c453f985b57c
BLAKE2b-256 cdd4672409608ad58d43fadad3c8b800a753f3706875bcc884348987869948a3

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bbb267eab41f29ccc66b41be3412f5521e86f434165a13c4afce0dd8104d18a2
MD5 4fe6cacf2adb3deada008e7460fc21be
BLAKE2b-256 c67f9ea5ed6d2bda17ab2820234ca660fc9aa9b3a2ae5924968ccbd5b526231d

See more details on using hashes here.

File details

Details for the file mtsespy-1.1.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac768c7f0842a5844a4cc3fad7c55c59aaa03077cc5988ad94f469f4f235aa31
MD5 42f8de5ec71ff1ad16360fb3d4facd73
BLAKE2b-256 ae7ad80ef9f51397be7abe2bcef073582e313d04f5a047137ec36a20d23021bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f3dae1ceb90534994f92c7a98c7f9720099677eedaa33c8006e509d4c03f564
MD5 dd9b9cd734a954a5e51ba907ab984102
BLAKE2b-256 aae8a1a8899a1e6746cdb452c25c62fb500720db743b67c4df18b7eb7ac05bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mtsespy-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7df29ce50dfb4e994406ac0672675159f0b0ca2315827855a71281ed949fee47
MD5 b67a5eef8e9009e3435249e7b523a3e3
BLAKE2b-256 0bb4d7007aa10bdcfb347606ed31db4e1a54a759eea9c525455b2a85aa57bb1b

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