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.5.1.tar.gz (62.2 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.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (768.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (790.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (831.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (718.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (557.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (588.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (622.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (576.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (552.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (537.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (764.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl (787.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl (826.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (712.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp314-cp314t-manylinux_2_28_s390x.whl (586.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (618.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp314-cp314t-manylinux_2_28_armv7l.whl (548.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl (531.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp314-cp314-win_amd64.whl (436.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (766.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp314-cp314-musllinux_1_2_i686.whl (789.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl (828.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (716.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp314-cp314-manylinux_2_28_x86_64.whl (554.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.1-cp314-cp314-manylinux_2_28_s390x.whl (587.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp314-cp314-manylinux_2_28_ppc64le.whl (619.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp314-cp314-manylinux_2_28_i686.whl (574.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.1-cp314-cp314-manylinux_2_28_armv7l.whl (550.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp314-cp314-manylinux_2_28_aarch64.whl (535.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (512.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl (764.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl (786.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl (826.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl (712.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp313-cp313t-manylinux_2_28_s390x.whl (586.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (617.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp313-cp313t-manylinux_2_28_armv7l.whl (547.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl (531.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp313-cp313-win_amd64.whl (436.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (766.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp313-cp313-musllinux_1_2_i686.whl (788.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl (828.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (716.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl (554.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.1-cp313-cp313-manylinux_2_28_s390x.whl (587.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp313-cp313-manylinux_2_28_ppc64le.whl (619.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp313-cp313-manylinux_2_28_i686.whl (574.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.1-cp313-cp313-manylinux_2_28_armv7l.whl (550.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl (535.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (512.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.1-cp312-cp312-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (766.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp312-cp312-musllinux_1_2_i686.whl (789.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl (829.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (717.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl (555.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.1-cp312-cp312-manylinux_2_28_s390x.whl (587.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp312-cp312-manylinux_2_28_ppc64le.whl (619.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp312-cp312-manylinux_2_28_i686.whl (575.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.1-cp312-cp312-manylinux_2_28_armv7l.whl (550.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl (535.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (512.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.1-cp311-cp311-win_amd64.whl (434.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (767.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.1-cp311-cp311-musllinux_1_2_i686.whl (789.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl (830.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (717.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl (555.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.1-cp311-cp311-manylinux_2_28_s390x.whl (588.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.1-cp311-cp311-manylinux_2_28_ppc64le.whl (621.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.1-cp311-cp311-manylinux_2_28_i686.whl (575.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.1-cp311-cp311-manylinux_2_28_armv7l.whl (551.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl (536.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (511.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.1.tar.gz
Algorithm Hash digest
SHA256 cf71b82dca21553129b4eca6ba8fee1c5b05fbb5c3482e084255d4d4ff51de0a
MD5 e7fac3c7dc433a10633910dac5ec6d3e
BLAKE2b-256 018bf2aacb2040712db2719c6c975fe61ca1ed7afba54702c2fcc505eecad261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 485b3bf50efeb0411373a6fa45d81f365d65469666f6528b8186776956aa9e76
MD5 d527c2d8fb2ab5ae8c853a6bf6fcde77
BLAKE2b-256 84e470a3ec87ab8e6b0e91ea0dc6f27a1614a80eeb9a9b2fa0f6863352a9b9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c05ea4723b0f14877587c633150c647354ad78937341fa92cddf8d1fa14e659b
MD5 0532e5c5f2e7da7c2541baa0fba7471c
BLAKE2b-256 f0694a58a6cba24589231b3e2d18c20824d895ea91e0ca34b539ed1ead738fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 410bf0cd48911e9b3643dedfdc32a2038ecac01302bce694e3802ff6faea96cd
MD5 5316b1a27c3cfab46c4bb4199f0f8331
BLAKE2b-256 09229c8080e3a75c16c4963200f2af652934b0a047d968db9b0e69df9f509e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3ee427b919085c88be4f79b1ee9efbeaaa59cdcc2d204eccea53aca3dd76948
MD5 ff2b2c846557f8c01ed40c4de7347a8b
BLAKE2b-256 5f756707be1dc7fa0768b36b17a9c67aaf562d7d6e28890694f9ca331624ce5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2ac451a43922e863b2e36c75236d8a2fcbf801ad98b32b2c474bedb4066947a
MD5 e9d495f7d0e47d45d96d4b36a751f45f
BLAKE2b-256 958f050bce384f0b4c58098303e13dad7121a10bdca7ca3d11081775f668eae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2ab460ff71dd932528c8a3747ca9c316e6bf454458ac36ebdaba393850a4290c
MD5 371ad5faa231e9cb12e8fdf15eab9c1f
BLAKE2b-256 19d421f01a2bf7607466122522bbf9465e00e09dc33c7192c35d4bbf7905d5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8b07cf9a9473e6cbbb1b1837c468a69c6d484033d5aa144ed658db62f643ea98
MD5 fb23ea251ed1ca551de3938106107a0c
BLAKE2b-256 6aded024badcb9a1db6d6cf07df894bde3f6d1ff21a1d38c6b804fe1eb964f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9104a61df19fbd47670357c3fecf8afd8acc207b7c32666ac8c1df4a704d211d
MD5 e4fa939a87e3af4f033e099e3241145b
BLAKE2b-256 14ae20e5a132526468df786b61cf7f88266b0493224741fcec31800f125440b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7085ab2d4bc7359359300d2fe769c3886d66afb3a4f0be943945f74e7a7369fa
MD5 1614a27d859801e412e43173a4e56404
BLAKE2b-256 1590d28e64477e51e6bec925dbad658ed47be26158bab2e348a00ebdc7775779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f394f88632ad6b35c2bedf6b2198fae88b4687aa8b07375556cc43853dc3039
MD5 21041145aa592852730ff53164a5b595
BLAKE2b-256 94b919814083adcb8282c7040790e718960e9ce5195787d392b88a25573ecf45

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e81894d34268720cd9fe5c179e16cda1bc81dfb72bea76b703a91f04bcb66cfd
MD5 b8328a030deebfab5099cab1de597eab
BLAKE2b-256 a85e6a1cbb291e8c79cf73fa75298d6de685e519d117241e1128cf105b94f50b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a672c44a243a4c63cd4b02c28e03fe915ebc2c0a9a52b931b3e890c095c0ab37
MD5 598933d6f6b33d345cff9fe0c0d7213a
BLAKE2b-256 704ecc8801e0c13089dca23166242ba594581bb230faf0b998d9ba5aa18b9588

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ded56dd0cec6ffdc68909b5f086d70125b26b7dbb7ba2178750b1ba4e8e42be0
MD5 6145460436f0df4c2ee7db5def51c6ff
BLAKE2b-256 4efb501b56ae7cab858e2577d6bd69ea7c8fe46a9c58dd5f7fb2e1603fdc7dd1

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b8bd7193a517f54d2d7fd34f015e12419135384f71d18320b760987f9d57f23
MD5 c83ba97c9e9792c66c519d2c28cb8f69
BLAKE2b-256 fefb7612401d646ec31059aa001fd33a932bf36603fcc8d28789f50d455da066

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d61eaf2af85a52d6a4003a6a9024d1df0b3475335fd0e291210a0536ca86a0f4
MD5 f07ab36caee90812cbc1f382a083b39b
BLAKE2b-256 c53a7ecaea35d39b7a707a76fa2b734baea1bfdbf47f96ecc235536db17311a8

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1831ebb537b9442b56e1a61028f8a4a38ffad0fb25ba6f2827ae121e4c55d0fb
MD5 f0f7bebdd8b71808fb93c33ba48b45e8
BLAKE2b-256 0915058b6918235dd05cb9efe731c2dc1ffe38d6b0a96f558741abd68005bc6b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 60b2ee077f35ad986392ffca36458dc5c24cfd1787d6eee4732812522f755444
MD5 bb5eda30f1d215901d8edc370ac88996
BLAKE2b-256 24f7d75b274d875a5a80cd57e2fcaa46ef332c081c734a0124aab0a468a0bd20

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f9b7bfba8392378e71c52f3bfc61308b355ee4b6c98b894b18ceefed9d73c9a
MD5 627f712614b7aac02b97b68f16d1b38e
BLAKE2b-256 88e2de3d8258d462b66e64d309f1d054ecc443cc0018c0d6aa2078467cc93f59

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e1968563318e0cb543c57623f36bf558d70180072ed53703781ebeb8cf7d616a
MD5 fefee7e97d3e47a6d3f5e21c5accc34b
BLAKE2b-256 45a679b18daa9f1cb6c9fcea6502493c5d0aee909874a728b24d4497fa43e33d

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1c58dfe8c8f05b6bb8b7c73ba9c4eb1a867541e9f2dcc95c457d915e82f7b18
MD5 202891348f7da5187a128cc19ddeea8b
BLAKE2b-256 bcfbcb832d348f4cb1e6ddc5dd9a759fc3618b2f87d8f3b965e33058798765fd

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec84f5adffce91bab7e76e29d6b16bf13007ac790e7e0bdcba0edbcc47602cc6
MD5 e7311fbbd7e9f6135a30ae027cacc4f1
BLAKE2b-256 cf2701ca58fe1de54da503e5a2bb19f1aad0187e309bbccad5a1b088998fcd50

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd092e65deb2a68abf2ad20159bd71cbafb2815224aa8884e01110bf20d3fdbb
MD5 be71ea5da67b089c4067c0bf4cd56748
BLAKE2b-256 3585720fda9bec1daf3f9180ed27d296cc9602125cb4b0c12a2a67f166fef8d4

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1381da9cf791627f77bc664b99839bbc2ca21b63d9241a679a3cb52c837c1e99
MD5 e628957c113d424419831dd0dbe24c02
BLAKE2b-256 187f2366fb8e44a904f02c764691b42330c687b5206efb89231e9aad3f9c4921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d190122617914ec2979e6170ce2fc6e1026337b46881a0cd6ee85c11c645d8a
MD5 32d4f839c0c6e5154fedad84108d55e9
BLAKE2b-256 d53d2c4494da8a75aea17332b47aa0a0d160bc9bd94ee02aaf6e69d345822b65

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 168a3e8bb5557da9353a72e861c04e77bd1a04162549eaa5b05baedcd85debd5
MD5 37b8333a21b9e761dea18e09af5cafb4
BLAKE2b-256 99ffb1498282c529ccd72279cafa5f5bddbe4516f564f72399840f4abdd2579d

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 322d67d9eb7e073b0e78f61d19d3eeeb65c4f05b1088f39edf3f429d04c8ad26
MD5 2c8b3615b324e66d6c4352bed82f3b6d
BLAKE2b-256 c51c5c3ae10bfde674716b52c1c82762aa58aa6f9adb25b209fe609a0302d59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 839ff63a797ccb46d0455b1d4e75d0932cef4f687d1894915a417e4ed20a8222
MD5 33fac7d688e8e7a823a75dc864c44eb6
BLAKE2b-256 6d18260d81d181515149685b707dff84244b256f7a37da8ec3f93df84d266faf

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a52a07e5c48b2e752ee34da7b719a6088b2425f39fce9c9f7a25169332a5b311
MD5 2da0f857323fe37a17eb0b8d3c056197
BLAKE2b-256 bac6139204fdd9cda3e4a457f7d9331373ab402ad727298e977e65f63dc9a932

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e9498ee0b2ff88091d1c0406e9afa676ff8d9cb5269e111acfdd2c85bc2e9f36
MD5 e10a3d04ab79e2b6901ce576c1d12efa
BLAKE2b-256 b665a49fc2f7b7ae847610a3f865a836639d9cba0ae8fab5d853565ef6c7a05b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07cea7ba4b89ff842f6272a58bd4e324d3550319901789ee9fcb059e0e2fcfec
MD5 72ce05ba69d5a7ab16219aa94d050ad3
BLAKE2b-256 9c8f07a9888ad35bc7e2bba106d4c293c816eae6298be252e4a0311c0e454775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5a9e8a93cb7b462822edf7c80920588037e74eea714e520a3b23146a655171a
MD5 f584139ee50e7bc4c596f856bdd4e46d
BLAKE2b-256 e7fefc07dab70895cc524b5168dacfb7f3f10c900bbc4d701045fb871c915d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f46a3dbf37201ca94ac2038234e499354a614d93f22e62d0824b349560d8bf3b
MD5 a481771ceb8efca9d48866d4502766f0
BLAKE2b-256 a4c6fa962a838a75030618fbf3c1ae57d084c10419eaaac18212670cf35e275d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d21feba2897a12baab3de075b289529127882ee57154eda6478f9ac9b6a1bd0
MD5 5562d797315716f5f1ccea0d01612f4e
BLAKE2b-256 d05f2e1bc512e74dec2ad4217ac3618afefd7f4014326d7b0b7543d186ffd414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7194a70e1859088118efb99d90776bf37db33ec148c9dcdf84971b4e46d01dba
MD5 205a8ce848da2e958956e9ccc60a2653
BLAKE2b-256 5a7b521bc54c63e3d2ba088bed02facaed849c9a1b765c30ef591f6aa2c930c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 be91582434db143b1f0bb66c8125a04788d10b5ea7ecbab91ef4becb1e66422c
MD5 4873ba93cf5e649c3233219a494faa8f
BLAKE2b-256 2d8a92bec68ff628e07d189f088049304c33419a86e5ae5fa905ea621c58c6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c4c1f28362c4cda4fe8326efa22286cf72114dfd6f4bb651d321cdbee256029c
MD5 feb8607e7c45f0c5bb8eaa272bb9a824
BLAKE2b-256 47c3447e95b98ae3e56607dd3bd289161f5188ba039d59cbdafbf05a45cc2c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b18fcd91d0e68bf1cf1e5986c26e55e402985974fb6dddfb3c84a9f9ecc9108f
MD5 f5ed2d312ead13e6b6c1435714d92d59
BLAKE2b-256 7e69b89eba8786902c33259039c522c0ea4415c4eda2ce6b01f4ef6647260ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c29d780a52d7d2ec41d5a82ecb7d9754e9abb92de5cfb4b093cfed26e5cd402
MD5 c4619d4a93a3de30a4dbc6d6184ae75d
BLAKE2b-256 f31df7482bf597c954fcdb19d88ed1c70498829033fa86ad2950b0f57484ebd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1cd1caca7470a2d4c79ffbe29821201b02fd006570e8088bf5567e05ae987210
MD5 78d3192807b87ac5bb5a06e20d995bf7
BLAKE2b-256 d4ff2a2a357d4c2a9d1b8f15a6ddbded7d49943e03736025a6ec39b715ffb287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9850b34c043e8180635091ac6673be3ef4188e3441e2d5fcd69354d24c57a56
MD5 a02fd57e011518f6bdac0328f47bc3d8
BLAKE2b-256 7c1ce23eebdafe322b24f34c6c6233aaf730ba38bfbc85175997442cf7c32d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b68e2cfc212ad77f197d576d79101cb95dc1949d3142f86b7d1e9b6e123c988
MD5 087e1e419653ac502be1c934129ed465
BLAKE2b-256 5424c7cdaf416922b175d62b6c78ce46d7e27af1b9d18ef72329f540f1515a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3609f39932e0d127bee8abae7d5c7cb1f2123bc64f63b961e4dcb7d8d716c849
MD5 840376afaa90545abd15617167b18979
BLAKE2b-256 569ddec10afcbca8590ad96c2eaad702cf76c408d84dc4f1eb58fe23e11826ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0c725dfec1e821c5293be78b35bab26b572fbd1c412ce10786030a5b53fa404
MD5 19815b472c17e6fdbe6a190b19aaa05b
BLAKE2b-256 df07249ea052e74cf640f2314ed8dbcebb0536d33828ba126fcb252602a74ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecc5ff046f88046e0b9ea462df39c81d6a3dd090dcc50342307d2eb74244d156
MD5 a380057a1b1039021982622eb8d6b9e5
BLAKE2b-256 cd9095803d5def7649286ae999d59eb0de028a8d319260c9a1a429741c68485c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2e8c1d7c6690447ed422a667e6b095222e818fe4d9af73e1b6d4503b8b1f44ce
MD5 b78c564be9a6c28cdae7e6b0753f6e2a
BLAKE2b-256 a21d7d9194f4c1a8db8b8e7f0a15f1c756591c757df2e74bfa7f244ff3cd1455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aaffa7aaa1a402ee2248f997b954d145a5acca97d9676a87acf30804a72cf466
MD5 1eabf88c7c4608c5dba33e93290cf675
BLAKE2b-256 56d4e5889de06ae3f1db4f54ecaa7cb667ef950e4ee800a7de4e80bba419c9ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6527ba13822164d3a33a5f68a99ff9604a3f22647b77be2aa7ded2fc09d63b73
MD5 8156f0d154fad7c0e58f47437b392329
BLAKE2b-256 45b09c8e832a3191c1e474d6b12a7104ce34935047141496a7dc7608e756c5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6a24b3ec5256dadd3bbb255efa7b4d5e81b0bc3528849bfe26d2dfa55e5783b8
MD5 f0b297682279ab007286d6390099053f
BLAKE2b-256 22b4f617a5316cf3e40f0a9b2f0d09c1041633153a6231f8925dc98d62e1bf76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d78623117c7b36dd3e171c90ec122ff0c547192609b425adda67d2e3f33c61d
MD5 ffed8b6fd00ec3a1680e9161430c2d4a
BLAKE2b-256 f12ed2292b02e4210df5857a0aaca589da3f05cf5d760e82f7d090ebaafc9a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e925b64c018471e17c257ddd4f3bf81ada968146544f5af767ecf4451b565463
MD5 6c3ca3795306f98322df66784fcf3978
BLAKE2b-256 02884c10d864cc838c203f2fcf930e93f03e075f88a9a0a17a0c35204148a8a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c747ae0539ae077c8dcc844b8c3b5972944085809fa08f1281522e287b71d869
MD5 2b233123c25b302355845dec396f581a
BLAKE2b-256 9200489887f8c85a04a2a3de9ec0fefdd65b06b771937b717d7a8a68ebe11e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c8d74a32648ceb8be635182d6c1d80be2e0d6343d8f9eab7e56b6f4767097d7
MD5 a70e9e2508d80260194e566d0fb76ccf
BLAKE2b-256 4f57046e474e030c1231e17d5c8b1d49ef29675270d2cc47192a64ba9ad10076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a086dec8dd97fd6057d5fb9bf64f921c7b7de2a1d6480112941b5320c586884
MD5 d6644618ecf8e115901bef1e6ee60caa
BLAKE2b-256 81cd579d9f6128e96e9ebe2c9aac3b051b19b11abd7bf33d0c7d6f9386e46fb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f10f9ba41e124ba8ef371ddf64c9c40716d2f4906b655950b2d638187a6e97d
MD5 97929ff4f80b9bf7a74d406ad5bb157b
BLAKE2b-256 95d048e33c31aea7a133f0430d2423f584ce00ec169e2ab0492d57e7e897367d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74aae0c885a59070dacb28bc0ebbc95052e4ea01c39513bc16e100e7ff37675f
MD5 e56d558005987e13083a9b60981d1592
BLAKE2b-256 01d7fdd66222c1e369b18c2bc11ee371971467c2420b1e5a678c4c3aa019a13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2980a6e792d1844b9a141e1a797604186b2259ad363219c4d58111a36c5e1fb0
MD5 9693b5cb7ee914653922f55d98158785
BLAKE2b-256 2663b2e31f94f8f9e54e67e78c84032299ffa5440ed4706ff8a6bcef430b339a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9d763428c6eee5c19a9b0fe47b5e3173d16a4117b75540067cc2f897f4f673b2
MD5 4d4f878ced69c43211c6882206a05eb0
BLAKE2b-256 7fbc252d914b003ea6d84d78f6443296d68003fbf4fd9a5dae571900745521c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 514fb45c99c8c385d3a4c60f2b6f0e851484e901e54780e141fff4718c95e4be
MD5 f5c2201bfefae177d87d9313ed940ca0
BLAKE2b-256 d64c0a19327f758e93277d33be945380462d2bc32fce12b166bf90e566cb5cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f5a3133230d7175cd7aa9d465e2627ca866c454e745dfe39a472378cee99c8aa
MD5 1c644fd9a7efe3c45b6252e9ab7933b1
BLAKE2b-256 de3c7239f40f4292622021172fd7ef302578843ed6b53b1956f5b2066130da2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 10286ae163e3ae1430a6d1653f408a32f5c028e7d096e5c299032c5cdc95d743
MD5 8fdd69ce6b8cec77ee5756ec4b3bf6f9
BLAKE2b-256 8b454512b88f7aa3c3e01247481e0d6a8a93e21526859219ec9c315a8588f5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9019f7c3828efe57fafa9cbb2e5f2b62768cc830016b3a3eb74778be6cfa0d81
MD5 dcd08aee1bf01b1a14f7d07abac75f61
BLAKE2b-256 0f13d1adf6f7ac5c1b36d4771ce79d209930379826d50c3a0f8382988e86151d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfeec3a2053c61c5684c4b57a72fd71ef0221b50d848c3056baa6414ba11b4c2
MD5 b083c19d07cb8b23b96440c1c931014f
BLAKE2b-256 f25f2d33cc64a4225cd3dab92303ee26673c4e232bc78dbf6fbde49f73e9ed55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 549f683cd0db29361133829130d2dd762ea8a13b49ac1b62ea5600772e379261
MD5 f823fc2dffdf1e34806f948fedd8fbdd
BLAKE2b-256 ff8bf94e94e22a00125829c497d437717219b1cc3ab87a8e0cef15ceb59cb930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21b55116ae270527f5a3d0b9f466b9d55af5b29d4274542ac4482ed7a2f94ad3
MD5 07c2181fead5e2b59ae3d80731ff7434
BLAKE2b-256 e865578fb7ab238ccfdc5a0b68625c6b2f463abb8b610c1e65d6c23b57d1b127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f0be64f6ad3852c2dfdea3286af2f2407cf5efe732af95d356a9857a8c9c196
MD5 e2d8f77967d9956c5a03853d9f440b5a
BLAKE2b-256 805c6aa1219e8cedad7cd0af7f5925944b615312a7bde6e733c575f443094909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba75b1958d165afadcc872436b2a358f962d1835732e6818f1dca361c97c1042
MD5 85bcbf6202970bc204346b5f0fca572d
BLAKE2b-256 1e8350028fdcc553f6dd50c524b027e0611f20002e5e21833efca790a2a40fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6427a67c5de9b2cc1056ec8db1f0370e16503362ed7ec104e4ba0d71aafe2155
MD5 f441618b0e556c5e5468169344523508
BLAKE2b-256 1c3f1a7b43bbbc81f33104c9dbd80c0ee745e866b754927572ce1408b58353dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24dc7656df9b84f21988b42e94cef961eabeb55e056f5897471f8f9c8dbb8da2
MD5 ad05cbbad2b5932aae6de4e3c033bd6b
BLAKE2b-256 954d02c0d57ecc66ef662dc2abeea69b51abe4d2ccdd070363afa24aa027c0c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6b0155f9272d5bd5580b4f1f5fd2c08402dfe1d352d33ab5377b56ef2ebf58e7
MD5 e25be2d6ede0a4aa92ba9c4609a86b6e
BLAKE2b-256 3cdaf86ed971b3756887fad2ba29f2f5681a7480c94c3c8e11f5e0e806b4a7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 659b781f2e97eaa9895e93fb5e1eae7ccc0334ccf9801a61205172cc2cd695a5
MD5 ecbccdf1491ad3fab37305078cb103ce
BLAKE2b-256 2134e043542d24169213994a89c65f24af4601a10dc517c953497d153dc5fdd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 560da90c4dabca21d2f5dad4e0ebe24c182e867bff028d36e798b9a447930222
MD5 61aa37cf2b489e3f9e4d7b3e86bfd856
BLAKE2b-256 8cdbe4e1da985ea6671020c845a2edde546d86559421dba71788ad83ce8723f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d7e1bfa570f8ae7e885388019b1d7e4a1c149bc11d852397d25b02489903c9d0
MD5 6e58717ddb0836de8ac8e97779783882
BLAKE2b-256 b94d619401113694021053b9c930dce4c5c7aff7a3a80fa41eccf39e795c3e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b6582b753022f2fbca58b9b450ad409422ebb4a06d0b09c41265861c68522c6
MD5 586419c0a596983cb89fb79ca0b0c8ca
BLAKE2b-256 e595522ae1685f094a6677e420bf66439f1cde8c244ac65de3ad70aa8b2afcef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cc908adf251d6ec955d1ffbeb7a6227f2ba50f40e86bc381ffaa8a6359a4769
MD5 4c2670a2f65f5448981b3fa5ee3673d8
BLAKE2b-256 4e64536d5dd784853b68f2cb0fc6a2882683407b2398e9bca7f6c045a6700a76

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