Skip to main content

Python object indexer for ETL, search for anything by anything

Project description

PyThermite

PyThermite is a performance-centered, native Python object indexer and graph datastore.
It allows you to index arbitrary Python objects, filter them by attributes and nested attributes, navigating graph-style relationships — all with O(1) lookups on attributes and O(log n) range queries.


Core Design Principles

  • Python-first design
    Classes are the best way to enforce types. Class methods are the best way to mutate contents and communicate changes to a third-party datastore.

  • 100% dynamic schema
    No schema or types are enforced at the datastore or query level. You can load any Python object, indexing all attributes.

  • Indexable schema objects
    Data objects are Indexable types. Updates made to the object immediately reflect on the Index.

  • Constant-time updates
    Unlike other data stores, schema updates are O(1) with no restructuring needed. This encourages iterative loading, filtering, mutating, and exporting.


Features

  • In-memory indexing of arbitrary Python objects
  • Filter and query with attribute lookups or composable expressions
  • Graph-style traversal from root nodes
  • Perfect for ad-hoc migrations, analytics, and breaking down JSON

Basic Usage

 ```
from PyThermite import Index, Indexable, QueryExpr as Q

class Person(Indexable):
    name: str
    age: int
    employer: 'Store'
    wage: int

    def change_salary(self, amount: int):
        self.wage += amount


class Store(Indexable):
    name: str
    address: str
    owner: Person


person_index = Index()

big_python_store = Store(
    name="Big Python Store",
    address="123 Python St",
)

alice = Person(name="Alice", age=30, employer=big_python_store, wage=70000)
bob = Person(name="Bob", age=25, employer=big_python_store, wage=50000)

person_index.add_object_many([bob, alice])

is_30 = person_index.reduced_query(Q.eq("age", 30))
assert len(is_30.collect()) == 1
assert is_30.collect()[0].name == "Alice"
del is_30

high_wage = person_index.reduced_query(Q.gt("wage", 60000))
assert len(high_wage.collect()) == 1
assert high_wage.collect()[0].name == "Alice"
del high_wage

person: Person
for person in person_index.reduced_query(Q.lt("wage", 55_000)).collect():
    print(f"{person.name} works at {person.employer.name} and earns ${person.wage}")
    person.change_salary(10_000)

high_wage = person_index.reduced_query(Q.ge("wage", 60000))
assert len(high_wage.collect()) == 2
assert {p.name for p in high_wage.collect()} == {"Alice", "Bob"}
del high_wage

# nested queries
employees = person_index.reduced_query(
    Q.eq("employer.name", "Big Python Store")
).collect()
assert len(employees) == 2
assert {e.name for e in employees} == {"Alice", "Bob"}
``` 

Installation

pip install pythermite

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

pythermite-0.1.0.tar.gz (39.6 kB view details)

Uploaded Source

Built Distributions

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

pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (672.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (703.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (762.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (674.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (508.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (525.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (664.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (533.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (496.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (489.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl (508.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.1.0-cp314-cp314-manylinux_2_28_i686.whl (534.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (673.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl (701.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (760.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (674.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl (525.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (661.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl (494.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl (489.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.1.0-cp313-cp313-win_amd64.whl (350.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.1.0-cp313-cp313-win32.whl (319.9 kB view details)

Uploaded CPython 3.13Windows x86

pythermite-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (674.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (702.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (762.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (677.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (509.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl (527.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl (664.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.1.0-cp313-cp313-manylinux_2_28_i686.whl (533.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl (496.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (492.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (442.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pythermite-0.1.0-cp312-cp312-win_amd64.whl (351.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (674.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (702.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (763.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (676.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl (526.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl (664.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.1.0-cp312-cp312-manylinux_2_28_i686.whl (533.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl (496.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (491.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (441.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pythermite-0.1.0-cp311-cp311-win_amd64.whl (350.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (671.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (702.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (761.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (674.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl (524.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl (664.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.1.0-cp311-cp311-manylinux_2_28_i686.whl (532.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl (494.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (489.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (446.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pythermite-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (476.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file pythermite-0.1.0.tar.gz.

File metadata

  • Download URL: pythermite-0.1.0.tar.gz
  • Upload date:
  • Size: 39.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for pythermite-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2643d345635c7a4342da2154effdd778d542f102bd4926ef43b9eb59e7070509
MD5 dec7a4ea655c94c6d53ac6ff18e94a1e
BLAKE2b-256 7adcf12eaa30bee67f811a5a0b3ca10007901f9ccff6858b4e874d585ef90841

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffd0274bafcd2cd6b6b6573a92490cb6f1c43e4483bce22ac8c3e6d684af52f5
MD5 7078c83724a68100330c4c03e2490257
BLAKE2b-256 86c800b7ca7ab9c1bd71f0cb3c1d0d3c2c1b35a5f30d61cc5ac16444a9d369e4

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd249a96320e6857377d313c16925005a896f00338e79236067a04d8225f7783
MD5 a625213a14916e2fbccaed7d24a70579
BLAKE2b-256 cb77fd5287f400807fe4dd44bc207d22249c4eb26be885c48d7a2f167ca147f8

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c9949fcf5b82f2798a50a8cd6944b11bef9357c7ae04aaaec0eee106729c88b
MD5 2023723d9a8151de74a09db0528c40d0
BLAKE2b-256 e77470ca7f320797b8a906264721ab387da82d3811208702e8f8dff07bf9b841

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a68e1c81b9d12eaf5c5f69fbc78d65259f04d149d946f2bceaf20dfd6b8664a8
MD5 584cc890b61b658a3dba2a1510c5ac1c
BLAKE2b-256 0cdecdff5ea7c5c9e746f74308c9e452dcd04a914818f7a769d3f756dca22d7f

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45181664a1bd682fb828d4595f402b773f24bedaa92973e1ac140037cac7d88f
MD5 4e98c74fc5304791fc70120fa6be3cc7
BLAKE2b-256 91c69be556437b51493809ff0418b9bba03a00747f950c0040099280c3a68658

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 261ba9f878df0467d8c18d138366fedd33497bdfb573ce056eb7614163b042a3
MD5 473d6261a70b3842ba26160a9ce3d24e
BLAKE2b-256 cdb3f5aae6bd93331427badbe2c8b2ed0b148464ef23bb6e5eb440ecf4b6a07e

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 883ed68659b2fc7def99fe410aeacb340ec47534da19398545395a5508cfb3f8
MD5 ecc6c742fbb069ffabff18db1e15482c
BLAKE2b-256 8f6db011a11803522abbcada411d7386084144c6d9f721b882cb1fe65a0e47b7

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ad398dceaea172a2819a74ad5c99ca388123ce0535dd36390fc357de86ff9cad
MD5 d0ef511f9e55a5ad06b26d7fa8c6b199
BLAKE2b-256 c63d657f6613e7f3b2bd3d8f3ab524a288f8c33c24bee4fab8b9043a72fdab33

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6f15752d99d5509f6bd8a8c56f0d929ae303fe159f26b19b8ab6670140504596
MD5 faa732543f36ed61b165b99d0ef2ffa4
BLAKE2b-256 c03513e168fe30a3b327c358bf1f19c6c22aa39ed98a6dc1a12701e7c4796c23

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d3867b027f5839a9c3dd7bc6500965585e2aa716b9a3bafb413a0f1df67083f
MD5 106f62661de26c90243194dce6164d88
BLAKE2b-256 1440a4b567ca82d66ac38fa33c0ce400672e961b4349bcfe9e0c5b06b90b7b23

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 262e917b3be3b9afa05294858dfca107338f743464c0ce166326a9169ffdd464
MD5 4315c7bba5baf7e144710cb2fdedc05f
BLAKE2b-256 a17614ce1652721d711e20dc28bac44fe43ccd3f3d5e584b9da6364eef6f953a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 db20817ece4a6306857d65ff4b77aa1475ab4a1cf914d6dde2747194e165f02d
MD5 14e0184ada1b89d84db9d5f79b50b667
BLAKE2b-256 2924847079f3c47d96aefa5b361e4038ac455629bbbeaec9d271728536d4aecd

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3fac3c18dddb51d560840ee9755e567ada3da480f2bcdf665790ed8695a202f
MD5 14c67693348467ceb29e05ff6680cf97
BLAKE2b-256 81685d33e57de8cea24eabaa6ee1cf527139f956ad357e7a3b8258fc5b21f94f

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30783f51eb7414fef8e5e1b83c36ad25ed5289a304116cccbcd1d488ea693277
MD5 53c46dcf88bf924fa7448049dc2f79f5
BLAKE2b-256 ea249554db541eb4771fdf3a8d47dcdadbfce08c3c2dad43363545d5e34d0c33

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5ab88f3ac83d45b54b1d75f2ea22f6cb5aa9f2637bf72f658699cc9f07c0c5a
MD5 9eca87b33424d34805d5a986665895ca
BLAKE2b-256 0dcbf0737eb19b0d10acef74e120d269229107288609ba62f60ddbfef3624e8a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57b23d9fc1ab8d0bd1f8f0278c77a544d4223932325a5352db70aff9947be931
MD5 f4462a8540b085578dcc7712fcee3f8a
BLAKE2b-256 e9b2929434c33cef9c7107d1a73d7ff731ca31acb64732a12347e19150c28b07

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 486fc0f5672b30fa3d6d6b061536bf64abab25849e8f3c7357d14d584bb8b8c4
MD5 1b2b070ab586f0670a25bb8d65030f17
BLAKE2b-256 c96cc8c2d7775412b949072f26ae4d83ef5710cfeb2b84f1fba87cc464fbe667

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 464227bff526676c798756f2a65c2fa68f7f1b9c792979b82bcfbeaa51fd0b24
MD5 3508530c6e8854450268226faded3414
BLAKE2b-256 0235e02e90daa25d19421eb8ce7e3bec762015760a69bc8505d3d3b2d2ee01ee

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 363e63b971c933e8dd72e203d17b5527d85ca7a4890fb9d5d933bb9216aab8b1
MD5 ef36f179e8c4ea771ed6dc839d50ab3f
BLAKE2b-256 7bfb8269e5cad867932d1da6a5707568b748f2e15d827d42c79bbd01ea4dc269

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83625d0dfbe74961060c302d3fc967efed2b086d3d2a41698b39de55a6a3c0e5
MD5 902de2679baeb63100968ce13ba71cb3
BLAKE2b-256 bedfbed0aac45d9bf40c2446727d169ac755b673607848e44ede4f4633df47a8

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f165dec202bf43daa66a1ed1f94fcd05ec8ca6fa1fa1b9f2204212db17811bf
MD5 ca8d4d948f3582e317b9ca137e894ca1
BLAKE2b-256 338ad63af6ea0091b636dad61f2ecf30c753b5c035b7562bc75d3b22784e7deb

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pythermite-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 319.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6396047263e6023770cbb5a575577089257eeb8025792af6268715cb290b4df6
MD5 13e02c4b48d41779de43fd556aa11057
BLAKE2b-256 f594089eac4f86040aaa65999566848c85ae8dc095f6188ed604b462593ce536

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 026b8f89cf68749af17acc36eb59bc915a1985211de8ff4dfccf2d3ff12cbd9e
MD5 dad3baa20058a5cfdde509ef96bf5350
BLAKE2b-256 dfa013be56a8084fb925f836a22aecb03a7c1b19aba8b63eb6e7a9e722d099f6

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1840dddcbfb6eb9d057fd205b3a118738d59da97d45c574a24c3af157cacdbc5
MD5 9df67a7bed866c6f7ecab803861113d0
BLAKE2b-256 6124cac701f59ad4806f757fd030a0b7f6901039fbb72c0b288e7ba1744f9c85

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f919de1dc9d1a820fd8685887ed971bd390d96f8da62708ad9536a175a469e0b
MD5 dd0ad4b0bec3f76d9b353652817a31c1
BLAKE2b-256 801aeac94f2f9b5c5c47c617bdc8859526b721453cc29f86e7afe41a7bb7dff0

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04555e18ae04a47137dcf36fe71240d396d4e54d887c5b9c15c2e48fba0bf5d4
MD5 6b8debcbf25bdbd8cfae6af8717f0902
BLAKE2b-256 f5ce2d7991f9f3e0e38c87aef7826334862b443718fca52660d2227274b4843a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78e534a460ec5da22d31ac82b58813efedbb3b15bc9566949355d682cf5086fc
MD5 ccfb220ce2f824b6e3574ca228296428
BLAKE2b-256 e8fb83014cd77931c8d74def3fd7f92ac612f16b282ede76e1ef1aeea2c94eb9

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d53f957adcd5ce6664fe1dd26fdec888bd2226ed0a9d0e695c5de9e0a1fadf4b
MD5 4c035ca1f1f14e8a913bafdc215a70a9
BLAKE2b-256 b008bea6728c8ce9f0d4f681adf3fe31424082822edc04d3936fba846d6595ce

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 22b32c6573f79fc2f47b2b65ab886d06140b8cf88f942a422eb1874fe0876321
MD5 ce3990f3d0c06bea46caf5a0354b1f91
BLAKE2b-256 2606658bd3d2b5e5f368346245ba61cbb25756275f2a5d7be3edb92669621145

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 49080b008484ac4e7edb48de9aeb4722428fc71cd351cb6b1b06a75801ce3903
MD5 b89a0e82468b10c2662b0398b8b52c6e
BLAKE2b-256 0142542e845900aafea7f09b840a64cde7642a3a87c26cfc52a594e987bf052a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b141a557189c1e988af5fab0967acf904ab262c226c831f602b128183ae0cd89
MD5 67e8d5c8449667465a1b967364e8c89e
BLAKE2b-256 441ceb77ee080bdf9a8b091309be847c3300b50c910de70ac2a9b3164c70478d

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f57204270f0eb24e184c181cb6070f982da8087b0d0c200e7fab74d896059b3c
MD5 acfc6c4a6372d33dc2c346f44366dd11
BLAKE2b-256 02a59fc5fd1b1624f83dbd3b2b08a699fb64501b212741983aca4a0d70652ff1

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 285769954e9aae956450aab3bba2ba351a1fd182f8bd9a490529d4280d42a7e3
MD5 863c33137ad6fb8a88140ca5f4d5523a
BLAKE2b-256 887ad17f7cc5841232197536c52281bfe63c2c46c8e52327f794e2592bac40b5

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1f317a9d32ccf1edcfb3d3c26d80cbca7888c67f279d04f9f427f3d9c298113
MD5 8bb56180da389d24e24a82b9226b16d1
BLAKE2b-256 7b86fab9052049737d7d7bb8b0a865021552ff411b9ab5e43caccb5b70b8f6a5

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64c84daa668dadb54e292fd5fda9b116dad9dbf7c982bb105887bce139c5f584
MD5 545c01aac48ef1d52f0686546baf0831
BLAKE2b-256 df5af22f3ee34658bbc0857fd6ed93b3748ea32c214b97a6b44408bb414278dd

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0edbdf4e1ad00618306f3b267f931b9f58434496c0b57265ed9d21332f679654
MD5 c95f71d693e79737e042f7768fbdb2a0
BLAKE2b-256 eb39a71ee747794744e3874318136a3fc408b276fa2d55a6956bf6cefc4d4b52

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8156cbf46091c5175b59c96c713cdc7c6e55fee4fb75817ed70d805560356da3
MD5 3dbfa835126a00f6234e1b1a25439abb
BLAKE2b-256 2c61d100b520890b800c119eb69dde3f4b233ef9cc1842f000c3c4b41b7caf15

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 486b1a8454cb4ec0553556c795979cb7d922d2b8f0d43bfd3c0f44fb6557c932
MD5 8a1aa4f1ec2d61364d28db443c3b2542
BLAKE2b-256 e6fcc501a7d6ba74d169e93ff1b2bfed2598947f5eed666e5ca5b97c1da3d23d

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6876b6282a4ee0cd5ac9edbb70f298c572b57d5f9b5e7d638d8a173081f48197
MD5 e9d3c69977e0fd89fd05c14c47cfce51
BLAKE2b-256 403aaffc4f77de0e31a0937751f27dbc3e35caa27c93c3e67ee705dae89b5f9b

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d690839899bae051c67c234b5f05b82cc14f47290f9b171207e45c7eb318e887
MD5 5991a6cbce7c8671a3dcfda1c622dc41
BLAKE2b-256 b7a5e571d655b239683bb5bef27de18923cef00c2b4d6183807d5640db7c16ae

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4d4a5731e708c354a870d3710f2172fdead953539ff2662b421f4fb41d8cc6af
MD5 b9ae6ee622b9591eb6efb48bd0d8626e
BLAKE2b-256 79e81469c1ad25813eb87c417b9ab7e588f60d71543633919d200178cd3b59fb

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 69bfdef1d6d855971d30e8d0e63abe9567855da1944c7dd537b167094ce40983
MD5 73dea1fc4252224215500e6068461e32
BLAKE2b-256 ba962881356b0aeb70f976f5a36f9c6c4c672b9c5e76d756f7fc23cb2626ff86

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 047bc6e281fef7613b62326c8c69216120f9017aec159993fc3dff91cc499547
MD5 9ce822117bc88ddc048eb04bdb8d50f7
BLAKE2b-256 61dcae1056525dccee03a5061bcde6a44294437d3b553a4a4baf102fb9c225b3

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4743a2d3c28afe9f3c9a4d23aa95fabf3213f218faff5d5ff07cebca6a1dd390
MD5 de0d5fe3926ef3292acb70970d44a876
BLAKE2b-256 1f5ac3263917d5d49c9c8ba1aa1658ddaf8cd5bd45d7756b7d6934c291bed663

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddc5d14d4cf9eb589d33c5f5a3f3870c489128867cd165033e343833b3cafdc9
MD5 df02ade202a7e6fb4bd07447e9c38769
BLAKE2b-256 ae7f9f266e3106f672c8540d5299eb2e23cfa26862d2de68273f50e752a8e4b6

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 558de295f8b992010ac94846f8b91e24fc872fdc393db9e8fe97f044feadd7b8
MD5 3cecb5606c83c6b941b0e2efd0446cc0
BLAKE2b-256 6750e3ec172c45f5a9dfd54ca22216ff8b44f5d1fb19c5a19f990ac55b355d0b

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44da6d22d0bd0f4247bcca12fb928c354c1d07db93e1bc5d6c2037fe9c887ca7
MD5 83a052e4448cca0ac1462d2e3fd8696f
BLAKE2b-256 84cb40f407022dbc87d139903991388aa99e82b0781ccb38b1dd44f10ee12fff

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c9262adfa56bedc7f5401be859ecf2aba314b52c273b40839f559208d629d48
MD5 2bceb808dfd17a2527b2c18a7508e84f
BLAKE2b-256 230470b6612942204d25379cf17a3fbb677180ce9b1e0655273bf807c7498372

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a43ea28d29f4a8eae29be16c012953787c316b2aa9f0de2f06b3636c09a17e2b
MD5 75f842f421ac050fda9631ce1285c7df
BLAKE2b-256 ec1e7bfd4244af4a3b037f030a8100eed47955802732367423b69770498787d8

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f141c971408ecad20fd7eb7f96a6b4d65d07e1a7d788965bbf02ffc65de63bb8
MD5 8a0207d883d42e02f28ab5d7e3cf1179
BLAKE2b-256 49e440ae6fc2d9f7198d29c4d0cf5d8b29703e9561a7b22168eff6ab9c0b2d39

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8f4869c4eeb7806a61eef1ba13ad021730d6f78b33b54ba8e52fe462ac51aa21
MD5 fd799671f5bc0e79415f0c4237e7c38f
BLAKE2b-256 e11b782fe0fae472e7914aea88c7d83287746246c0761bb5ceb22cec1f65c591

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2701d70c297748731d224cdfa2338f54ab31f2976feb4e3c98eb92cd15203cc
MD5 49ea5e9a4cb2dd02f3d36667b759fbd0
BLAKE2b-256 91663611b6870b8f20df6ab17f882bf6e1259bffe069c18154d19bec9e31bbfc

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f32b08946457ea949786078ada71f614c3033c9e81ae100e5e82b158a5b406b
MD5 7d3276c8692c2b719b8c83813b067d4d
BLAKE2b-256 f783374fe7f75cb844533e3deddba101904e6f18765b84935897e916931b44b0

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 10bb39bc8f13bedb9d8d5ffab1028d48863acbd07ca2441362be25e5f5e9a17f
MD5 0998927379a462e5c47a1afa28c65919
BLAKE2b-256 e4082f42807609d67fb02547302f6d4c09bbcb645674d3ca138b892fe21f244a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 bfdf44d6d1b566a72bb936f0f71e577ce23d4c815d271f0a8495cd879990bad2
MD5 4fbb4a98e56a51e443d66f44ad8cf673
BLAKE2b-256 0e44b8ee4fc4162f04c8117d7d92c512912fa280ad6c1c7a5a048931d346a941

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a93b0b0a34712dba898ab4396defb8981322acb129d192f7901494ff0399e32d
MD5 f1071361af105a5413ca000eb2cd2738
BLAKE2b-256 bcc39d64366aff1447808fa78d6f6d5437ef991deeed3b24c08f01fb0b06f539

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4dd4e9f5f7a6dde559d7ed946e99eb0b36e6fddf581a54dc3662dd2a8baba798
MD5 329e27dfabe268fb79d91bd7f6d8d57d
BLAKE2b-256 835100fe68794c87a8a2a00ca98b97681798238debf7cfcfbf19473229a4a600

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a063fd3d368132df0eb1b657a5366545c03c371d774bb17cb5d0dab1fc0f1b5
MD5 69ddb86d29823caab068e4503e911cf8
BLAKE2b-256 bf76129c8053265940c1c5a26574173a36faeab0fffcb1573ca4b8794c57f25d

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44353a53486d963e4fc89150a6c5285cea9ae29facc2ae3b1178db57b4ff0493
MD5 e5cf0bba72eff3beba80fcc0f2abb246
BLAKE2b-256 8dc92eaa71d04f4cfc07f4ac94e471901e6e65dc92c124b31aca49a6f26d6c0a

See more details on using hashes here.

File details

Details for the file pythermite-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bec6505e299339a3f7178fa31d5e79555a914d4d8b10e5ce6f7c73695ac0026e
MD5 533c1d823f9a96841faf2fed91a1aef6
BLAKE2b-256 67c483ada4d57fba062cb63a9fca0f117dc27447faa468c108a7e88068749029

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