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.4.tar.gz (19.3 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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (701.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (724.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (767.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (653.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (490.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (516.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (555.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl (509.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (487.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (472.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl (698.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp314-cp314t-musllinux_1_2_i686.whl (720.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl (763.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl (650.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp314-cp314t-manylinux_2_28_s390x.whl (513.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp314-cp314t-manylinux_2_28_ppc64le.whl (552.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp314-cp314t-manylinux_2_28_armv7l.whl (484.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp314-cp314t-manylinux_2_28_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp314-cp314-win_amd64.whl (371.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl (698.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp314-cp314-musllinux_1_2_i686.whl (721.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl (765.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl (651.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp314-cp314-manylinux_2_28_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.4-cp314-cp314-manylinux_2_28_s390x.whl (515.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp314-cp314-manylinux_2_28_ppc64le.whl (552.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp314-cp314-manylinux_2_28_i686.whl (508.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.4-cp314-cp314-manylinux_2_28_armv7l.whl (485.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp314-cp314-manylinux_2_28_aarch64.whl (469.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp314-cp314-macosx_11_0_arm64.whl (450.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.4-cp313-cp313t-musllinux_1_2_x86_64.whl (697.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp313-cp313t-musllinux_1_2_i686.whl (719.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.5.4-cp313-cp313t-musllinux_1_2_armv7l.whl (763.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp313-cp313t-musllinux_1_2_aarch64.whl (649.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp313-cp313t-manylinux_2_28_s390x.whl (513.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp313-cp313t-manylinux_2_28_ppc64le.whl (552.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp313-cp313t-manylinux_2_28_armv7l.whl (484.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp313-cp313t-manylinux_2_28_aarch64.whl (468.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp313-cp313-win_amd64.whl (371.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl (697.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp313-cp313-musllinux_1_2_i686.whl (721.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl (765.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl (651.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp313-cp313-manylinux_2_28_x86_64.whl (487.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.4-cp313-cp313-manylinux_2_28_s390x.whl (514.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp313-cp313-manylinux_2_28_ppc64le.whl (552.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp313-cp313-manylinux_2_28_i686.whl (508.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.4-cp313-cp313-manylinux_2_28_armv7l.whl (485.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp313-cp313-manylinux_2_28_aarch64.whl (469.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp313-cp313-macosx_11_0_arm64.whl (450.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.4-cp312-cp312-win_amd64.whl (371.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl (698.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp312-cp312-musllinux_1_2_i686.whl (722.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl (765.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl (651.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp312-cp312-manylinux_2_28_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.4-cp312-cp312-manylinux_2_28_s390x.whl (515.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp312-cp312-manylinux_2_28_ppc64le.whl (553.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp312-cp312-manylinux_2_28_i686.whl (508.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.4-cp312-cp312-manylinux_2_28_armv7l.whl (486.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp312-cp312-manylinux_2_28_aarch64.whl (469.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp312-cp312-macosx_11_0_arm64.whl (450.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.4-cp311-cp311-win_amd64.whl (370.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl (699.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.4-cp311-cp311-musllinux_1_2_i686.whl (722.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl (767.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl (652.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.4-cp311-cp311-manylinux_2_28_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.4-cp311-cp311-manylinux_2_28_s390x.whl (516.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.4-cp311-cp311-manylinux_2_28_ppc64le.whl (555.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.4-cp311-cp311-manylinux_2_28_i686.whl (508.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.4-cp311-cp311-manylinux_2_28_armv7l.whl (487.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.4-cp311-cp311-manylinux_2_28_aarch64.whl (471.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.4-cp311-cp311-macosx_11_0_arm64.whl (450.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.4.tar.gz
Algorithm Hash digest
SHA256 ef769cd7bb0bff6bbefc6541ed6d257e1db2f8056c4abbfc1d84a4ba1461e939
MD5 3925f164569ae6a40e4b247e9595ef47
BLAKE2b-256 36d4035ecae19577bddf8ded63c5ede1b3f77261291bb30f8abbc56cbcc60ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca0ce32e58c263eb871f2922d5d148f1e61b7b847a6eda8cd7f4e6e7cce8c6b0
MD5 b2957818ef4659fc2423c7d2a1592ae3
BLAKE2b-256 b1fd0452db43705ced7520dee21502fbcf9d632643d6c6f14354e8220b85d241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6583fb8d183a92fc1fdb338748a9e930f8e9d37e7d4ada6ad23a4c9382e58d8e
MD5 c25394a1dd326457a35fdad080c517a7
BLAKE2b-256 06f37f72d026b21ceb4523c1fc4088ea1e00dfbfaf6ab5e13ab44e26cb8d1c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 27cf28724e27557262626e6c9678a2922f5b48975853eb519b6e6ac07b22f05b
MD5 4701161fdf9f49f99074a0f0e37ca5fa
BLAKE2b-256 69fd87fe6b50d78bd5dd250a96c51bb798fbeb1f3b6d507143ecf4420c19a641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1bea5dde3298fca563645ca2c58bacf112f2848e2e2fea27b7d9cfef3317403
MD5 efefad8a07cb062f588cdf90d34e534e
BLAKE2b-256 1b99a673fe746f56670e7e13eeba81dc6cdc3709cb5e1383d7aea2388123e9a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b0347cac1f0ddb9c4663a23e0e54a20a40ae3ce82e7b1c2f69ec7b21e9a20893
MD5 f6799e3ee06bee116430ed6486f348c2
BLAKE2b-256 c35943eac4515814a0f99802f48a6a0c0ee7f24862ad37fac7d621451fe97322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d6117324ce687995efa331e12c650f721cbbb935ecedaf4bca7665741fa4e087
MD5 a8917bbaf61ede8ac82f27e390633745
BLAKE2b-256 d0f6b5fd35409a298b36c2019b2046c0e1891b892a7f47f6a64c604101b7d3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 95775e1dffde63d374c08a04784468a1bed8837db9d7d04116ddc67bf050918b
MD5 3e423e874c947e8aac5c4950912d47a1
BLAKE2b-256 5832015c7169a537218c81e0d58d8e5e65a26eb4001447b0a945af5846b3440f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1932f1f5747269959c9641c32c746a1ee1e0c0de524848fee085e83196c635e0
MD5 a044a18b0e0dcf0d56590688293c4130
BLAKE2b-256 a0fafcb331c7d07fd55e117976434763e8bba230b6ef9b7c41220a3b5360c6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4e80ab41df60034bd181ef16ba39f92a6734ebcfb1d1614126272c142f13b753
MD5 d9d73fc8c1a06be8afd336a221ccd80f
BLAKE2b-256 87ff2d8099c35fd064d4a776dc83a8d63c8f086b1ab7ac482dc8e749c3b36a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f335a48bc8abef343473d515c5dc6c3ba00a4a7b968b04edb0e184684a0d2a10
MD5 359cbb50ee1853f867fe37e66b6f220f
BLAKE2b-256 77e84920ab8b0aed0632127d302d594763a04b752fd8b3226c7b3227289d09ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0af825917fc9394edea37fe31509d66a5949d46caf3130b029aa9e07d3a8b18c
MD5 07bc321cdb66511e3aa9d305a67a1052
BLAKE2b-256 688b3e570aac8a2aa934399a84233051568268129cc75b1355fd09524ea16832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89e0feeeac45c0f7dc4c10022bce441dc7dae413c21a1076556af48f93dfb0d1
MD5 d5ee8ac24e195e85cd846579d1bb3508
BLAKE2b-256 1964d2e9e74a7751876710a0e5dafe4a0af93785fc4bb318385380fba54c2f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5a460f4db5743e7cd70263fe11ceb5c77cf2ed3f55c76df2669416b1485564e
MD5 eebffc91120558afc197f64e84206105
BLAKE2b-256 b54d6d2a8a580dc2a666538cf78c98c94d85bfb2e63c76e20fc61040f0e88bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf930456ea6011110fc2f07dfd8d2c0242bb9b260cb1b31c8c0a0be62479d69f
MD5 36cb98ef91818f20c0d8a757480288f3
BLAKE2b-256 bff9959a6244526a643e52d0a0c0878aafa0da35dd335b5f60357b1628d14fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4af26fc3135d7990ab3c99c11b837b21d8e87dc5bad755a97aadc0f370022ebb
MD5 729e3e981b1c039455df8f49467721fb
BLAKE2b-256 68bb415e198e066595281e908b229895fae5042db05c891d0fcd5e4f2e05a301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 579ef6300401080f5a297ec7c25368b91f8325a5dae5b2b36ab2a6a30138f9e2
MD5 e1c0fc3c23b7085e0e97ed58e4234929
BLAKE2b-256 4cf290338d8bd8f881185be86ac9a26236c3239f3ee287fbe962b0eb8a050db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7d5e07c4919f1683050d12531bf518c326d306ff3544b5f7e9dbb6d7755d854d
MD5 8793a498b782fe1b636bfabc808473c0
BLAKE2b-256 fc9f5620bfefdfcf4354bd4f8ca6b74e5c9f68c71ffebcf445bf2885281cf7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 157441fd3d3027eb4493cd0bb1fba344422e5b86948f261fd1e06844d4dd6179
MD5 c05b6e8e02d6e6abd4ed42f789eb591d
BLAKE2b-256 dba4480f93824f7ca2daa813a539c87be6d65ebcca36098f5de30e1a9ae81e5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3352add517a9a20dde326312f8d50da9132b599f975516eeb40a4eead4a47317
MD5 168523d4f8f0bbc2c36ea02d53b040d9
BLAKE2b-256 444aa5c56ea32ea89a172d360338cfdbb590d703660c65a0cfd4a0e9aeb5df3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33308bbb6ea4cc3340c29f0ac956f707bbf44edc28f8864eb2d21353774ca8e2
MD5 776ff4e11fb4454062fc63b608ec0174
BLAKE2b-256 3491a3ad7960066f40c711441763622137ca537097be540812a01926b026ce95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73617c4d846bd9bcd16d4b6ec3bc24592ca41da0ea89806c5a0b696123a5daa7
MD5 b97b5560fb0e6a6127d6c2c2a95ddec9
BLAKE2b-256 281e5b701a4ff3c7ed4f73a5cbe1716b51975d20e879ecb987066ef397c676a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12caf908c8cb23f1ea9a40c361f34ee1697a0141ffde02d835ac5240b234b9d5
MD5 57f5d548016855273df789e6f22eb1d7
BLAKE2b-256 f28f569215b2fe46f263478c22358fa101c38385559ab3a62cf5442cf6587732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 651bf99942a3d315cd0421fa80cc6257c963fad1aa1013d58296ed89113f57d9
MD5 de420065d549e5196b7a87ac22ebe24c
BLAKE2b-256 268c2d37c544da1e3df1d77dd8c6e16002e4b042d52ba0a11b34e3151620731f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08895d365402281c57e92e54b3e3312188e0d54cad3afb3f470211aa6b828ecd
MD5 b286c395ec3f28efa5c70887c933221e
BLAKE2b-256 e145abfc58ebe8ef0d37bc50898d22fe6537a0e544399daecdb6941c035e3f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9d730679ae44d331e1f5ba29f637571228e6bf99c7ae52395da70bc73d88c66c
MD5 9e07607565d0e330bfe9158bf88834a8
BLAKE2b-256 08291a7900c762f2383b874c754920624e494b2d45b0a6a23637f3efe9819539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4c4a7eccada2803455d1b4493aaea91a50346f975e4e8f16c1adac1626c828c1
MD5 d58f9c45720dabbb9bbf24fb52529647
BLAKE2b-256 b1e6c4696102b58ef6c2c584231cd06811f4e1a14c9a723a74077f50bb524094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 05f75ffb5b1ac7feb2b5ed5f366adbe3718177a19af5f33caeb5aa0779c1cea9
MD5 41b4f22980179a215783884934bca0b6
BLAKE2b-256 64dca54cfd6ec79948fd249d75f23aa95c70692ece6a87c96c78c21a3fea07c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 46dbb1e031375bce0d59636aef05b618ebee4f41379bba47028f918121950bd2
MD5 bc25c60feb9453fbeab1e0924e2871db
BLAKE2b-256 be78983a71029ad76d6fed6c57c09607f4edd09ab385f9fd72f50556aeaf4f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae4c65c3c579f6d0a63733324d5d14d4dd0378d8109c762ee8c73e7afe3124e0
MD5 c43c3e11363660f84d75f7df34e87243
BLAKE2b-256 c8ccf159aba2ea4bcc9e52ff9093c8e85068a28648c0a4beeaba7507206d3d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6a556a6230a97490dadc4d0b8e9f87aba466996a3c1c39ab7a86f551ac0306
MD5 162353b9640295751950a7437fa5188d
BLAKE2b-256 0ba7b5789bcdda1d1ff753ac413619fea9654ab52b4b8615590c2267417e80e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96060dd190fbcdb7cf577d10b4e1015250d064b9522884ae6f14935db9d02de4
MD5 5555fe2ff887f9effbe4ed804166ca04
BLAKE2b-256 02e86ea810a441c9bee634e1d174a86e588c786a92b2e8f317e25bcbe44fc5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9adbd6a396ceaa44560af0e36caeaf0cc76a0fb63bfec16f14d9ce74b16f213e
MD5 283eeede8074c215ee6fd9a91383fde2
BLAKE2b-256 053e8757ecd45f49ba12e2bfe25f84cc0d0cc869b4280af6fbea666271f9d850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0fd7013d6912ae09f75b1ceee360a90bf156cdf00690a644ae1b84bf74805722
MD5 a5b122145255a53bfdfeb60f5507ab1a
BLAKE2b-256 1f29429d7b24f95d3e943180eedbb7c22eb21a3c504eba4352296699abe840ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51012c50f46f20814ff5e006add748518443f0971450b1e8ecda3325a150d303
MD5 fa393823eb387053afee8c06e5d50f5f
BLAKE2b-256 588b51250c0fae156937240874a905abd0fd95e9265f7d90f38244f8216fc752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 69371a919de8fec01fb75909e56c05fa96c5fa54a3c788220444d8c2966cfc88
MD5 8e19b0eef0f855b75f5c874a5f53cd26
BLAKE2b-256 8629e8e3d26f47b90bdf7da2021feb779206290ab20ef7bfd14b2dadb949e5d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e1c61828e560e46d0731914b4a89b1ba2c7f283cb1c417e3b7b963b4b62abef
MD5 daa08952e972ab2b4c70cc700dc7a9d4
BLAKE2b-256 7b7cc6fe50a58c9d4101b7b2cd9513ac2889e175d15601832ab540c5421a546e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2c640e43d9377cd0a111cd1581d6a21dd1c3557a90448fc6c2f7f7f73b638185
MD5 360fc6d601b7d09703bd9ecc230c39d1
BLAKE2b-256 52c4d5ca00027491a0ddc433eb01b4723d9f56ec8b71b33cdeb1bb0b88d637ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cf282d2d45d195f54965df23e1730eea7ba9086742eb0147766586b22c8e902
MD5 cbe1718e45fde80b1c351df7af2c110b
BLAKE2b-256 59eac9eb7bf5c9ec51efca114b9d2608ebf60a10c13133ed76c09002e445572b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5c1c8f1d0f8bd3db57a1a0edef23b8298521c81612cb84ec50b1a9aefdc80ba
MD5 4fb715d7c340cb899d10eadcf9549813
BLAKE2b-256 1900d6405a50878e375d30cef4351f857d0809ac10568adcbc9f197b10b648ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b92d1a36bcb2e8348c2f71003e5653e393cb3c573517b4d799b5bcaab0bbbc64
MD5 7359839cdd0bd9b8b6857e87d4d6aa21
BLAKE2b-256 7cbb3223991e44314bb6742430da22d2d631e207e08705a26d30b7b9bb5c47a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8c063294e2e6db985bd8ff27576ddc08673af4c317e8b896f1ece4351ce7271
MD5 fb8e7701e7aa52767e7495f6d35e20f5
BLAKE2b-256 2cac5daefab126d9067862c0cc6298db96bdb94c0edb823bc2815eb70a4831db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e640b65ca386e5f6aca8155fe8173df8f8b413b26789db8258f2d9475e33ed98
MD5 b2731055aa590b6c4ac557a84e257558
BLAKE2b-256 b0ae2c9c97ed1badb5fa35d87c539ac0785146a421173e63f0727a74fd3b0c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30521b96c5f05b6adf7ffb8e8d933db324e5c5ff6cb20d93f32854a2b3305fea
MD5 533047cd8d83c45e3397367c543a0d17
BLAKE2b-256 b81981388b7a1060b7e2104d79d79bfae5efed5fc47da3a2957c30a244fc1ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18fe1a38ccf5618e3cfbeb243045f98ae734d9e4e751b93549496d7d39b8f83b
MD5 068a4c5862986a59032e7c7543168a59
BLAKE2b-256 d916e9fbf0418aca1b9a0d82085abc6d2990627549aae28106aa1f0d8a0ed786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0c8d9101fde78021d9bb95d2ba15edee9a7960fc7b4541821a361e4c52779961
MD5 93d4fab9b71e0cbcd8cd4969f2fcce30
BLAKE2b-256 b59a64e5bf0680256fa0a6adcf3195322fe234d021280d5f4e5b7302313116ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4ff37618c20b48853dbd2aa5576b00c1d4d35aa01fb55c5626ebd279c3471a81
MD5 6643dafd02a08b65fd749626b651847a
BLAKE2b-256 8c35efe3dd843f1f2e005dbc41845f1bc2ebb2cb77e66b42db8486778c91bef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0250b50ad476f701a970bf69af203607f96decb8008b92df384a8df9c6a6f2bf
MD5 9cb763beb779a658bb90300c040b4f74
BLAKE2b-256 0a0db5cd39d184767bc68e7bf788b214b6d59d16dd0495d59f023e1850cfece5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 bb46b0ef2026767741d2b14ae585255a08085615431c955b8a42b5f83b1f56d2
MD5 52379480dc408f56c5568ad11c3354d5
BLAKE2b-256 bced746b78692470e815dc1c482a052790c85461b5068d8db49b067ced0dae95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e6985557eadda26a7f7b3e8bac408f0d6f874ee1e343c87c11ed893067290dd
MD5 c8d291db370a248803a5c742c2ce3727
BLAKE2b-256 022316cd1a52843dc016aa321b40cbdf187ba41aeceeaffbd8b95c57fc4fd6f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 477e8ad158bd7bf7b913184715aa851696b1237088e87c8c36f915dbc5cacfdf
MD5 356eac65c32e1b814a242c1629426137
BLAKE2b-256 fab1f2b7019298f0ebd5f408f0b517af08d4ac6bc04a9ebae5abc442643161c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8d2803ccddce9a32a51f8f5d6065776e330cb858712bd07fe652142413f8808f
MD5 c196c4c5fb490af79ec91c66fd057b51
BLAKE2b-256 9f3f89006f623ec0348ad1135170aec4e44d965b4f134324f24edaf940790156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc2e320eaf9e667cb8a00978e1c67372e0637bdfc58d6c00bf3f074550bfc8b6
MD5 9a3993ee2250a63aa2f129e235676d03
BLAKE2b-256 d67dbff3ee61d53a6f414955b7fe7ab103557e5bed3e310af064fe2a40e3b56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 294e6b09115944a6de02ef427b7f3c540746db91a66e4cf98527f4f6eb4b51ba
MD5 d845e55358fc7f93b5b7785f1979b34d
BLAKE2b-256 a0438d1b660c04caf37e33dcd74fe33bb909c04a01efb714ec1d5a9f8cd9be7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ea4cfc4b3548cf4ef6c6fee9a647a3457dd0a4021b914e8dba3be71222a85f5
MD5 2605162dc4f616ebf92fb0d674cfde80
BLAKE2b-256 7c4dd329ff5d340bbb19bb95b5ddc8a43f5224974eb507dfb9f4037deb65091b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 641012a882e0c792409f8e27ec5303b1f0a3d77cbce1a4b3945258b32d88512f
MD5 c3ba62e4e84ba0e4b33fa178737de5b3
BLAKE2b-256 b386251d14fc6fc15e33c2bf1cc14b34a905a450468a716e60c735d95229ef1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 501e099496d975969bbeca564d7cd21db1bf75be7e563781cb983f34b790f307
MD5 bdb2491cdaf0502f6c2bf865eab54e41
BLAKE2b-256 3752af6e4f03e1eb353726119e4f7f67d37471a96fad456d3cbcdf53c905984c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 62638ab746906ba80cb84b36fba9e91abe3b34be8b5c96c0d7d37187b12c04d3
MD5 f3b4ef6790322df2b75600b7edd5b2ca
BLAKE2b-256 c5b23fec3f569e3373b81e944428bf57f779dbffd93f378e7bf335a11d164190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c02ebab9a495c17ea55c5a6a6b59041b104b5f34a0c6327847ecdc6af3b97c61
MD5 30109be41d1c82757b4208863468880e
BLAKE2b-256 22632f62bb0a445e66a13d5688c6e188925c5d634403da3887e45cb13bf8bd90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 11493a186d0ed943b8a15dd01b5eea3f88bb005ade04ad9ca2a533bbc1741f43
MD5 d2008bbbf476c2457b147cc5fffbc09a
BLAKE2b-256 1949bdaface0a866c8fd28e2a32c5edcf72050de33e647bda3d07c40570be567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 01bcfd879bb2a80043d3b8d2e2cd819defa293198349eab1b03423d9aeb4d18d
MD5 fa59dcf020f916f2af29dc0d3a63b308
BLAKE2b-256 7961ae79780ed86da2c4a0c42f6236d32931cd449115fa80b6e47f06b792f5e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bdc31e6680c00979dd0a7906e7b94b379ddffea512d2dac2bc2473f502484a2
MD5 014b135d61bea801c3bddb5b866cda80
BLAKE2b-256 fb2d14f464da2421e85e1de4f641672c3597318a5e525fd3c8ae22e3c2f60108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18e3e1cc96b50a0decbb6f231d6051ac45e9ae65c158b1d111ab336f0ec70ce4
MD5 438f9012e1c7d054ed9111ffd42ceee2
BLAKE2b-256 5e764d588c66b1680919ef6217f63feb331d4449e468070ab60e0c582c12aa69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 994f3063bd1f36a71add37c746c5c02c6102e605641441e1af88f524519bcc62
MD5 7029767b0e7ce482a4abf3134974e49b
BLAKE2b-256 4885f3ee7c241ff0287abfdf33ea4b73737e4a39ee2dbd41fb56825222647025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aee87b8da65c3fdcbaa27fdca661dffee9dbd54956fb5f8312a83b19c6836dac
MD5 43c339c3b25be3ac2e786a258f94d932
BLAKE2b-256 4b829b79de185bf62adf6a9f96ffb846f6031443b4b18ca32a8f0ed4db1d2ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba263d2d6c369e78c34d41701db37afb8cb1012ad175019ab6851250c6f7fa39
MD5 c2b06f9554365c75257b5552e6c8ca20
BLAKE2b-256 67e3a45ed60a5a6bdb6c5efc7edec674c63b3432581511af4c8eb76179383690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1509196386c33b07cbba21542c2ed666d7f065da429b1d42da9472bea915ad3
MD5 a81f939584535f9effaf49ae2f95f37e
BLAKE2b-256 99e1d36ce55688d9869aed5e653c4f9113e8ac3c666241b186343187eef383d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb9930ac6f84f220f532549cb42e1bf88586173ec3b51adf8c5261e20e79524e
MD5 28ca6793b4846d981de7040df6d12fed
BLAKE2b-256 ec37c7ed20447befa319aef2a68b1435534e1eda868760d757b5bd0de7a4afa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07ede1cf64b6db6029d49c88abd061a0fe73a3a14f26e9e9fad2cc06a7bf7c9c
MD5 b9dda067f8cf88b41c89638f4719fc64
BLAKE2b-256 4645c2a8c1065848488f8470ad8278d97db122c61bb0caefb4d808555e49adda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7743e1bd0cb8f9a7b0a42c72d4ab0e2cbfb6075b409105fb70654ad5e1ca2c6c
MD5 4aa65566ec636785e4df041fec665f76
BLAKE2b-256 43c2bd8b7593770b04aff5a03cf5527f046406d3a0d7d3b09a3af8b0a5bf5ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e6dc7f96fd6b5c5e882ec6a7c1ecb722ba5969d30a863a092086ae201814fff4
MD5 f45e5679515e37c780514fab8e79b7b3
BLAKE2b-256 6a56d66c6067b638e247e9b13a3bf3e2d00fd4b047fc9e666ebbadda6d784ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 324baf2fb7ffa81f8fbc4c1757b6ae4fb77ae8be3571810e059d903c30998269
MD5 1715be994cce1ff9c3a7df1055647e9d
BLAKE2b-256 ca3671b79d721d7e353f3b5586d9e0606e17994452dfec339c6e0f4e90733adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 55e4ce852092d9f0d648b834e06cb37fe5bc802c539c2fae4fa6dd6bb97ab469
MD5 4a83b2e98414164048c1d712df5bdde2
BLAKE2b-256 761988991963c1afedcc8f7af95baa28d8922ec71b9beeb92093e1760317f72b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dfe4f10b0add2c48735d46130cb5ae4c1409c804e1edca19f6347a80ed3638eb
MD5 9c59d3a1d56b76de654dbc95e9df3079
BLAKE2b-256 5d6aebf3fdf8eb9513f0cbaf8b99a2f390c4c1666424bb07b8fc996d1ce52dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 410d75e72dd75cddd28ba3a38335329bb8401a8b92a40f1e371fe10f5e58dd37
MD5 063d56e5eb6606bf5539a80adf17e663
BLAKE2b-256 0770b55ad97e2c5e591bc0db7462e15f15cf831efdd57ef1273677c53499cff8

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