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.4.0.tar.gz (53.8 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.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (804.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (846.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (866.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (771.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (598.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (606.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (749.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl (644.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (593.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (584.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (801.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (844.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (862.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (763.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl (600.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl (743.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl (589.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl (574.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp314-cp314-win_amd64.whl (431.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (805.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (845.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (861.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (766.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl (601.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl (602.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl (745.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp314-cp314-manylinux_2_28_i686.whl (641.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl (588.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl (577.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (526.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (800.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (844.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl (862.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (764.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl (600.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl (744.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl (589.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl (575.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp313-cp313-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (803.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (845.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (864.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (765.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (598.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl (602.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl (745.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp313-cp313-manylinux_2_28_i686.whl (641.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl (591.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (576.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (528.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.4.0-cp312-cp312-win_amd64.whl (431.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (803.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (845.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (864.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (765.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (598.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl (603.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl (746.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp312-cp312-manylinux_2_28_i686.whl (642.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl (591.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (576.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (528.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.4.0-cp311-cp311-win_amd64.whl (431.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (800.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (845.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (862.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (766.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (594.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl (603.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl (745.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.4.0-cp311-cp311-manylinux_2_28_i686.whl (641.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl (589.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (578.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (530.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.4.0.tar.gz
Algorithm Hash digest
SHA256 05b8b44e29a805bebff4888974b892c7a4df6947ba840667d127266c4d440bfc
MD5 a1fb97e18782cc1359bacb31b3b67602
BLAKE2b-256 703ad36e49553b772eefb8bb0778d981fbae88def0c4816c0a24fb252e150f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57c5098c865250eff752937ef550bf0da30d34d4641c66bbff13d8c8556ccae5
MD5 7f3eeb9c407fe6fb13175a9212e43562
BLAKE2b-256 35e1cc94f829fc078018d41c10007fb442400811d909d77d5d423b0bddd5941d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 624260c00b19034e1c20b44ef060a666762a82dda85a1436b4362dcb2f7d868b
MD5 1f23fead8b23966849b1e6f8611ce523
BLAKE2b-256 e30fea2eb184b787d75090cd91d97eb595afdd87d66b19542a631ecf5e34a460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5170afe22feb88b101da571db5893f500c125d4c0cc2850cf87977e0e216b482
MD5 a23e04a79ed1607c9e5a6b981e7308d1
BLAKE2b-256 e2d99e77d4d61f69a01e86b8cb8e6a42da8f8724dc207ec58c8de50c28ca653a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c452e4c64f24f8641c78d241bb74a83b4861718bd6ac8e6f902088abafb2add
MD5 96354cb77083ae3ce20e2f7ffe172e8a
BLAKE2b-256 20bec0c4c4c52c565d7ed13c5e3fbb8aeefaa0ecc3f1230bc661fbd3c1194163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cb4fa5090ceacf2f31edabf86f6ff7afc36d44d242e119737e348b3a8c9ecae
MD5 30cbc35386530bb0e988ad61e5b71fae
BLAKE2b-256 67a34cd46bd6cdfe8021dffc24aa7423c9c6adf074eb516a0405c32faeb5908d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1468fe007151dceeee661a50beb3b6b7291e844985e95c8ec570ff0b5e81b3a8
MD5 4319f304ad689929b6ef87ffb6ec0650
BLAKE2b-256 b2c156baa1fa6d4de9d1f1dc5d84cb660be54c87c88f0225fd15ae0e4064d001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 28d65b8403b10a66d5a80072f0d506153fcfe0ca8a9a6dad0b5c846528833cd0
MD5 bc7a59bd21fba021ff3c1c13a63e237f
BLAKE2b-256 e696cacdf1cc04b6b8edc922783523f01f5797b378f2176d2fe3bb88e5da6439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5d65d0e4a9f2597d606550be3953d3e97588bc591b3f7a85af1821fc2a2c874a
MD5 ef47b773941fc8efa1f4b21bb03e876e
BLAKE2b-256 8952eb97e2f0b182176f7007ea78d83b3a5610619a52f297d5063dc71bfb8430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 32c174d92d76cf4ce5dd228007fdf8b1d966c250c30ad6e1cab3fd31ff360cdb
MD5 73a459b09847a2d9a641178d9fa29612
BLAKE2b-256 9303117c61a0f23bca033ded883b191449e091d9162158bdafb532e0c77aa8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b01e441b4c972b16f39a2877182ae78805f028f6c1cdb4b8b9f00b5401321ee
MD5 70eb3d71e5aa97cd5c4eabf936d8ce3a
BLAKE2b-256 cda879fa512a4032df88e47dcdbc64db962fe3911c935854118f17e60e07cea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a033c81adab036166268e3631e0ea8b32d72aefceaf75cfd28d99f53823f296
MD5 0845ac3d9c2c3e59d4f320d128f1a538
BLAKE2b-256 e78f07cd3c10c1aaa29327fa27e9cb97e1bf24447671ac74699b6b25bc9e991b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2bc149dc6eeee57b9b069bab59c3007703b23f40d7b22947ebad2e6ad03d1ba
MD5 2d600c1a328272e2ee6734938e86966c
BLAKE2b-256 25a4d1c0541ca81a85d87d9cfbc728868a8e7b699ed456f6c19500152a91d0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ff6e5db5293a8367668fc389e7b58cba0411a45394d2289dcdb34fcc57f63cb4
MD5 4cb7a2756d2999cc9d03d76e18dbcbdb
BLAKE2b-256 8a3d97a92009ec48ace2aa88f86cda6cbbb152eb90f39cd7c56a0c0f2d3b022d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a525df223478092f96ddc5eb1597e2f32dad3b06a425c1b48192c3cd864e440
MD5 ea0967ca172573606a32df3e7c5b8ed8
BLAKE2b-256 8a63f836cc6cee84565f6bc6cace6ffbc722ad18f40fbe734f947c27fd3461bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 df657bac377ab44b6ccd154f99135098c06f45a8f54c98d94eacdef6c794f929
MD5 e55eb17e2128e0b7e60189529eb67ad8
BLAKE2b-256 21a469fe70fe93527c016f0d0a7d96548ee281983e1e5b4fec9fcfbaecbad29a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 82cb35835ab0014cdab16f39e5878005cd4bfd0f3771d71d4f183271961a314c
MD5 76ef2a4831985d720f93756885f705b2
BLAKE2b-256 f07c04d02297f3dbcf09a661a85a03c00dcce49e405fae68df7bfaa09ce88753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8ccb7f6906988466c5fe3b202df0e2e80d6a478ad3866e09338e05ce4cb59dec
MD5 a1fb4d4e90178cf8bef26e015df747c1
BLAKE2b-256 5239e6daca7bffd2d88730d805b0c1736727a81964a18e63c972e7447f57c7a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b653755be8ccd0b71f47f7d4918eaf7736cb5217cad966f2e5269b99303ae436
MD5 62d36bfa28030c82b0a2958e2a49f47f
BLAKE2b-256 a5e1b5c22cddc5d7b25245c6d366408d4685d23a851f5e3d3e172a42e6b9e6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 25f543c37d2f921b41d109bb3b8a3ac1a60cb658cca503cb12b6f51de712566a
MD5 5ef383c90595047995c09896bbdbbd39
BLAKE2b-256 4e173f30e1c1e71604c8ed26eb15714c63fe0a14f4585d21bec4c239da580417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dce81e3a09b38a7a1aaf8031ca1496ff58c29bc21f23fb5b2f932159f6b7253d
MD5 b8b3dfff1199862dc009c7e909dbe069
BLAKE2b-256 68ef3d5f0ff82100c4fc18b13904f79bff5e43f14fdd946a8257b6070cb7d5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72c9f303d11c20cace75bec80ac03fcb567f1dd15cd6561f802328f42613dff5
MD5 3f3aacf9d1c580d942561845f70d2c6c
BLAKE2b-256 dec1756c9f2b00ebb2462ab9b5839511181e83f3f9917fe678634aa6e8061bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63ac9ff6cbcc84740020ae19e7e8c4fd95f126b079457ee4da59da8173d6a03e
MD5 8f5a44f197a7841cffb53fa9fa49b770
BLAKE2b-256 08aeef722c0c8e4f5e3f6590806c7f0aa9034dd8fb9af5560f0c3a9f8602d26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2466fd3123eb5d8ed88f62b168445b080208b1d65533a5acf7a9c739e563fd96
MD5 9b4bacea1820373461ed5b5d2ee6bfb0
BLAKE2b-256 dd7b1cd4407b42751ccf597a688259baa76d9c01f84a56e1dcb2629db9f2323e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4136d5b60db5f0b9a9a04dbb8fabbdaa99c121cd5208a7efba86f9f8da3f0d1
MD5 e7817536c2b37a0fcfacc340fa9eb433
BLAKE2b-256 3338b59d8643cd330edaf6b00f634921436009fbd9a580a116aa39e7d4d190ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 300705e0a78203176da70220cb963bebd5935639f6b2a0ad8672e74c3089bd88
MD5 261ba88584e08138cd36368ff381ff1f
BLAKE2b-256 e3f396b021de0fe02aaaac80facb8ed3918d6ae0e35e48373f2fa001393a30e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cda17082a5b5bd668b317c9578e8a2f8ca0cb7aa948ec6b12c9da3b9bebc2465
MD5 284d30ebcaac7cb0842a46878ccbc1c0
BLAKE2b-256 18b97d5ceae21f293e4806d345aacfd430b003327626cee5c3736e37e69b59d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6bed0a5eb3a70f31b8ce8fc650fc2edc5b62f35b8148cb7b7a3518e30795e4d8
MD5 ee3a2d3f6f4b69bb3ae29b093366c771
BLAKE2b-256 1e5d56d49e96488b170db8c849cd04a516d91b36bcd68aeb75c0fe0d7ae90590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 72c5acf99b7d6f007c540004135c2398acc6a461d50a88d0efa61acf7350c451
MD5 6fa7eeed055776a991768d9cea1335b5
BLAKE2b-256 b85122ee6bf471f97e55cb6f251971c5a2e605247b4b5af65c311231ced6b6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ff07948ae9e2db7edcb0b475119ebb8cad16615d7c80d2ed55bf6c973033682
MD5 d2f48630b68c2d5b1c9fd777890ca955
BLAKE2b-256 a95078dd1d895c39eb171c20bb4ff7989e8d94acdfa0b175df4fe3cdcae516d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fd0b229df0435061893148a48fca91845678034fe19b87edb4fa6590a5e0e3d
MD5 b599a5bcf77ef10cf032a73ecf7f267e
BLAKE2b-256 8f3ebb135bbaf6e5a67cbd505cf0a2d1804339226e58f4207f009b2edf43fd99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 884af7e88d0ffa78997c44a2716ea4418cfc00cd5fd587168342cdcb68c3d3e0
MD5 48ad894bd630fe21cb0f09f5f1980552
BLAKE2b-256 1374bbef8a555d68d1dbedba0ecd3fa04a86ce6ef15cd8cbafad89b0becdb400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79c9f8be041869e911f966309e6a9bcf8f860cdfe2654f037a0fce51c6fd05eb
MD5 2124a30343aa02cf3ea193acd0130b3c
BLAKE2b-256 6b429805c07bba51c28896855b79b92ab06d0584f8d0c1768b85581168dbad06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67239fd49bb61eb42a4b1c0ce76f485056e788a445fd7ffd9e7508e6100af9a9
MD5 6184fb4f01ffba81f3e9a9da55b8daf3
BLAKE2b-256 3c65f5478e7087ac1d1ae1145b5ec71062631695cb2aaa9fa6b6f40f723939fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb91dc244114993ceff47af76746d46a880b5072ca840cf78545ad3c3aec9ab2
MD5 1bada17d8b0400e530f4d84eb0416221
BLAKE2b-256 2cd4a9c03ace31536430d36a52018fc22645b17bd04c68d4acfd8cd91e7e240f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 43113dbbd033482d07d002896290d27db604f20505bdce5ab0170f250e525ee5
MD5 84ea0c3a956af77a5e6ea0f1978c8353
BLAKE2b-256 f83771028bdd188d2406f3f7edda9cc8b9452555c49c92b29187d0b4a8c24d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 420bd861a11219fa237269c79a9f9ce72dcf7cb5f4cca022be77458ba06dee87
MD5 a1874a4a610feb616a15ae4c0905d411
BLAKE2b-256 5d68e280f61896f8e0f1b2844cc375ec29a4ee57474043d3ff6c5aa86c1b926a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c2945f696b06fb324bfbfa227f0b3f018b1cbd1f575e90519a9dbbc4759e84ce
MD5 564afae6146dfba3157af951b50e9fdb
BLAKE2b-256 7ce0fa2b5d46461be93c386ac07a2be0b0186fe6a4c27a74ea42f416048a58d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca802fd65a5d5e7630ff17f96600c039eb1570252f0116cece520e1b0ed916f8
MD5 b467a298c6014cbd0ff7b09fbaec3e6c
BLAKE2b-256 b648756cabf940d109e2e170401facd173f4d65589f0d680fc93e16457bd0e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 144d338d62d957ffa5eec6233de8e39c72605b46a11ec94120043903a44364ff
MD5 328079416b2c49678b485e7fd45f52e7
BLAKE2b-256 5268ce06a6857116bb59fd76f3fa4ff86845165b0f0eaf8726f6b9b4235ddb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 532141cf85f7a0a9e385dee3a3f538826dbccc97d5963550b297ce46ff36de98
MD5 2a59e663da3ee3c25ba2ac12a530c229
BLAKE2b-256 5620a00a8dcec964de1034abf838933c1bfab2cefd5fc3e5b182014f6b962dde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 647814bd36db88152ca44a373edee18616e7739adc0237204a40632a8cad7e86
MD5 2ba9ad9c013aae4d8e6b3e4531adafcb
BLAKE2b-256 fd1760ec258710789d250600f841a9fb1dad8b4d0caa5f0a0b02a4f5bcb192d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a956dfa7fbaf10c56737a7e08164015b82805e14e99e68b03ca3233612be9e94
MD5 14e8ff5c02fe5809b35f4d1cdf4bdf77
BLAKE2b-256 f6a07aacbc4f0efee54faa1633b2ecc3ee6fc5bd64a7f969a73c79d31c1100e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa3fcbbb8df84a6a7567dfcbbbb64a09f62cba44cfd13629f5a20d24d9048ffe
MD5 53d4ab4da4e6940822dc5cc040c28c38
BLAKE2b-256 8ba7a4b445a992b60e1d3ebc592bb13ff5b6177c9e943bf797e6f036a169bd8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0dc8c2d72beeb1873937bc787f96f2a0bdb25eba19297d2c39dbecba8bcb9fd
MD5 83698b714127d858cdfd6ca10b6c9ca1
BLAKE2b-256 b428677c9ca6d61aa39489064a68e9356b08a91e849f2f6195aecfa3204411d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 024e936a802d0754f05b2da3f1e5ef9f49af34f8ffac6d280b75f7bb05d1606a
MD5 8eb50d67dba5f41bacdacb0ef99f81da
BLAKE2b-256 932e4da500434abd08ea04b663aad8b10b3e57f37b9b6b23f1eb874fb6c17f57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ae53b3deb29dea2957af944fda4acb1a70d38a4aa3bb7142eabdfb3e84cbb116
MD5 455f730ff9afa4420d8291caac3e0c66
BLAKE2b-256 23a76648c9eaab349b9af997037e294fba68d534f93334a41ceaeaab9ca258f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c9aebfc006855c284fdf8b47e5beb2405c413cda6cc08daf28768aa4d2080918
MD5 6de3a1f1cd5de3944ea8e2589991b931
BLAKE2b-256 78f3f607cfb745fb75e3fec8335ebecf0b04a525cf4d5f70afb045cf745a3ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 997c9bde8b0b9e985df7d185f2c449333a25b453d32b2fb702d97dd992ce5b8f
MD5 359f25ab2b295eaf8b58e03bc12fbcaf
BLAKE2b-256 835dc9690d8c6dc9ec6b6f58295e383138fa09027e3a654d63a3ce13f591d1fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c3814c2ef0a3549270817bceaba9432902f65c5329ef6edc42c1360399aed39
MD5 322b824a095a74245848a12ed33079a3
BLAKE2b-256 b853a6c9a791da6c213779a53e85030be1cdabf9159abddd626faf44fcb89bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31a004e235c50f8b0e1d1f7f3b4d379a2c7dce0cc3b085f0d5a97ff48a8b6268
MD5 9c8f38fb6aa562346f3473fa8cbcb19d
BLAKE2b-256 7c56b413a20ada8065ad79e51963cdb46fb1914ddd5825d1a8850b71daec75d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f2d1179ead60bc4f954da536372ddc23b05607de34901029b42195c074149bc
MD5 74331661d4a146452b798938cf009c02
BLAKE2b-256 f8f9e7db2d975b9cbf8faf1f7ed8c84e89235bf8be841ac0ca341e51ca3f35d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c1f7cf8b312a259f753f6e465231a3be960ece682825f6c757037e08e03ca77
MD5 e2ee752f50f7e80dd0e77a8a70824022
BLAKE2b-256 ebc65e0ce6eb03522cacf7ee4b5c6fb9ed3b2d8407cd28f91ab2dad1f72104a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41e27b8a32266de71b2d5b7f70d8c525212240c544b8372e52ded3b0b98ee340
MD5 5ced711a4ed32e181ec5782446344b61
BLAKE2b-256 8ebab75b76f176520e8895463060ade43d5f5e3e0ab70849a6019a2f250aab90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 939b65aedc60f46d21d03ecf12c58eb31ec2f3588009e032d5a16201fea70fc9
MD5 1a2833d39a08fa351136fa6700dae289
BLAKE2b-256 1402a7c76d58293f93dee3179df58dff65d5765650d41d06b518ba48e56f53eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f116beef3b63f6dbf05cb98c10a0211f720724dc36ddc0ea443e1d12709d36d6
MD5 477b6c86e4ed27849ce97065cdb6d765
BLAKE2b-256 696d93aed54a38fb4f2c16c9ec28ba3a4b8d449bcf80d1327e3e99f2fec09009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 409e250818e7f0446a1e7a979c327828c3e7c2a9cbd21b19ec016508a1b59d1a
MD5 49761e3099b2923c053029c98e811db9
BLAKE2b-256 a677fc249b198358772cbfe861dca8d49c61dd367f8ece62eddf1aaa170a8f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c083101129dd65057d1f3f0ef35e1b84039245ac1106edf2cc43d4ea789dc9ac
MD5 6e51c8548f31490e2f97e43d7b13a4f7
BLAKE2b-256 2914ba6ec3f7f3d2661a4655209c4c4e55073ed9079fa0fdad441cfa6dc103b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5653a960678ed41007952f3d0f91d99aac17964603e2cff0bac6ec0d47ba7195
MD5 60e786f590c85c6ebc4207a942d960b9
BLAKE2b-256 e75bb63fed3123f136c7c4e05ec92e71d19729bca88dad7529b258c667dc26cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 66f21a8a550cbafbfc761fce7862ce0eec8a01cd67fd76a858241bf0b574d567
MD5 afb30af3bee712254d10427a4cd3d457
BLAKE2b-256 bb9a1b1325f716782dbb0c9f55aff133fac5aa4378f82ef78dbc9ea671ef61a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0a1a36178e5ff6481dc96f22f496f8252cbdead6a4ab5a5df0663a34f8d706bc
MD5 c36a2cda03773ddace61a3068e396e10
BLAKE2b-256 144127cd801056194ba02834cbf70fbb534b5d6542edd6a5039e3f2e50e0f38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e05abc92a160ecab3e8e519290ba77e79d4b12d695164e90b238b9902a8f5802
MD5 bb4b9ef4bcf1ed6d135429c2fbd2c4ff
BLAKE2b-256 bf9808426a0b1f73ed1bf81a79279ecab96f36ded490f2b68a31ef3cdb34486c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6514086cd91236636647f122cd01e1123089a44abf067e4350aee81485dfdfa
MD5 87c98d4bfc06b72573e112351459f1a0
BLAKE2b-256 a5f9ecf2e2adb2c2bef8c3bdf7864d56ee74394f3ef6ee4a1eb5bc5809a71201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1beeaee7e760d2bb19982b50788bb232d511ba729e061e6bf5793672a619c0fb
MD5 00f2d5cc16cf7e5c16213fac84f284a5
BLAKE2b-256 56a2acfa58d98d18e68ff29fa240ef36030690a6d9553d36e79296c56066990f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ad3925bf5032215722dfcec9efce50a8acb1bcd49eb8a8badb2200b14fa43cb
MD5 89956dc83831d9d6d10632c062d4b75c
BLAKE2b-256 5fb97d892dee6d51eba585b6a1e8736ac3f228805f6ee7353c0effee36948f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2b7bbbe83664eb1c3b0586fedbf634d74bbaea470309bc373801ad520692267b
MD5 c235ea5240a882c40823218cc8d1f658
BLAKE2b-256 23508dbc7a6683c94b50f78c47daf2daf446b568349dbb2f25b2beaa5945b4b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3446fe8b69ac27a641f59264029e761893f602c7fed043446711b4a625fc3e01
MD5 5b9c445b41b80f0174432c84f78e9bcf
BLAKE2b-256 cf059f1622828786a5931e1ac4bf4cfed1b2f2a7c4f7fd9a66700ef1682ba298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0886e2e7c41f6ba39810a9d5c6eab872346fd8e59ba8370a0f4b4af0c92b93a
MD5 a8a7a46de2bb1a0ba6727b34e44d63fd
BLAKE2b-256 d83310aa00f79478b7e5ac50d056990d551f743b6c9d98f07f2b02533dd88559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1f0d8bd38e3d3a5f5f711347ddf00f931d12fc58e3f86d3108f5e23ba864a6b
MD5 23a12ff0edcbb89d4e9b74121599d46d
BLAKE2b-256 efe241a232297da81a0b5fe43fb8673d36b83970b01f296a01017a22e55a7066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2f3bcd608c2b6280a6c1c770f3f794866e49437f793b8769c611db55c111b51c
MD5 8ad3929cc33d94cf9a8997b93a1ca932
BLAKE2b-256 27d5c54af0e9e5f041af3686b31d0c601d7c69a9e2725d054d620b85bfa7d048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 129b60c444e0becb7c51b470fa2445cc9af5310c62b5c5c338be0cb9456b6593
MD5 9cc5cf8bff9316277a95ada142cdf0ef
BLAKE2b-256 d0689d4d4884549f2d8feb68022579db5ec51ab0de7b542da6131eb2329af9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 332cd874f50a43544f76e35dbf9951604822f21a4edd7ab2e6095ba3b4f3832f
MD5 f4b238669f2fe4bcdfc2518553803e61
BLAKE2b-256 9142f073cf9a474fe3756eb0b7fcc57adca30d698a97da6d2a84f5929b2f6fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2eb706ba015583a1697a9bb30c6583ba194a4a98bd68186c35e2ebe7d4a3ee69
MD5 d55c4571d7ba1b336d1ad5fd808aef90
BLAKE2b-256 9f86eaf41a217ca10bb17a82fc5b974e82a92559d9e07a9107aad4d6f6448687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9ecd03967f9d2633cf5b49433bba0017a9b5794ac3975209a28e29474e9c9aa
MD5 695ac4c34f97ba5ca0509f0c618c3982
BLAKE2b-256 1cc1a5758225a77277e1b78bba855086f0de4fc38dc5d79d5be239c6b4b61881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ff8c75c1765c88487e5cfcdbaf559a3884482194691015dd7739f8ab08b8bdc
MD5 dba4ab397512e27e269233e65ddfc52c
BLAKE2b-256 9276c3f1f6bc718a862647490244426e99d2d32094019889e1e7c42965642bd3

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