Skip to main content

No project description provided

Project description

Use parse_type_definition to parse a type definition string into a JSON string.

Use build_type_definition to convert the JSON string back to the type definition string.

Python 3.11.7 (main, Dec  4 2023, 18:10:11) [Clang 15.0.0 (clang-1500.1.0.2.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tstype_py as ts
>>> import json
>>> text = "string|Record<string,Record<number, Array<string | number>>>[][]"
>>> # parse a type definition string into a JSON object
>>> json.loads(ts.parse_type_definition(text))
{'Union': [{'Basic': 'string'}, {'Array': {'Array': {'Map': [{'Basic': 'string'}, {'Map': [{'Basic': 'number'}, {'Array': {'Union': [{'Basic': 'string'}, {'Basic': 'number'}]}}]}]}}}]}
>>> # convert the JSON string back to the type definition string
>>> ts.parse_type_definition(text)
'{"Union":[{"Basic":"string"},{"Array":{"Array":{"Map":[{"Basic":"string"},{"Map":[{"Basic":"number"},{"Array":{"Union":[{"Basic":"string"},{"Basic":"number"}]}}]}]}}}]}'
>>> ts.build_type_definition('{"Union":[{"Basic":"string"},{"Array":{"Array":{"Map":[{"Basic":"string"},{"Map":[{"Basic":"number"},{"Array":{"Union":[{"Basic":"string"},{"Basic":"number"}]}}]}]}}}]}')
'Record<string, Record<number, string | number[]>>[][] | string'

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

tstype_py-0.1.4.tar.gz (6.3 kB view details)

Uploaded Source

Built Distributions

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

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

tstype_py-0.1.4-cp312-none-win_amd64.whl (727.9 kB view details)

Uploaded CPython 3.12Windows x86-64

tstype_py-0.1.4-cp312-none-win32.whl (665.7 kB view details)

Uploaded CPython 3.12Windows x86

tstype_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

tstype_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

tstype_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (840.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tstype_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (889.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tstype_py-0.1.4-cp311-none-win_amd64.whl (726.8 kB view details)

Uploaded CPython 3.11Windows x86-64

tstype_py-0.1.4-cp311-none-win32.whl (665.7 kB view details)

Uploaded CPython 3.11Windows x86

tstype_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

tstype_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

tstype_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (840.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tstype_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (889.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tstype_py-0.1.4-cp310-none-win_amd64.whl (726.8 kB view details)

Uploaded CPython 3.10Windows x86-64

tstype_py-0.1.4-cp310-none-win32.whl (665.7 kB view details)

Uploaded CPython 3.10Windows x86

tstype_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

tstype_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

tstype_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (840.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tstype_py-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (889.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

tstype_py-0.1.4-cp39-none-win_amd64.whl (726.8 kB view details)

Uploaded CPython 3.9Windows x86-64

tstype_py-0.1.4-cp39-none-win32.whl (665.7 kB view details)

Uploaded CPython 3.9Windows x86

tstype_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

tstype_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

tstype_py-0.1.4-cp38-none-win_amd64.whl (726.7 kB view details)

Uploaded CPython 3.8Windows x86-64

tstype_py-0.1.4-cp38-none-win32.whl (665.6 kB view details)

Uploaded CPython 3.8Windows x86

tstype_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

tstype_py-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

tstype_py-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

tstype_py-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

tstype_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

tstype_py-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file tstype_py-0.1.4.tar.gz.

File metadata

  • Download URL: tstype_py-0.1.4.tar.gz
  • Upload date:
  • Size: 6.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4.tar.gz
Algorithm Hash digest
SHA256 8c7a2c42fc7678d3b0aa6c55d1192f3e188d49b849e4f3ec5a28687c287fb1e9
MD5 608e5f1627fd2a20fb6654f6e979e36e
BLAKE2b-256 70c59160ec8d1364d8fe3b5d25130e54e23504965a7343d7218a4ffc03676ded

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e7aacfb770108e92aa34bcd7a256383be70b88fa3beecae0607d73ba6e8b356
MD5 caff886e621225cc8f0b1699992b9933
BLAKE2b-256 474a6872cc9b9aed694560d6cc8e30659ec5e5bf464dee6cacdc51d6532f9ad9

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a11e486b88451ac1c6edd9edb6fe70e12079d2a9038ce7decc10d298d4bf4a6b
MD5 2e43681d64fe1c3947640a523a3bacd8
BLAKE2b-256 cdacd22df69ad7b26898063020e7fc1bcf23cd75fddd1425d5e617ea405e7ebd

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10e18c31c5bb1722535d83ba3014909ee911867f0ef05c52a09a5779c73b7fab
MD5 abc302cc5041dc4d3fc28f943a5fb699
BLAKE2b-256 10d22e7a50f70bfc3c0d780dc5ddff5e4999558c7b05a6498dedcdd477eb4468

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b58489b29db70cfffd4757a4e4e6a5b299fedf25cbe0159e4450cbc07d8937ed
MD5 921696d33398b34ef8eb01a3cc5088ac
BLAKE2b-256 15d1bc6f2eb0c2bf2a0908b820077ef6d7546ea69e12524d688f33bef906a99b

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47d322d91f99d9458bca1e76f381f6aa0dfa9d744af51b378b2d350a3a59fa53
MD5 555fa1383ca670f135f98c0dfc9bab5c
BLAKE2b-256 84a8e5a293f0411bf5e83e8887ccf8adf3bc62583b3ff238ed7bcb6ba4cb783a

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41c89ab542b90b7c0daee213be4e518cdd01414c8d8dd9f885dc2324dfa4462c
MD5 086a18dd39bbb57da1a048784f821216
BLAKE2b-256 ccbee9e10f6583688f0b614130567519da8a193d25aa74a39babd7bdcb0e2412

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daf2a484b15b5749776b38980dc628f406293d5f4fe820460e2de1e121665d04
MD5 de1d9b581d2275e4f152ac112ffe5f34
BLAKE2b-256 e0c9d3c7480b5b3d317b8b3a11a12eb337fc206d29519f6d4e5d6435363bc4a7

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d02f35c06a1b466e1cdffa3fa4094921f22226dbc441fb0b355ea2a5b432d6ea
MD5 86d20becb9583eb0bb3e2edae246daa3
BLAKE2b-256 97f073ccda6380c3191d3c4a0fedb3c58f88dc242f104bf75f1af076f30c5c14

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1c13f489378366aec9f78d7ad2d8376c4a786e85bc72c940cbeb044056e7e60d
MD5 03c568ccb3db580998138fb5af30a62e
BLAKE2b-256 b21e4df81f65f6df30f27b2398d753d7d64c182e387ceffec556a954d9805842

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84692cb707cc15dd0c649716cac30d365428daeafc39ebbea2b8508759df8222
MD5 2fe4a25cea66f344da827458a0a0444e
BLAKE2b-256 d18466330049c5743ff9d84d39ef51a933b0ab314fe009901ea47d01aa99828d

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5f8e640ffaaa43e00cb200a412e444a23dd268e90d5c32028f3a09da83bf948
MD5 32254060215e72e0b14e48317b2ffcf1
BLAKE2b-256 36492334bb323f19085ef5963fa4aa55a2b72e0a19ccebcaea89cb2347ba42d6

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ad467f517a4efb542b47d27925faf109d185acfb1dd9148afc6817d67f998b0
MD5 f6ae09861478e135d3adc38470fa5671
BLAKE2b-256 c7440951f205e5642ee1500b619e90c800bdbb126893155b229032d575a76520

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86748a9c96fe6973b5d1b164ea996689485fa510c9afb2a39ee7a67a681ba87f
MD5 2de59b18a5294d83495801def3790073
BLAKE2b-256 256190626f390c048302544bc16d9e29ceb59d9025e2e58f90064ce79cb72afd

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23427c5d9adf354eac74aad546845d0599761cb14e6d70d53b2ec5e69a9dfabb
MD5 0ea9739537b34fbcb676612e8d089daf
BLAKE2b-256 a2361d180066b894cf5a70f26030557f1cb506222d63d8914702c9242ce7223d

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69edfded994843dbb0e01338e26461f8b8deb286a311aaf5796e6c7f7d855af8
MD5 5209b125b5013b9493f86858fbd429ef
BLAKE2b-256 3b41dc18e41c597d4e12e358bba8671cb6faaed747683939112dba6eb2bbcbb4

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e3abfc5be62a19f2f9b25215e1f4a0e62d476352fd254fe9d584c2979150b0b
MD5 b4fa6f70829fb0f12471382a5ffe98af
BLAKE2b-256 1a1a7496f72e21ed9cf652978750d1415bb753fdbe7c7dc3ea8dd9306c1a2ab0

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 127d2e05710bd4ef40a23e143b8ebfd69be7fef510a0e84e5b52c9329de093f7
MD5 519989b4c7d4fa4aa6c3eaf882b86d1a
BLAKE2b-256 2fe935ca58f72d7b50ba187432f6657cd212d2bdea5fee77570f2ff7319ea33e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 997db7f0fa37650d59da8cc9bdb9265595a944f49bbbe662f409f9f04f5d4b37
MD5 ef843bc2547d0d618e928ee3af3080ad
BLAKE2b-256 5ccdd8c90c44d37a72cac9c64af450acf975b384d0d7e28776a5ddd5c668ae1a

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2317c545161bac9542da710052d6b9a476a95a1b0f7e748650c77d18bed1ce0
MD5 56ad9b6a2252739e19e71221ac418978
BLAKE2b-256 d2e588f1a20ea3b9e13484cea9a905d5a7f770003e124833dc99672065b61d5a

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-none-win32.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp312-none-win32.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f894a1a771fa3e9d52a36742245e9c33287925b67fe75ad738872f88a834cf89
MD5 14cdf765611d51d7ad70636144551f88
BLAKE2b-256 acaffc8fef2a70ed601dd0839aad703426785236a46beab76a415ee1f6203c64

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5c6e0c2c9f8899204314de185a5535de01e26394a1e3fce2905a314a35bba5b
MD5 c35a69a20209139e7c799fdcd847ef12
BLAKE2b-256 ffc23d208a5c5eda3495f0599ece41ffff1ce6699eb2c80fe26760cdbea6de09

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c87d85934991d2d87dda2979a1b4bff9be7a8c2075819e2fe6a2d4635a42bee4
MD5 6750710b361046dc2a5f3dcfe7abd9fa
BLAKE2b-256 87f395904b2e842d4ddca7edd01817e7e24691a240a6739a909f021210dd5f5e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8fbe53b0179534894ec1107ae636d488c6698e40929a3b404409a1bae1bcb61
MD5 56a669a67f3a6469748265233b513edd
BLAKE2b-256 bc867adf4d5838d19dc696374ca2fbcd13bf6aaf97b82fd588b6f60702590416

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca9bdb37d8faf61f523a2d4ba528374cd634fb1c251ab8ab3af7d032a08c2567
MD5 42b476a304d9090fd88dc5bc6dabc449
BLAKE2b-256 b8eb389df04f5661c61c452bc73726f0edfcafb896726d0a66df5d7f1692ca89

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbb8a86536f8395bf59d83d7168e696cf3bb44821ac2abf0326591c6fd6eb4b5
MD5 0db1e20c9cd437b02132a86a0bd45708
BLAKE2b-256 4d6d8dad6553efc0278599b3babee60c5873fdeb91e3aef33ed175067d2c9407

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 940e391f4b936b08145b955d1ba173cf16e48c8901a1eb80c1b36afe4b2b5d05
MD5 d6c3f0b3d2f77481ccba9fff076a520d
BLAKE2b-256 44351a3069050dc9d8e6b066e5ef9ea985c4c62c3468528a96acad83147a97c1

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0255f31b95988de4e712a66877976ddd68bec75bb3453389dd65e1b183012e2
MD5 29f065dea875c8d53fc85e52de04521c
BLAKE2b-256 0a9dd27346aa71204e7ad0a32afa3adc22e7e63b0e6ce1987454bdfadebcde1c

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f965db374a242a6f4f9f0091e6bd91adbb81b00138f78f0d372854c2858da656
MD5 0064d26d63057726340ed52c0b15147b
BLAKE2b-256 03e0cb9a1b144fda70027c96e40f8e1d4280cd1068b3290f7e497c6870806070

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 42dfc0598c8a73d78b1763095ba2260b6dd8dbd39710b04d14ae8500a68fe263
MD5 7b1d04414165dc0870be89573b8d28f6
BLAKE2b-256 078a0f3959038c30e2329f47354e9baf85901dd1e3a06933ea9e980a0cf94482

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-none-win32.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp311-none-win32.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7115db524af39c0f225e02f37c47e108b82804203efeff6d6c176441eeeabc27
MD5 70dddaa33cceea94e8af3ec34beb52b6
BLAKE2b-256 c74ac1567fce3c477cccb07b6e5d14e384589eef1ce1a2b34c91ad61065a0f10

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1eac0afa9d00006651acc9fbea9c6627d515c148b009a2e2100e1afcb8411cb
MD5 379fd8b3d187477c3b0b65fcae1c4e87
BLAKE2b-256 e8e3c8fb70ee31d4a5916cf976b515da698311c509f0f148025deab346d3b65e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03ec927c7c6bc81ed69984daed148a7ac8fa8376c6895260cc258583dea8287e
MD5 db7879069d878399ed347f5cbbacf0d9
BLAKE2b-256 e52ec02006470cfaa31d817a5e223f2c71a7cdbd1535041b7c930c48d83f9a59

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daee79e03429354618990dd0639eda6f0d5770e377718fa0818ba77df8842469
MD5 f8fc6aa96e8b24c9b511bb7770f730f4
BLAKE2b-256 b5f0e2fd4833b2a80011792047958a45fe0d2117a137dd9a9008a4b75799ee2e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8bd9761ac71f16152b3f3766953a56ed6762e00a0a27f4f1108e414ecac32d1
MD5 308eeeadd1adfc48b1dbdd2441aa716b
BLAKE2b-256 dae5179fcf9e07406814c75357a16db678ea4e48e4e272d53813532a5de4f6a9

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 222f714871ee8f3f1fc6fa53b039a7f891a17b4bd2abc087599600dfec615454
MD5 4a3098a1a283468963fdd51d455bdb83
BLAKE2b-256 8c1c842c90e0d85ff11c22230a5a1e861df71f66e726d997e73db66f2c2590af

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6d8046a3b7b1966df20da1648ea19baaf678baffeff86fb32c3c6096f8425cd
MD5 f481060ecd19bb182f4db6d53a25a537
BLAKE2b-256 ee7f4f49c64bc8582665db8ff25019ab566b8f0c05df40f7445f52c0322273e4

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa5f0ff6ac1853fef2bba031566bf0e56d945588130ae6b2439324b296e2dc34
MD5 5a264209c35856826ab605c276ffdaac
BLAKE2b-256 0b85da94859c6239f6da5b23b40179bcbb919ebde0717aaedbaea6c1830a2b64

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2781cc4046b6277c0576bc25f4d31837edf6ee565f659206b082a5801bcac06b
MD5 2e9f1f7a0c8c74b19d749a31df823ecd
BLAKE2b-256 1be136ab49c14f6816d595dd80d59c6622db03c23a845d68b2735fb7ce65ce18

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3307cce365a20e2baa691e5d5a48404011f42d750ece0f733b0217e008165f50
MD5 0b31824143d67f89b89d76abd98ef869
BLAKE2b-256 bc3df2ecf9793db5c46570885b07340faea214e967d475831c2b25acb22c6193

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-none-win32.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp310-none-win32.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 eb53aae7d99f8a3dd640fe73dbf6e6a15fa2dc238564e678b5bb32b5b34f17e1
MD5 0a91981fe90bff8f7c647cf0e9899b79
BLAKE2b-256 059ef09cea65b1226216b701ce3b0564b162fdc51d8b2797aa454b025918d315

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8da1ae5ec9662ff2c07fd332f137ef816fe5d66c5bc3e866f213606325306233
MD5 310700bc17874933829e5a424e50f3cb
BLAKE2b-256 4382cb92a7804fdcfa60b7a6098965bad6ec96e9fd219e576b6f341f5956e77f

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f80b085505ed2e6eaae55e387e17edc3d757292788944f4e7eb5745af8ad09c9
MD5 0b4b5d8c6cca9926161c7720731d47bd
BLAKE2b-256 32744711c4b9b300db34c440d47c3a8563c7b530ff8e5b5920a9a3221654e636

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e97e44538a24910e769959f7122f196b15d98d0565f0a7e3f8e0465e545be7bb
MD5 8918a6e5cd47181c1ba4da0e20d7699f
BLAKE2b-256 7ae367a4e96b1d61a0d86ee4404c1757add4ef1c91598861f5352ecae7f9ab16

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e85c4a232ae7ad1587b1183f88423133158f45e90cfa1e62e6353dd136f4e9e
MD5 1e18a582c60edd83d210e25d99baae8d
BLAKE2b-256 0cf029de7f9dc47360115f8294eb9c4f0f748b66a35aa8f61153c3bcedd84658

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed091bbc32f7adcf7a5204bea3ef7da6324fa8d3e363b3ec9d463ba1e7da78e5
MD5 b805f62734d8a26cd1f896db78d33416
BLAKE2b-256 78d704259ae1b1ed80ec4c92606f4c67d049184aca6a19e59cd35616dd3f6c42

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e13bacb3d6672cbb1be8abb531812089da5b0214ac3533019a01090c8128d4f5
MD5 5709a0793e9b8e98784572ecdb278c2f
BLAKE2b-256 074599136fd8938b586db992c1034a9b8b408b43e2373c36577991a26fae1a0e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c00025fd587b8ff843efa452e78ed8b81675096cc75c0e559a934106d982f346
MD5 5b484a4cf24baeb5d5b245d03051f5a0
BLAKE2b-256 dd3d360de71cb75c7ba11fee81cdb12535831b74be188db85276b67a14a19902

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c63863267049abcc9dd0e94e31b7bfa0e530b28bcafdf5ff7af69121d4589060
MD5 e2fa0a43c795bb0b5d99b5e838b47738
BLAKE2b-256 d90967a09d5af1da1de1c34c86a5febb7f1c34ab90d9ed2b66946fd5fe8ace11

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-none-win_amd64.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 726.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 da26f94808ac1ca80648b34cd6def45938d22fbe18a95b530286733f2fc3d6b5
MD5 cf5bab92709ec5a46fbdb8f6864d3acd
BLAKE2b-256 76d8da785c69da8b84bdce670a2c9b173a2d63b3974f91285167088d9554893a

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-none-win32.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp39-none-win32.whl
  • Upload date:
  • Size: 665.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f4d9f970e731984680c4cf39bc3ba34220f379c9a9207f64758265332de9c8fe
MD5 38c07c49730ebe671bc021df0ec10a28
BLAKE2b-256 051a51971879988cbe01f8433c74dec93a04d2a5958bf8d9f9d360f7cc9cd066

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9eca4f06d73b9f7f0d8c128b53c4c8534c72f1e0c29ca26a6d6b6c7c3fa4abfa
MD5 927626bf40d870f16a2023e7115c337a
BLAKE2b-256 d9b8b237446411ee85620e1710236c5b1fe45873d089943899d12872e6eca9f6

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 760707984b0dd87f6c454fc8f2498a717d3149d199ef5a17c03e0d2f46490fa5
MD5 d05a4ff429acc00981a1e3bd53702c1b
BLAKE2b-256 a1648442d2332b68eb5674df2e24ef0fff01b7298078ab109166752c55addf91

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16a1c2cfe8b7e2dd10ea8b642207490012416454aa15bab0e36e953289e55575
MD5 9de247cba958758a2759275dde8b3183
BLAKE2b-256 dc1be9af7286e1d1b9c15604fe29a3ca7f6caf50ad441dc752817fd464add82e

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a17117bc48e1097eae3a7077c9839fe4b691d3b3f5b4b11cb350ffa6ec76d0
MD5 9df337d99fa6b1eab84a1a1dc0606254
BLAKE2b-256 8a5532cbb1e57ba97433c435ccd4774b12f98d123f9eebec8f6602ed5bc6af96

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e48cad46b1ee5ad264990fcc9167a88d9597531004419d04ea68e117b45c1f45
MD5 5fb0b0e0a6d2ce1a1940a63e2fa25479
BLAKE2b-256 a16a1299aa598476c344d395992a694a166967e1ae6d7f794825cc1bd49e9782

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a1a39403e8f53abd7e67622b78c592c4e244791b669a12fd25be07934227b7b
MD5 9105f7d8285a961024e6de6e78322736
BLAKE2b-256 dadc7496e2897f6ad65a3e7c6e8d33fde04076c58b1cb51f58360da7cf1b1816

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-none-win_amd64.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 726.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1afd0282600dc278a9d193c9d931c1545d9f7a13e110a361df61a215dc9e42f7
MD5 0066f2859a4780aa8c7ae063192f29fe
BLAKE2b-256 1cfd7d7130869800eb57f4b254369290618038f60498b60b056ce4d0b1bd5123

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-none-win32.whl.

File metadata

  • Download URL: tstype_py-0.1.4-cp38-none-win32.whl
  • Upload date:
  • Size: 665.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for tstype_py-0.1.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 76a7046c6798801204cef7573781938862cace4b2c329ade85144a584433a3ce
MD5 89f9c10d7d026cca53c8b03269013108
BLAKE2b-256 36ff1064cc9ba2c197695e67b350e0525203eb62d8a1b9f4f50ac33ebf01f9e3

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22bae3d2f37bcaa55b55425016035b0fadd82819f18937f1b312beb4daeea994
MD5 f67e5d843c94b6d9226637c94f047c50
BLAKE2b-256 e1a696b21b22f84ffd898bec1d992909eacbbf3fc67e5798fff713cfeb3f1d0b

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec829683358082effdb670046538302c3ddc91d7c13c5134afd4913c156478b4
MD5 7a0aeaab9772f0afc405b18702ca1cf1
BLAKE2b-256 92a9a06ea12a7f22ec088a4a507156d8e9a22d120c7cca08f3dd947f25564c7a

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c111c6561c524d8c66a215a956528edb4ee08265bd5c1248d962b9a00f98ff9b
MD5 07c291648f86770d8c1f982a35f42c13
BLAKE2b-256 7ab003acd2b33d21309aa07a23288d2d74544df44fec27e311714fb74a46c259

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98b444d1a1046bf8665eee0e61875c384002ec6f50ca5c5af3b73f335ad23bd8
MD5 57a3c0cb07db7cd17a04ce19a402719b
BLAKE2b-256 60fe8588c93284787221edcdf9975205fc18c78de3b694f495ea6690bf008749

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbb61a71c555c3d9c944f72a90d39bdce2f31de0654e0701dddf3b9f70a5b491
MD5 8693b53f8751459e03a318e7b3167cd7
BLAKE2b-256 19961e55ad5da611f83482335fc74d784ba4db9a508052becff82fa1b8775683

See more details on using hashes here.

File details

Details for the file tstype_py-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for tstype_py-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 541c2d34e71a9bf6094f68915ab5663f1a6e3d48aced47f25d6f87d075356833
MD5 3d20774a5b4dda5fb5a555ca11250db1
BLAKE2b-256 3b46a9ca0bc517b376717ad01b779d493dc45bb8c85a3b963a84812eb9fdb746

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