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.5.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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-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.5-cp312-none-win_amd64.whl (729.0 kB view details)

Uploaded CPython 3.12Windows x86-64

tstype_py-0.1.5-cp312-none-win32.whl (666.1 kB view details)

Uploaded CPython 3.12Windows x86

tstype_py-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (840.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tstype_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (890.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tstype_py-0.1.5-cp311-none-win_amd64.whl (727.9 kB view details)

Uploaded CPython 3.11Windows x86-64

tstype_py-0.1.5-cp311-none-win32.whl (666.0 kB view details)

Uploaded CPython 3.11Windows x86

tstype_py-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (840.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tstype_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl (890.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tstype_py-0.1.5-cp310-none-win_amd64.whl (727.9 kB view details)

Uploaded CPython 3.10Windows x86-64

tstype_py-0.1.5-cp310-none-win32.whl (666.0 kB view details)

Uploaded CPython 3.10Windows x86

tstype_py-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (840.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tstype_py-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl (890.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

tstype_py-0.1.5-cp39-none-win_amd64.whl (728.1 kB view details)

Uploaded CPython 3.9Windows x86-64

tstype_py-0.1.5-cp39-none-win32.whl (666.0 kB view details)

Uploaded CPython 3.9Windows x86

tstype_py-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5-cp38-none-win_amd64.whl (727.9 kB view details)

Uploaded CPython 3.8Windows x86-64

tstype_py-0.1.5-cp38-none-win32.whl (665.9 kB view details)

Uploaded CPython 3.8Windows x86

tstype_py-0.1.5-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.5-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.5-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.5-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.5-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.5-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.5.tar.gz.

File metadata

  • Download URL: tstype_py-0.1.5.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.5.tar.gz
Algorithm Hash digest
SHA256 4f9f0f0e28f907d7ee315d49b205db7fe6070121a8cd500a2e841eaea2287e60
MD5 145d536b3979aec512bd5f69bfc4611f
BLAKE2b-256 c5da34f753f06964c342ab8216aed5ede5619cc3eefd2a126918c6cb7ca510e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 545a4768755cbe3ea9b3c5355886c9f9bbd5a7086c2b9d211d9875eacd6a566d
MD5 9d44ed4c7c9d45c0b8beae630c6d4bc1
BLAKE2b-256 bb763f73943eb1e066d341b1cc4428cda266d34fe776280af35296c0d80888e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d2d95d6e20418744e3f796ed94f858027c188ec1f4f2910edcb3596d9b87bd3
MD5 5ae52d44310c7bd8c9ea948b8c01dced
BLAKE2b-256 056bcffc185a90f2cfc91b9d8fbd90778cb5af7e981df2df9772d514f8f5cdd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1afcc7cfcbea004c356714a1c35d9d46c15dbdb007614302e479ae80cbd26d73
MD5 dde179dcfdeec148fdadb7f42aecd751
BLAKE2b-256 bf35a5b6ae85ee6e5e81e546ac429092de6c49b084a0ac7c76fea3c575c55244

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 14bc622f5a0209c4682b197e507c9eaecb8723b2d9f49319f76534e64785aefb
MD5 0bf102a3afd3a5cdcbe8c1862d2dc9da
BLAKE2b-256 6f74a2d43b7ed7d13bc06fd494c9e51ba393388e0e7951942739549e065cf8c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05a034047bcfada7db7b3dacd59b7c0f220e3ca8cd18167a306015d151baea7d
MD5 b14614a6321ce63dd81281e37e02430b
BLAKE2b-256 123304690f0a861a744d276e175b01462e442b30711c0fb978cb3526881bb326

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d578fd26751b1d72460c396635b90ba3e5fabab1842d53864e67feff5102ba3
MD5 f18d2e044db785eaa80749e9663e870c
BLAKE2b-256 fe4a85153dd7b929ede804f445b7736cef4be99852cd8b7cc4b50f39994e5b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71a331e94dc3b0d15a30c734b00b8054fac55a8c6bc64f6a8e1c94d2235b2892
MD5 13831d8bab4ae5c8b838f5ed3fe0fe13
BLAKE2b-256 bca0d52a455a6435ff4543b03988c3cd15f9069720cfa16c87984c33540fa150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac2ab34371939115d2853016e4ec23b5243019411579dfeffdc10ce6fae61f28
MD5 9c3681ee8c22ab61d261917e2af03e6d
BLAKE2b-256 08000806fcdc366ceba7813b12296fd1c0116adfb4bd5db8d05cb793ab7899a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c67ef5038d7005bd62fa2fdcf3a3bce3480612d3660010a13f150c0be7b729c9
MD5 1831ad70da9cf266d65d1a2264094c23
BLAKE2b-256 dcaf5274e2320f8350c2b387af58ed1ed024b8ae0c7d4b9da6e877775320555f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0882672344664fa16485422fc571f81dc83a866b33a419f55bfee11279884911
MD5 2ba00fcf71238cc49b4f4d59827a7afd
BLAKE2b-256 98aa9bd733afd79b7f08d266fcf4b86cefa0b4d39b142c197963e7d954747184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be05ca11b30a2e636a6a818fd3e1af6aca2ba808a2203fdd2047d1f1df1b578d
MD5 7a780f429c03a30d981d1052ac101f38
BLAKE2b-256 e9f2905fe4311d88362b49e4431e19d95a7ec0fc8a648a16bb693f0b5ba63aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e88a0dbe019adb4457694ed1e5460840e455ccc1b79a24b9fa8fc38c78d7f370
MD5 3930d596526fbbf69cee9132426797aa
BLAKE2b-256 18ca3391adefe00150049a7bebe9d8605aa4d92df107472c1cd4698dc4da1816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 553814c95d3807ed6e84b1e98d166cb8e78e5c2fff4566023a91f305874fa5d3
MD5 a1a0c7adb1ee4a6a06bf071ca63452ec
BLAKE2b-256 5debe915f1897829f9fc960d2d85526ca1de3ab3a2398b6c02616761a78467bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ed13f3b4297253ec1992ba6ecdf27de411ed23a15226ffa4f0b59f3becb4f97
MD5 1d6551142e60e30b7aa0f5c61eab55a1
BLAKE2b-256 1c0c3d99e9c4a9473dcc93bb52014f433cee2876b46a2cf521412a748e0fc830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ede462ce2885359521014ae4ba80ef161a08c688e28ce7421fb49f3743524878
MD5 ebd3c663317202f68dc8f5b5255789b5
BLAKE2b-256 92c1a4401938949dede582809cf2437db2164b5b8a86bcded01fbf19f89b4c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22b78d1c3fb55b3ab43b15956cc0df9816c8c45a2a1030cd8d5f552eeff6b897
MD5 91b0b442349361b3d2bd98afa3fee7b1
BLAKE2b-256 ab10665b731075eb18e3eadca98b259f1d4c1fe521fe3c7fe7834366150fa05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7446f7173d31f241398f9a96f625cc68dbd3058161824f75eacd2ba98f95f7a
MD5 90b6279fa7e783943e72bce38b8eb6d0
BLAKE2b-256 7a8e7ab0293e61314cd098e656e71e041783e42840b81f105fe36a8a33708fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4511b2b3e7214599fed0e9901fb3a212354b6fe147eb40a2764ba04aa5af8b4b
MD5 aa367171780718fd9cb4344b9fe85ebd
BLAKE2b-256 873a9a2fd86293273854df68b6025628b27007dff7b2c1831c108efa3a6075e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f53575db26782981014245c98714deec8998df33f0d3afcb2389ba13324f2b52
MD5 99e6c75a7a270dc811fc32758ed68458
BLAKE2b-256 2aa3c70166b70c62ceae35e4049a88919601cdfb16de57c847c75a6b1907a7a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp312-none-win32.whl
  • Upload date:
  • Size: 666.1 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.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 52b1ce9d770a5200a304d7d3a4e3506aa748d505dad818c5adb3bd8bcc472244
MD5 df5430c5332df911b24dd3a067b3c9ca
BLAKE2b-256 46ba1d81c19d1a791be15e2a0d3f4e24a8eb185b3ffb3e93971e1bc0e3bf071c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a968a08bd136293c7d8a754a10077f833dec8d2b00b4130bb69fe91efa054c5
MD5 4c1eaf1ab69e9958a88be50d19a9220e
BLAKE2b-256 67a1f83af256d60bc4b405326f47027c3a77ac2faac0b91500a3f0518c0cd931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 823f4dc8c0d952d0cfe2b9c3bb09efd48f7d09fa03b1c42d0790e474eaf28a0a
MD5 e396c51d0a2e93e9c63dece4c4ddfb6b
BLAKE2b-256 558d82b83aac5824489b4daaaed9ca3ee73c2e8173d704e2278a258ec52c4b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f41320370968b00517dde72e081bc5440fb53bb0a34d885544aeca810c14ca0d
MD5 4babf496151f1f1ae66d62711089abb7
BLAKE2b-256 9f0b1fc6f93f52ef53916c28e9ec4e54203e75eb768a558062a471913316173f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 794f2847f84b44ad6427edffc96374941a9e8e7adec59664290819e1a8e5f3f2
MD5 c9f221462cf8c221337bdfde1e837200
BLAKE2b-256 a2725236f6317a6e015423dfea374bca09a92a87063312e55d3fafb64c9180d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57979d08aaa53a60baaa20882b205e20ab21613ce0c5cf632fe2466bedbae40d
MD5 d3a5996d13fffafc5b670ced5559f4d2
BLAKE2b-256 b9ab5acaa6822d9ab896e30dd73a273db486c83853a1a50e5a12adaef7b03303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fdd1f0946873e174e8ef9641ed489808e891f4f05fdb94c32d99315f541929f
MD5 266973402072778e7740a80ac3cdaaa7
BLAKE2b-256 c4b586f62b430f6991651fc7fb9ea2fdae79a2e29364b797a31d77c448e89ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bc55fbf30f7249799015dcd96c2253a467b25388f695aa11ffd516e995b3e22
MD5 95a7a5b465989fd2ea241ef9bfb4aaee
BLAKE2b-256 717aa902cd2429d87223eca1b1625c61aba67aa490e1eb079dae1f0ba7bcc46c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2958e7e537450ef06f5846c135b2fa2e17db48856e1f083061491b9cdb3fe7d
MD5 9d7521386c090100be3e1f87be6f7cd7
BLAKE2b-256 f1ee8fba9fd8dac475e1b52f6df89e74e734f895eefcfbedeaabe965d3898b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 033cada4e802fc840b3f17005a3f8f67c2e234a65bd3c4a6ed1aa822136dba5a
MD5 607b5c7d39ecd6425f5fa7575c70bb34
BLAKE2b-256 a09e2ebc380401773d33cffa401135635e240db4d8bf54ce57ced80ec4ffe471

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp311-none-win32.whl
  • Upload date:
  • Size: 666.0 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.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 633b14d6b473e7389a3cd657b2dc9d9213d85c7f71cea213c5c18b07a5207cfd
MD5 a5d23e5b3efabbc61af0e252f662b96e
BLAKE2b-256 a8c6f6e9138171fd38bbd8795523b354c2388b2f70649f836976f40b75f99a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99ef9021a3ab197b5390deda74009ec4f33f251a2bcc5eba3f1cfd6551c36db4
MD5 3b19f34f0405810e18a096759787ee6a
BLAKE2b-256 30519fd6761e4a923c8faf10824992a8d0c6c8163ee4f13d99ce7c9b8a274aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39a4863a3d2086fd3c0826d2dc5008cd77bed7593d65c2de3c28349442f287b1
MD5 66d6cfae501b9a57929568fd299b0d71
BLAKE2b-256 cfca9926148bc197222f4b9960418eb4a6e4497d3c1e09a8a9eb77bce1f71af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7ef41e6d4adff3c9a26d6c805e2b34854b39c82e542f914e986dfd8b29aca95
MD5 2e6d28e9ea0953e6971b315cfcae90ba
BLAKE2b-256 116f5a57c78aacfd2a58a83892330da4ec54458c6149312b40d9bea095e2eaa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8ec72564c31eee1eeaea793e1cd4dd503f5cae4a7fbcaa18e2329c0c370a554
MD5 cc9e509b917857138fdab661736adadf
BLAKE2b-256 ec46eb2befba0d5e2ca2b24f89e8c75cc5b0da21c932c71597a1ef6898007725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2720dfea5f8f692fbd8b0add09b64e235ef0317c2404850c3d7116c8b2bfe41
MD5 476cc87379add2aa3f316cca96b14a4d
BLAKE2b-256 6b375b81f5e552870b94242af528966dddb228e3f403de1662f9cca9554de1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 112e77e0c0b0f023137edd1fc2e185aea97d4bb62e277e3b78f98bcd067b0201
MD5 a38df8bebaff74d4b96d84e13bb3d441
BLAKE2b-256 4c665fc2e0889c6696e8fcc67a92f0999259075b2257292485e72d22fcef2111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c774c8f27321815829620629957e3739957c5e15d1ea76a5db49f237357212fc
MD5 02cadf334554f9141758f69ee5a44841
BLAKE2b-256 1b20ccc93ea627254b86f3a90646e5369e8599dee5726cf35aa08059b584f959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d98d72d20efe3f48db9dd682f2ec054d8939247ff5496abfe2165057c49b93f0
MD5 c33e04aed3f6740be37403b782581e6f
BLAKE2b-256 46e6a338da7b465a7f133c6fe0aeec8dbf2502c3f18d3161046a441a8781cdbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6256d58ec92bef6b587b6e8b617fc2498534de6dc0388af19273573916b75c4
MD5 5b86752ea7892537ddf991a94cef8fe8
BLAKE2b-256 b4c85539098b4d06a72fe22cf5380d698d15656e16c7da98c20b70821ad4bcff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp310-none-win32.whl
  • Upload date:
  • Size: 666.0 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.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d499093ca75214d2e57b59a0346b5a8cf18ad5aa1ed632e684b1cb50d5481ee0
MD5 2761461f9b56bfc4a790700264b15b96
BLAKE2b-256 9f30ac98eb075b9081f87eaacc440407b84c412860d413045b24b987f9572b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee631dd6ed0eadd6653c368e8366adb9544827cc6dd40ab035918de212f50b3d
MD5 094274a2f8fb0753e71a6ffac2e3cf2f
BLAKE2b-256 ef0fc04835a18501bccf62c0de55ffe20e0430d4f89a1d6be2dc766fce66f15c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9632dc0389ac81841e731e4facd1b88dbb0f3f84d0be9c317b571662fc11679
MD5 8a13d3db57e59bbac2e36ab16249db07
BLAKE2b-256 59f88dd8557c70e85bdf141b1fa4c0bf57c872ec7f6df16728d7a75233224ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c01fc66b3159447c3f0c6540244c981570a42d5840ff9d078650769fd6b15109
MD5 87ddbbd95b8dad558c384fc8f0f68588
BLAKE2b-256 8bbd6cda14cf5812631827726ba567bf4bd24aaee07e262f14b40b46cf6a2c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94ad2461b6231d1faccd8a9db4ae07ec5d8863137ba764397e2647ae1d99a7a8
MD5 1f4e55d9e3afc8c970c461eb6f5ebfe7
BLAKE2b-256 b1cfd607914e6321f93eb5b3dffbe1e9a48afa8c8bc0baaa91937feedbd99e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5440c3b67dd08c696f08dadde9fcbde6c80d8ef0b43e90b08fe35ca1560b3ea0
MD5 31d6ba14b3cd2ea1e0f27e8ebc30231d
BLAKE2b-256 4a72c1b8f0b1dc05d6e8c608023f3f729b2b726c42ea3b5c6aa36f678d4d3ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 414db86f8c33ce6818f15aaf28c264b724d6bec155cbf85947cc43f5bf96327d
MD5 585542f414fd2502ec4049319b35ec11
BLAKE2b-256 b807c0b941cdd24ea7cc7434fa415f4c192e41064f4071044845dc267c3d4acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4d847c4c594d064ec27ebb5b32d7af1f8c7ebc3bb00ee46940ba380848ae53f
MD5 e3b3b4573d9ae9642be8430025f18867
BLAKE2b-256 03e20c1c75d0c40fc90a4a744eddde0a22f554a0e5144ef0cdeb936b438accac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee0da9db82924842ecf06d86f38b3ed44060337d862087b861de51a1c1afc461
MD5 5a228874a23729966f229f1242cde49f
BLAKE2b-256 f62098aca75f91fc469fdd481ca634f48f41c76d8580da794fecf13fce2818e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 728.1 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.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c344dd04ac4ecf2262884b0357fb232a06a8c7975c0620b893b21641a5cf0a74
MD5 337d85e088cc2a9ef4eac0979027dfd8
BLAKE2b-256 0edac95ced35913fef959bbda42462e0596c4b08dcb0436d8c310170f16634b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp39-none-win32.whl
  • Upload date:
  • Size: 666.0 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.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b4ca1bd8b7f22df8bc4f09e2a7a43c208b4be73a007e98984550fa24eab26e49
MD5 1a515e254ed91bb8f261f4e6a3ec4439
BLAKE2b-256 ee65898d7baff89f01d47bb8b037cc45df022b01039a01927769d8e4de8fd833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc0f7ab05595d6cff17c6a480ae6b91671cb03a937e581baa17807a079c653f6
MD5 405f4436b2b6d3f96ab620593af6585f
BLAKE2b-256 74b4d3b7d6f17e5659223a8235d8a0dd16f391244cd39bff0a03a64b764c0b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ce4b8fb58416287edbf019a13aa2d57b26c6e323a7457f2d17031b6c69a4cbd
MD5 784a0ffacfb8ef847486b376fdd79a16
BLAKE2b-256 c58456de612d68ea07c31de247da806ab89288159b805e15d3713b470f42ce2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 642a0816b8ac60d0881d025f20fa364e76b4e39f8db709066937a92a5f337574
MD5 16d36b48e96fe6ad79297ca9f989a43b
BLAKE2b-256 08f57a01e0c0377c0d2280ebd25a314a5b4556d85ebdff57fe762448dd44cbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af4bf8159b25bbc98ba36c58f55b52d7ec5175935dc6f027febba4bea8e7d708
MD5 f919f5485318c7b308fa7174269d975e
BLAKE2b-256 296726e23e8939c64cb3acefb9ff06821e8697ffd20f1232a15945df48e5a99a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50e712711f6f04dbd875072978b68426e5abf052fab3c4a157e3a068b29823f0
MD5 909aa09c8414773cf6aa407e18667941
BLAKE2b-256 0cacc9d224f3d6e3128f1f753f4f4766fa8b108d57f3b1a0d6d7a9efc2c3488c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 223a64ee4564cfc0444368f9d376a7a2e2cd55bf986d4753b89efdbbd316a244
MD5 a34be733c0ae2cf5a3de4b7e4e73bcf0
BLAKE2b-256 d8140ebbea05e61293aee5004aaf9a19670f8fc109f96486f01c8158e3ec3e0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 727.9 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.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7ad29d4f7eb34afc420153613c1f75e1e40bbab5f333b63d25f615cbc5941fa
MD5 81bacd99ad857a9942a650e5be569a95
BLAKE2b-256 2c9f6ebd5fad65847bcdde6aba29764ca9206b7d2ae3e1aed2e28063c43e7ce7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tstype_py-0.1.5-cp38-none-win32.whl
  • Upload date:
  • Size: 665.9 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.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 efc91b876f9c8f4fbbe276e5d1d463fdd41357115524e8c4ac0a99dff92e1107
MD5 42eb34ebec41b3f31c61d45eb7dd297e
BLAKE2b-256 e17e726c0332b956601a5d7d2e475aa03cdf58cd9a3320370517f4daefa60dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5eb112c753d2fe50c9b572f7e7c62e3b6c67620262e7833a39ec8f2d4bdc57dc
MD5 6416c0e4749f11c58a1d99a1000b4eae
BLAKE2b-256 92ef010e5fc050f50940fcc14f211b9346185b25868bee2b8f9d48b56f592b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32d586de6e0d24c586bb03e16108940513f25b720d07269a8e45e8cb13910cab
MD5 60392444adb0d25758e12409b93f92fc
BLAKE2b-256 164c5bd36310e95d1a15937e1f2e25f37644f8bfcf446280468a569cf9142c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 264b3dc79875d12aa9e0f62f7605a68eecd6d98f5518b56d7f86d99265f6c4df
MD5 71838c22c8f6911a6ec80354dce314d9
BLAKE2b-256 1811d465db992daea8a714631361f4f10be88eed402e8467ba7c5194b185b22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c19e476331d7d2075645f1d41a5a2874c81ba492fe7a989891154cfd49b722d
MD5 1514afe63c712f26bf841f8cd007c665
BLAKE2b-256 1e6d36677761109fce9f25283fd25785de49114321f8c7c9e8ef5a6f6fd8a329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c75906b07d10dce2f9394dcee1ec74c23c8358e80b0bff4e0ffda36eaecbe346
MD5 9ea2e9876d2025dc48c6bb186d082f7f
BLAKE2b-256 4a45fba4902522af4026e7a9e77bc50b69d017a39513130b39168253fa2f4717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tstype_py-0.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a07d180c68f0307e64caf378001575c990b1313cad9d59cc6b1fe4a155384c7
MD5 b341a845f4280f47a54f259fac50753c
BLAKE2b-256 45a018948391b0d60e4e45faa1979b36d568bb27b483236d8017ae156593d002

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