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.2.tar.gz (18.9 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (697.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (720.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (764.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (650.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (486.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (511.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (552.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (507.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (485.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (468.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl (717.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl (761.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (646.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp314-cp314t-manylinux_2_28_s390x.whl (508.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp314-cp314t-manylinux_2_28_ppc64le.whl (549.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp314-cp314t-manylinux_2_28_armv7l.whl (481.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp314-cp314t-manylinux_2_28_aarch64.whl (464.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp314-cp314-win_amd64.whl (367.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (694.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp314-cp314-musllinux_1_2_i686.whl (718.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl (762.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (647.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp314-cp314-manylinux_2_28_x86_64.whl (483.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.2-cp314-cp314-manylinux_2_28_s390x.whl (509.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp314-cp314-manylinux_2_28_ppc64le.whl (549.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp314-cp314-manylinux_2_28_i686.whl (505.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.2-cp314-cp314-manylinux_2_28_armv7l.whl (483.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp314-cp314-manylinux_2_28_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (445.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl (694.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl (717.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl (646.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp313-cp313t-manylinux_2_28_s390x.whl (508.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp313-cp313t-manylinux_2_28_ppc64le.whl (549.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp313-cp313t-manylinux_2_28_armv7l.whl (481.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp313-cp313t-manylinux_2_28_aarch64.whl (464.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp313-cp313-win_amd64.whl (367.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (694.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp313-cp313-musllinux_1_2_i686.whl (718.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl (762.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (647.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl (483.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.2-cp313-cp313-manylinux_2_28_s390x.whl (509.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp313-cp313-manylinux_2_28_ppc64le.whl (549.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp313-cp313-manylinux_2_28_i686.whl (505.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.2-cp313-cp313-manylinux_2_28_armv7l.whl (483.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp313-cp313-manylinux_2_28_aarch64.whl (465.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.2-cp312-cp312-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (695.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp312-cp312-musllinux_1_2_i686.whl (718.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl (762.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (647.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl (484.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.2-cp312-cp312-manylinux_2_28_s390x.whl (509.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp312-cp312-manylinux_2_28_ppc64le.whl (550.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp312-cp312-manylinux_2_28_i686.whl (506.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.2-cp312-cp312-manylinux_2_28_armv7l.whl (483.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp312-cp312-manylinux_2_28_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (445.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.2-cp311-cp311-win_amd64.whl (365.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (696.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.2-cp311-cp311-musllinux_1_2_i686.whl (719.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl (764.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (649.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl (485.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.2-cp311-cp311-manylinux_2_28_s390x.whl (511.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.2-cp311-cp311-manylinux_2_28_ppc64le.whl (552.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.2-cp311-cp311-manylinux_2_28_i686.whl (506.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.2-cp311-cp311-manylinux_2_28_armv7l.whl (484.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.2-cp311-cp311-manylinux_2_28_aarch64.whl (467.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (445.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.2.tar.gz
Algorithm Hash digest
SHA256 ebd9fc7dbc7bca64f6c9ce2cdadf68f56c5acaed39a0bf721a7f171f6bdbb07c
MD5 e8d1a8bc76fb5e767a1d8c42e2170ee2
BLAKE2b-256 aa75d854da1d65aa8af871277a520ccf1e5280cf47a172fe6c8a927077b922d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64adc7c1439ec770a411f999c4a2dafd9e6638474a66a07ecb489e7c93fbf68a
MD5 00a6f25e9129b3d687849bcb8dfbd6a4
BLAKE2b-256 f06199e12057f950a1deeec64ba0d8a94e35d61850ad6c8ef7cecd85703d3dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38a1575aa6141ebacba4305a697796ef053d3a2c521acc61d061ce4015ef49af
MD5 01dcb161d0b6ff53a145c78820cc139e
BLAKE2b-256 8f0afcdd56cc9b285ddcd0c5f276ee008e462b1b883bc4a5775583d557cde3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f978c48187194206b44acbe16424eceab02e2bd307526d4ee804e56e0bf5853
MD5 0ebc9f9f26da32615f90fa5447d3d2bc
BLAKE2b-256 c8be7ee34f97e04a592b5c865e5f24776e4934518c52d812ef0e28a1c31c8815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cdb70ea44faa44443ddd86acf380737fd82d556a29a4c947bb440898c2d65a9
MD5 e69fd75aab240596d73b882179230f23
BLAKE2b-256 cd27a4c92c6275508e958b6197b2f13c109f4f022dea99208c41d1dda420dced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17556d737be70f7022c6c22b25b3298a3c9586cac8c62c971933b094f924920e
MD5 3c5977929cf613642766e670435c6661
BLAKE2b-256 b5e18e3379b489a4298d03a6571939813c4c6d2730f0a8b8120ec756ad40966b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 10991a8eaa2719530b852b07f50b33a2f9bd5a388aa5328ad6add57c2d09f524
MD5 9860368f63721a59979090615f3cd9c3
BLAKE2b-256 e84bbd26b5e1bf208634345f00ddcdc8bd31e6eaeffba69dfb19cec12feed177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0976bb0448f602f6cd473c9006da82e03ad45e694421977b09d9d31051ce27a3
MD5 be4634508ff0e36a953b9fd1edb9c1bf
BLAKE2b-256 41f3eae17d5092e1aef9a3b440269215d9cc5ff93626a99dc7ba57ed1947f0ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 71dbe2004f229f9099db72583a01bc23606e3dd877549f5abef61a796029801a
MD5 0fc01aa2cdaf2a26f12b06baac417bd4
BLAKE2b-256 78bc81b61c61649c4ab0b47ca02a5dc4fe718ff8db346cc583ba70142c696769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f4bcb424f1b954a34f30c92083e6ff2490db06184b34d07ea8eb6cb954102ca7
MD5 5d258374cafc23a1b094e909b3833ee7
BLAKE2b-256 206bff29cadbaf88a747becdfa5bd2928cbafa0d11ac1fb40eff3d6d5b520838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dde5b0ca6b20939855a160cce1259a88878bad3840e80c63e93772b65a74b3ec
MD5 eede59de6c889dbcfc16ed93d37ee69a
BLAKE2b-256 7f95e550e40342fa78e3809ce9c3970d2d582eac303380ca6f5ebee7355f0da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d84fa8da28a53680336848191065da04d630882bc87746f54b82886a1db3623b
MD5 99184f4d18df5f3ed6ac66c2d97dac88
BLAKE2b-256 fc0d418e83cb89221b14a5bd38370075de05d3b6a8d06ef6b1b3c121b3d0ad18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f77535dd0b4400921502ccf75faa0b0fc759276c83d82b9444cbd0a877c5633
MD5 cb6b91b68dc95d08a8b38fd0fdb1062f
BLAKE2b-256 f45a07a3587706c49d508bb635f3b877f30b59abe7ed8a2ca2cb1cb6cb66cb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4afc62c3419c0f70293b55d0750033d72134f5f9472846691050790ab2bea6e
MD5 38e796be705ae9f3a39a1e82ed522b3b
BLAKE2b-256 ffdbd945f9385477a203fd30f0609a96050ed40329698a3890e4f58262077823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 650dc3f740209cf50bdf61bfa73268c2d33abe44e5f7f1132e7b841cd5b36f39
MD5 04893af35ab9d7eca455d010b70d81b2
BLAKE2b-256 0f715d8a57f62c4a202bc5a098fb36ee3a3734fdc0ffbe3a244b589e48b6efd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3af9811cd0be488435b0aef59273761b4e7af918959dbb2efb1a281d2219fd78
MD5 cb32ddc35457fb0261fa8595a4e18c5a
BLAKE2b-256 ad98ac2deb53fe3be199cfb894ab4a7cc4a3a4fa74d7d250df845893081ebbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0d44fa02d8cf9fd72442c1569a62f71d336a2a333c6cb358d7aba1c0661ba5a1
MD5 d641e67d3cab96ab0c4b22ee6d65f4dc
BLAKE2b-256 a5d89d2c5f580a3b55714bae98e83a26451446bdbcc782acb82625a532cf7862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ad692e03f8db5c72375057db10f291043882f782c32f919dbe50a0d04d052548
MD5 2444c709cf07b23cee8bd568f26fe933
BLAKE2b-256 4528a2a5fdfda8d0d078fc5a166a6e05caea894582d6f92820d0b397424b465b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d7ae21ed0e5b73efc5f4331624ebec20fdd71e120943f18c0eac52a700ce86a
MD5 b5773fa16f9c38baf31f3cfc1bc0c169
BLAKE2b-256 ba077c789c46c4e27d1e672340fb0d4f750bcc0a61187622c2ebdae1484497e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e0841165a13b3caf4741918d8c39ca1d84fb229c4a16857ac0f69fd886e0f3f7
MD5 2994461296ea8f700bea0e0c6ced4bc2
BLAKE2b-256 89a032841a6d505e798b9d10f98b93c391053332a8c0a227732221fe67d8c969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03d6f9b7a33a94e63b824bd0d2309e9df5f7ccd5a6e8dba1cd4fb90f07c57365
MD5 c22187ae0d89887fb564eca76eb7a79c
BLAKE2b-256 f1fd701f6f6672800ad88be7775d5bb31c7115106fca3d3b423640820e21886b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77f5b91841e69494667f77ac05b8ee2b8b6081cd8ac925ac0dee3599e45fb37e
MD5 8547451ac25efc515a4627c57475169a
BLAKE2b-256 57860ba7888c4e598c6151bdc7a752724a5a9673c9d3058d2f0b804dbc680ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a579603c01b6d0d82e1bd997369765dd21fe5011fa8dfdb5c06c4cb3a5a617c3
MD5 62761cd602244a5e74027e93d89a1f6d
BLAKE2b-256 f10955f3cb6a95eb005163e03c827e5ab7759332e7df6557f489cf3e3930f838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc3925d0554c59af0b9c6ac83e4b044f76a89337dd3d2bdf3ceb2935ccdb7891
MD5 81e67f3acd81d6a39c9391fa9fe64d69
BLAKE2b-256 5f0e4f9c258bee5cd11c61b375f2058d2c84c222bb187c534e9a6cc77c93a28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4807246322ace81622e3e78f2d69f071f563b9beef8101ca3fcbedb8d07671dc
MD5 28cefbd29807fb4d8ebca74a8be592a7
BLAKE2b-256 5e88a9acfbc234adeecd226d3b0e2d716431b342c59cdc7d2e5225aef6add8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 933f893701bbc5019ebf42229d6865d0d5e10ebdcc7a0d46fe01ce0a6d1ff72a
MD5 bd436efbe744b0c4bace0f403faa6e49
BLAKE2b-256 a1aec8341ef3025d5fd9f47246fe4a5f8de5c7b53321f6a050d63aaa6da7d6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 45e7687e51a37a02b97e4aba5c7049ca4a85bdbf8704be7e22669d486c85094a
MD5 0c08afb16231d194a8fd6e580b8311f2
BLAKE2b-256 28e52273097224387003408d3b107662fc9ddd287a703132cfa2dd272305504b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3bc8219b319556ff15ed814ac7ba94729d2c03fa7e22d25832e653ac0b50a2e3
MD5 21c58433327b17270e7e42465106a6fd
BLAKE2b-256 278a0f187c34503ac93c7c3c2ad82e37ef2268d5ebbe5ebbd4dcada608506fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 99926dd10d14e6d534289cbd655659824c6c65e99c77c921ea50dd62fbca2849
MD5 53ae939a7ba1ce0eaba216c734fafb24
BLAKE2b-256 462f3bcc741957470bacc7fd38e6876db2a47ff7fe9e11e902d2b3d87724a1bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86bbd678f1351267a2e0c5cfac77ee2512506a073acf408337aba31622f316c0
MD5 71b7e1621df37da502ef1f294e3ec727
BLAKE2b-256 ea77ed6819777d779f18656c3c78b7551ddef5ea5114f953aaf469f12757d8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e56274ccb356ae1ccdd67c0a89fb707c936257ef9148d651fea85f39aa01cc93
MD5 3ef951bcb8c75ab44cd79299260f12c4
BLAKE2b-256 4e103ea552a99f139b02d9f9e6bff38914e3ff8b391f9b44cd520783f8e1fa14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9623da0fe9c97ccd53468ac029a9cd8aa24814ec022763605e5f1e63b141f68e
MD5 0f70de67ce4de41d9517d958eacd6f46
BLAKE2b-256 1a729344578815bd21bd5e8de73c905683a2876e78237e1a4a6e22f358603532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 300b8dbb10580aca22cdc0557707421337abe5e385722a2629ee6fccfaede3b7
MD5 f5801db4060047730911b0ed30df8f10
BLAKE2b-256 b9408da5eebd7b066b85e40451b15c85c24e31cfb086cc2222eb3af370d45eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3480ed776de06afc6f107d39ecc7f6596381595184a28513ab847dc61fa391a
MD5 56d9f764fefa1c3023a52bd94dabea25
BLAKE2b-256 004db2cebd7d84fe62f47606ca5df9cbe52f04d4ced32e7777abc14c8ed31d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c617b76466bdec39ed41d427209c70a2f17a7d2d5818396614e094448062042
MD5 d08ee61464e4255fe4f22270c6dd34e5
BLAKE2b-256 1fe1f45abec19476c58e7b26272676d82d67c573e36947094f11a3909a65bc59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f31162153ce1e1f7cac5f9bc5fa8f4bd42f2407b4d8ffa73be510e811d165d37
MD5 5db9a59eb60a4d3bfd7c95a9f90275a8
BLAKE2b-256 23856bd729e5da9c9da287696c7daefe5de3f27cfbfa70e10307be81f9fa7b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aa0b0c8bcbc413b3ce8ec54771c3643f2755f0c32b9f1581cab1194a869d209d
MD5 dee44cc859a9749e9f2b1f1f8b1c2f60
BLAKE2b-256 7429cc572501db5654f4ab2dd6e486b4ea62b360932ed8a18a09b24962049f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8a388db17690e811384471296a66a900566b9e7fea5935f982f6a9f78242edd4
MD5 23d7ef9fcf57a1c1dd6d89700f667393
BLAKE2b-256 3b820741a6a92bc1b451c0bf3513e88486ac2a8f6f656549e7d52318ffc7f621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d40881e8aac06c8cd42262dfedb2051675c2cee744649dd7db0f878a4422d8f3
MD5 e241772bbab7477415fdf4d57cef3d93
BLAKE2b-256 ac51f095f3d1026e43339711248e9f3e581ded7fa3f81a18b7f0e0087bdab799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a7e2276a15386a92f9a1027cde2e17e09c5343ef71f888ddd4bfc98859811dc0
MD5 b15ea36e6d92bf496aacdb07232bfd9b
BLAKE2b-256 dfbe1584ed9c6acf61ea0ab7f9d2e4980afd6f47dfaad3fe602a85b70a86a2c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 975c0f0a0f292b759be6640b6e644e26c87c258ab7612f546b309c9e77d591ea
MD5 8c93e1081cb19ecf9cf4402ca1f93155
BLAKE2b-256 c95f5bd9df6b086ab0efecd279e2c5c20b550f6bc59cc6ffcb5e92021889f75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f4e3d2e51d0c4de36c0dcddfc63d170cf51d248554d990ac11834deb3a2081b
MD5 0efd0b56be21a0bffee9c5da8598cc73
BLAKE2b-256 ae4b1676c3f0633ebc0651974aec0a783e7f652b9f2e48c0b99907df13ab0ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 895cc238202fed51737dc3157f3c85b0a3e4aa7a42429e967cb03caf26a05f77
MD5 7b2a62a95d3c8db6213dfe6ae0627f64
BLAKE2b-256 96358612163b16cd3e3b4a8bdaa5bf6444902b677bed94efcd23c156588b944e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c071a9486c4f9c2d2fd69622506ac7e3f4035710bce58a09a52d23d4ae04d4c7
MD5 e0aa1b60e0fa8e16e18dd5a566a54610
BLAKE2b-256 3034490e2029663358da7c9a74455723da6b3191b70ef277e2b00a842d26b8dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8e8d87405934fe1735e9d9fbf17ff0b80bc2152ace4bbd9add2407752d7b8c6
MD5 4fd1ff31286ddb3eb597cb69cf4a59a7
BLAKE2b-256 4fecba17a86f86d16de9308414bd1fcc95d1298c838f13d7e3988dad36e2dde0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 764576747b2347c86ce9e5acac15589955cea4ea2ca0237b61735c510b1974c6
MD5 f7c90104728651ac533fa3da1013f2b6
BLAKE2b-256 8b44231971af2f7e8be772c676f8ce9d7c8f1e5645549054b67258252db3bc5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3846f1903cebcd5ef0f2f8831274e8541457472766e6e9e833e15595fc74f192
MD5 7853da37911865bf193e96da283a6d7a
BLAKE2b-256 c74947beaa1ec4ba409a375faa23bb30aae365c0ec7f6e599c1f18ef37bf81f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c91ce653e9f3a77fa688544ee1ddb49a2eeeb039c9a2d4f75c10c66a17fa6cbe
MD5 5c6493769b050526cd28b53c22211bac
BLAKE2b-256 7168a58ac9489c01e0be01a56ef9403666eb5009b5a904087efe49cb995cc84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 911a3f0fddbd08671f9ec9beea92c16ae56a181a27633873faddc096f7a3d369
MD5 1fa87dc98681c614bcebcc4621a91647
BLAKE2b-256 1bc181c28c7871408f49dac7cad21ed88da29d1dd88d45f4a72fff98586d49b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5101a2eed8ed7b8657f08b238cfec1e41e3592a2c6c3d94a4f38bb853d99e77
MD5 a188b26c58fc5bc2f825683849abc9dc
BLAKE2b-256 b23da508bcb3cb8a43ca648088a40e41bad1c0086620d7b27ec98ff5877e10b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39b1e59624eaf766f87dc451539465716ee2c1733ba2743bda88931c45d657a5
MD5 407741d80da8d66a608cf20a3d8a7cfc
BLAKE2b-256 1fca720b97b2e2fa983daea51b3b995484c95d05d71c29f691b7d79621f4f34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bac93ecd0cf1a2314132bbc9e9892fb970626d02db66c07ff0c4c14233cdd9f
MD5 871e53089a76914be837f9e18a1cc284
BLAKE2b-256 08805ad9fa9378e8aba54346b83cd7784e45ec9cb91ed6e9491fab572fb9f5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59dbca602fc959992a1316705e3f42226de734ee80c2a08a92bf81789313ad22
MD5 a6ea14ed6d2fb0cae2f119d222f8de71
BLAKE2b-256 61c902ebec951ca056693758bb0d301206079d08a9cddebb7be1ccf57e48136d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3afe93db437d56d20d87c0cce1d9708b7d6b8ea1da638d657a7897525ea0dab7
MD5 68b3fa619a3c3149c36c7b1aeba2a4ff
BLAKE2b-256 3d6fa58ccb225332bc48b525bc70e5943c33fadc40069995da25552bc387fc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c7df6232c2c52ea4ce5bb4c3b16ea5a8a59535bbeeabd7d01221478aded2514
MD5 c214486da79b1a779ebac14f3e02cd8c
BLAKE2b-256 5d5b22120e3e48304a9229f43bb4e8e3edfb9f959be4280750e57ad08ca33e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4abb139e89a42c5c8fdc081ad738f513d2b519fbf849adcf466ecc616e7c0cbd
MD5 309d77efe90b1e22f61b5f96f2a6863a
BLAKE2b-256 14145149ac16173fb168601af576a200858468f5967d71294d6e5f95829fcef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5fa8fb873d7db5241486ed45290d54658c6fb7af281d637058cf8b66fa8dae3
MD5 acae87c8843645cf999e545636e4f44e
BLAKE2b-256 201ddc2c49a746089011c9ccf7a655924a1a8926f85015cb7af51777e51d8709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a39f16e87e179ec114f7b9175ddea371db4ab2727d43ae05d5b876ce958a3b2
MD5 2370c3d2fd9e3b6c3c05e2169628c544
BLAKE2b-256 b0e88dbd296a93a97118006811f0c52891033a1ab3a5919ad3c68d19eae5cb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e7adeda6a6ba871593235d30f3a0c0fadfc7b8eb4595b53e37e693c5e74c4ef9
MD5 956c18734f1ef1e0a41e2881aa8bdb0a
BLAKE2b-256 be4ed311b82f367cda77b4d1ab7ca354ef6dc996bacf285f13cd7106f0db35ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ae7b3621f254252863b2f7d42aa9106544fca9d6713db9fb571a6d01581705ba
MD5 5434fa3780cff2b4912eaee1b207d6a7
BLAKE2b-256 e1460cbc7251fa95d194e4ae4c959fff11aee3a9511dcaad96df4300fa7451ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5c9b1a010a556504ceef04287291d2698f03b0d0532f3faee06817a9954b99ad
MD5 cff215906960e8375d5e4eb5687cc2b9
BLAKE2b-256 b0ec2f05ca89e228c66c951c18b627a0769d2973fcef0ec4798b3cbc3f4378ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e59f16d90e7f7a14a0390d211a5e1ed7b063c3188d6f4a09fe87feb10eb09196
MD5 401b3f2e16d47cbb0a5acc4c75bf0bfd
BLAKE2b-256 0ab717509a004ec6c722528033817091180bdf77b976eb17d10391715ddbe756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 710a45027c07fd74cf99c1f4701c0689c3ae1682db136702f1660d1e44e84bdd
MD5 ae15cb74c42fd484343f88c260ee0569
BLAKE2b-256 eb14e21fb4c26d9e349398783b0020a1451aab59f5c3cb9b3cd8d784d62699f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fca7e8e2cc3133ab27fb2d1b085f30a25ed7ddc3ccb3da13ab6c876f9c6a7f2d
MD5 1730b26da13d3af8b07a205bccce7ca7
BLAKE2b-256 75fb4a47c10d3a278e1b3f939d72e84904f15c485a59af59f50a0703ec897348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1ba4b483bc8c88e0e4791f494e24dcd35aeb290808e86ef85ed951b4a37cd27
MD5 b869700cf006bc384ce6842653687e8b
BLAKE2b-256 2cccabffb46ee0fe540123111e4b2e4b33a81da95927741cfd9ceeb92f7752e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a82e2c51b38c7b1fa6aa17d49bde7228a49d3465e69eef2797d5c897d7c4cbf
MD5 5d9d514977160eb6a9e8a123b8e68b17
BLAKE2b-256 543c4bae6114c5ba9b16d5fc9c21541785aade918e6ed99c6e786426fe7d34c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc8c1ea24eeabaee8b8230f3e746661fb2f30ed3b09b2e47483e308ac3f341b8
MD5 93587a663c07940d1b5dc2782231b14b
BLAKE2b-256 947c5dd4e2ea79ee5f4b2762bab857bfce2874dd9dedcc689c23378c4bc9a3e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 870c3700e56395417db637a93506d53fd901540d5d3cb87e5b53a2eccdb6b2b5
MD5 345bde3ca0e97875fa3780d7b460ba1c
BLAKE2b-256 beaeb58637fc88d9fe0fb12d0cf735eafbe9178fd1d319687725efcb771d9f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97172066d580744ff55fabaf6c7bb51ec0178a0f81f86674ba4950b38d8f7c67
MD5 6f60eb647bfe782950d18cf4a5adecf2
BLAKE2b-256 333958e3d075b2e1d352720c90dcb63af435aba3d7c42848f3de90d4edb1a066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 03131763654972602a79256592a0ce0c11021c2ed11fc9678302c2428efc0970
MD5 277606a5f54def67788c036ec19a9de2
BLAKE2b-256 e747798f32f06f4747662d8b27a4aeeffdd9a718e56970a40e4428ad64a73b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f9a88471edb0f3c5612a2b7e471125c8cc2710a246248d421c37130fd9ee7ab
MD5 ef99f99fc39aaeff0209f7426db822f2
BLAKE2b-256 75bd22a7301f8d748d44b54c5161faf4365288ac488eabcfaf6a463adc3acd14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1b753af87d2d518b3b93080aecf87a24153429059fa5aa97484343cd2e58f77d
MD5 907bae39d4d048060545c2aa4208d556
BLAKE2b-256 a424974ad5c13d0d8d85728b3003c77c9056a1c58e750c71c95e0b913135b92e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 578e6542635e2b045c504f4eedfec83916468870172ed538261450b925c7057e
MD5 36241762a3d41cf8894964b3b2668da4
BLAKE2b-256 158b21ef8e4af8bafc4dd8977303c57be77a6c6b73d6c91bedadcef72b1ee5c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f40e89b5b8f84e49a69325d0db20f3c20f80825ed97a9f199bbc8909384858b
MD5 9f87ab074321e5258e2a87cf72a0ffc8
BLAKE2b-256 7e1e644cff0429a9313d21e4d8b266dcbbfc01a294b375b8d8562e310aeeee2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd7cd84ccf468007a26cad8994847fb78010a11b51640dd25e2e983d4aa2a0d1
MD5 4c4f1464b28f8e3dc6736fd202c3194d
BLAKE2b-256 8279512385afd8956445338ea72e04516c03f7e0f246a69f482c29bbd6749ab9

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