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

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (854.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (873.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (774.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (603.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (611.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (755.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (650.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (598.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (586.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl (808.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl (850.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl (869.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl (773.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp314-cp314t-manylinux_2_28_s390x.whl (610.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp314-cp314t-manylinux_2_28_ppc64le.whl (748.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp314-cp314t-manylinux_2_28_armv7l.whl (595.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl (586.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp314-cp314-win_amd64.whl (435.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (809.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp314-cp314-musllinux_1_2_i686.whl (851.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl (868.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl (776.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp314-cp314-manylinux_2_28_x86_64.whl (604.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.4.2-cp314-cp314-manylinux_2_28_s390x.whl (610.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp314-cp314-manylinux_2_28_ppc64le.whl (751.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp314-cp314-manylinux_2_28_i686.whl (648.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.4.2-cp314-cp314-manylinux_2_28_armv7l.whl (594.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp314-cp314-manylinux_2_28_aarch64.whl (588.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp314-cp314-macosx_11_0_arm64.whl (530.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl (810.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl (848.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.4.2-cp313-cp313t-musllinux_1_2_armv7l.whl (870.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl (774.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp313-cp313t-manylinux_2_28_s390x.whl (610.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp313-cp313t-manylinux_2_28_ppc64le.whl (751.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp313-cp313t-manylinux_2_28_armv7l.whl (596.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp313-cp313t-manylinux_2_28_aarch64.whl (587.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp313-cp313-win_amd64.whl (436.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (809.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp313-cp313-musllinux_1_2_i686.whl (851.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl (868.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (775.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp313-cp313-manylinux_2_28_x86_64.whl (603.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.4.2-cp313-cp313-manylinux_2_28_s390x.whl (611.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp313-cp313-manylinux_2_28_ppc64le.whl (753.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp313-cp313-manylinux_2_28_i686.whl (649.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.4.2-cp313-cp313-manylinux_2_28_armv7l.whl (595.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp313-cp313-manylinux_2_28_aarch64.whl (588.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (531.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.4.2-cp312-cp312-win_amd64.whl (436.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (809.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp312-cp312-musllinux_1_2_i686.whl (852.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl (868.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (775.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp312-cp312-manylinux_2_28_x86_64.whl (604.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.4.2-cp312-cp312-manylinux_2_28_s390x.whl (611.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp312-cp312-manylinux_2_28_ppc64le.whl (754.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp312-cp312-manylinux_2_28_i686.whl (649.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.4.2-cp312-cp312-manylinux_2_28_armv7l.whl (595.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp312-cp312-manylinux_2_28_aarch64.whl (588.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (531.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.4.2-cp311-cp311-win_amd64.whl (435.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (807.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.4.2-cp311-cp311-musllinux_1_2_i686.whl (852.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl (872.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (772.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.4.2-cp311-cp311-manylinux_2_28_x86_64.whl (601.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.4.2-cp311-cp311-manylinux_2_28_s390x.whl (609.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.4.2-cp311-cp311-manylinux_2_28_ppc64le.whl (750.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.4.2-cp311-cp311-manylinux_2_28_i686.whl (648.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.4.2-cp311-cp311-manylinux_2_28_armv7l.whl (597.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.2-cp311-cp311-manylinux_2_28_aarch64.whl (584.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (533.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.4.2.tar.gz
Algorithm Hash digest
SHA256 c2cede0d1aa74fe9d36fcefa183e706c3610b1ec2066971ac06a525d52170da7
MD5 1a2803ef753b11a244411f625be7d1ef
BLAKE2b-256 1b7f15fe112c61154ccd01e92a26aa104fe43ea452ac25c7e0cd4a89da6de553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6088b43efef2d6184efae6b1e0fc5d23c4e92193ff5282cbf4cc894946b169a8
MD5 5aaea46b81fee60c7c5078e94eced94c
BLAKE2b-256 1e08f4695c214effc920deb766c3b4a272bb470c87749cea1502372c8654d002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3b771a3e65d533dce343f24dcd5d8360046fb3db7eec2b3994166d8ff3e9dbd2
MD5 84add45b773b15fc7f25a84cdec2b30f
BLAKE2b-256 330bf1b94dfe6dd5ce79ffb3b79e351a7c946fe5d1dd2fc14e72766593cb606d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5deacae208620d29a9f8a99656b0f1f0bf041683023eae65ac88f02028586f8
MD5 b1c7946674fe1b748deaa1dd583dca64
BLAKE2b-256 e0d0b27b1f8f3de89092f99aba6cebd7c65e50aa469f191917ee428f8fc3f57a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc2063d6215cf01deee94bdfe673f77f70154ecff0f5138e3a3c1467c3fd0c4e
MD5 0fc93784e50a4e3e86d55abbb2d712eb
BLAKE2b-256 9994cde417f6cdfb31a8f80c421c7e3eb4405545f3c80fe37f88b627105a9d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f24b6b2dc961c368a5f02d910258bf4bee48f05c04ced4836751ff3fb5120aad
MD5 fb34f09592c9a511da0a272e1b5b76c6
BLAKE2b-256 7dd9442f49723d95f217a72842dd72dfb1263843dcd6870476d93198e35c1877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c5995f5c1d384b89ff362d1da780b3701ff34bff12fabeb0f06cf9b4b152abae
MD5 2f394621c4d424256133c43497f3f5c0
BLAKE2b-256 5542f9a157d0fd4fd20a10eb09d0088f8970faa6ea3a963fbed1186850961779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e569824c704a826f205abe4160897400be6d3a744ab663d4682a9efd06a15cd1
MD5 872a796e1946ecc46530bf812cfac427
BLAKE2b-256 5ab393287791df9050cab68dbc922c237cb42022eb5340025fc2ee07570198fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ace34dd61aca1cf6aa466a714e196c6eec6a43789ee1f27d84754a20f8f79103
MD5 13d14635727732b6f035e6147c1c2ad0
BLAKE2b-256 57d632dbf2dd7c24f1351d1ecaac686ca9fa2a61b685052efd9228bd118f427c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 34040e3de7f7d92d63c8f71af8d108b1e9fbe5516d1b70f2f4bc2a1076b5ba67
MD5 3461636a55d6f45194155b3828552d45
BLAKE2b-256 0c7d3f23f8448da2ae8810e46387e90feeb7dd424acd3e8761296141614fd41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff679169834b7cfdb1a5b23a7b18a2a971d258b3944e4607ab2b130f55af8c96
MD5 a3c9c00664fe11be69813a6c6f0e105f
BLAKE2b-256 7b88091b5ffe38d0e397f95dac522727f80c91cafe0592597a83d4ab9be6ad4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a19df14ba13211b450d3650f3f34ffc817f0797fef71103659f2df2a9062a6c6
MD5 4a811bfa88fe0fbd21b3f2b7272469dd
BLAKE2b-256 125f1efb754acdc62c382968df7bb1f5e48dd7780952b82cb0501f9268a4a426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 416586db93cf8c789e6f7fb5b9755de4e5b40ba95bd235eca25b27229ea0a54a
MD5 c2b2bf4f8cc3fcbb5379704dd7f647e9
BLAKE2b-256 51c972e3f2088b0325d300484b5b5d2b3706197dd2f6bd2742c320ce3515f77c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33e5e2c6c72c8c4691ddea8933deeb3040d4da762d0fa8b4f49f6c642bc0a2c7
MD5 b693d3a8277c6aedb54330cb4845a5cc
BLAKE2b-256 8914aa7ba8d93ac0e0a4a878929634b411c396455759ed0f8304312c3d2fa19b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 771766282f034335f6a88d3dcff3af75cf60bcda658894d9248e7a74e24faf77
MD5 7c6bd7777d97d3104fc6daada777730b
BLAKE2b-256 85f7e89bcf0b7561bf79f6033dd16b984c8bfb77a4daf2b3d81a0d0dfa0cbc23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d48b970517bfc084e8b87f24da0b74797464946ab6472f8bef2a40a9089a767d
MD5 2491bc9da8852cce374d5288d9ce2f77
BLAKE2b-256 9909ac079c3883ea4c3f0e515b8437c981e037d29f83812a28e20861057f8cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6b3649aa365210ba067fe1948f4fa18ebdc88e80981c0cd1ae93b11fb6b88481
MD5 4f037b85bf433260482f8182418d2988
BLAKE2b-256 48d3f2d411bd0c53c1d99bc12a3a265e3071c7e8234c82ab5906b24609e5f186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8c4038c695105cef5346d00c022e9b8d0c5881ee2c10ec7f08c2e472fcfdc77e
MD5 336afaf71c254f75e3d6f59a756d1bda
BLAKE2b-256 53823d9db3165cba6ca603fa0cb6ec2c8b5aa8d5a1ef55c90645b7a9aa0a46c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc1a4064b677657d2a526b6bcfae496c243677b95f616538175d27c6545dda3d
MD5 f0742b66fc46ee088e499a54d51733dd
BLAKE2b-256 f26c89722a4fff33869e765c1d1d1853fac09c1152fdb040ccc7687257ad3786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f559257a25323886e88dfd6e9f64142143ea1f260f9986705d83494a19e956f2
MD5 f6455d6c22b94c9b24fde683277aeb31
BLAKE2b-256 ebab638febaebc8b8a96431757fc82d1b1b42084dc9a3eadd84a26b276c49368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90229c48418a2b1982ff84bc0b0e7c50c5ced48549bce973ce7bb6e291f9fcd3
MD5 a56ab255b3705e89e98ff2b3cf694466
BLAKE2b-256 34fe0d5ccc59244f5490f8cecabc67b83fd89570e1ec0cb8f28468c213d4f0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c095e04bac792e3c7639c8c89be7151c1937baca5774cdf6ea77aeace54f341
MD5 ed15df0602553bc079e8b3d7eb98aef0
BLAKE2b-256 d1673444cf8d4350de32bbb205bbcb8a2ef73aedf7d5104f4e2c8d09b7e9819e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ad8200f3f03bc8f70590c14d7236e6c3f21e5b867398ebeb94548ee109f96f4
MD5 7e550a3b30e8028c2eff0286bdeed812
BLAKE2b-256 b77793c777be0a42dc273eebb0e74de13019a58d1c250877656dcd12bdc3a239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c82da644772d4f00a890bb9b283f1c693453ce0d9c113bc845a2f7d7f3ee74e2
MD5 7070828b58c220c9c8d30691b638d829
BLAKE2b-256 4119a1e991792a225663010c79a64c7b052d905ed31f1d85c8cd2a3a72a12e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3156a742a80948f0295132d022f9d9ea42fde225e9707f6c39fa4f01adb9bf6d
MD5 afc52e7b70bf7f92a023e8505518a135
BLAKE2b-256 edc01478dac6e42f670768c61d71101c5993732c2050ef642479b91122a1f425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d7fc11421a474c5114ce9637a8c094221ebcef8d4970bbacbd60c92f25fa2393
MD5 e9145ae8174b1a619af2306c5c9ecd2f
BLAKE2b-256 3cd7c1d2d4a7030637ccf07a3d8656088258f5319ad8ec3b902805e0e89e6918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c2115b2e6fdd67e947de345528958899363565ac0364800b598d879178462637
MD5 0cb6a6b5c168066a91f9e9890ae207ff
BLAKE2b-256 87e63d414ec6fd95d6bb71b3d99409420ecc61306a64c7dc5edc24c11465fef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b9556ad5462da1967e43603f60569b89132923546570030703a04e715d4e3cec
MD5 94712444cc35fb51c0d2fae3a7d72458
BLAKE2b-256 4779250e7b7d1127f32f85445458e427fd7692bdb6f76eae4a9912087907f699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 56288775a08a3ec0c2761cc33eb33967917087ba56bc19fda51ff17d5bfd4f80
MD5 67c5e4f7360863c691a24dafc1700740
BLAKE2b-256 5ecde8fb02133cd6e8142bfe28c9bd25098e3ea0ef907197fabce15696538094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2cffdb47c529c05ad2ec04557a9c2339372fd9505d1965012698095aaafed28a
MD5 5659eb54bac80829c41831621f3d6470
BLAKE2b-256 6762afdfd547aae20ee7c2075fae8d06d2f168500a1036ad07e9f046049f672e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d77543ca6ad680d97524397bf324e3287e519db5a36db1aa49915cc8afd1b481
MD5 164a50ebfeb60073cb724b0b3beb0362
BLAKE2b-256 549b65e9ea435c08b202cf6401416601c4107eb737ddc30c1154e3d2c35c62c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14519bcdeab8a7a51fdb934c2392f6e1bab2bbd59b128431a4554ae0ab695ab3
MD5 f87bc4983dd741f371826b4dce838b89
BLAKE2b-256 dbca93141c3388972c2f7612f636ab4c2fd2b384e818ebdb547618e5fd87a368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ade5fea0c289a1b9f684d6cc1e44bc570cd307d10f2db26c8bba70ec4e34a41a
MD5 96312e7ca4105181b08eb38f1cc5af91
BLAKE2b-256 327cca7bd48ae19898ddae389279dc857513074e95b09a21408e9717a31136ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc738a9585a36602338ddb76d87a5c6cdfcccc389fb1f214026dbc5134ec93de
MD5 525959ed61ec6157df78a326f9e47397
BLAKE2b-256 3ace0e39fbb8eb36c832c4c1298ca6c0286a94119db9e9d76d8ccee92e9a7b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13757596c2bf82bcaad89c19887c57856f886c6f54a841ad5084b3f39f0bf5bf
MD5 cf747d70aa31ee48e69ed52485eb8096
BLAKE2b-256 d62bc3b1b75d7c5f1c67f08b5cdd32420b3dc74aca8f44300100cc7d0d07af2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 235d9da80c2a54b806d927b0c28310a887429155603b3751c705a15c44343a39
MD5 46b2e5cf6ef085c0776b11215a2ecdaf
BLAKE2b-256 15c88bf32062b2e0246415a48babeb05c2986554bc8ea1ab7427bf3fa700e086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9d8ac8ba0aaff2e8e6bb3acb86d7a60a60098fb0754c536e00f82fb1b6d9b7e9
MD5 6f70132a7b58f6b26ea02a18c1b87c36
BLAKE2b-256 679f69d7935e386acc1cb626cb31004be0c356af3af0046a796d80f59992b271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 db121d41b9ab3e159d0728c3ad18b5d9de38daf08b07c3cbc26e2696ed719210
MD5 cea834927ad1c9def4c7e4727f68b2dc
BLAKE2b-256 6856c6d1c9fa5c05d0ee9a48cd4492d8db3166556db9d7a196a667c658ab5fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 edd45ef7b79bef7599f69eba86d9ec4b2bc29a01270bd4e7ed2af402bfc50d78
MD5 6cd81d9edc1060136ad129bad6431278
BLAKE2b-256 b0e47ef4088191ab42c49c489c22c0f1e5c003668e7862ad1d810432d39e71bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eec2d52a969c6400cc40fc606f8f70d16d8439d8b4d9e2303487481d1d18c799
MD5 32cf9626b2eafab7813143e0e65f520a
BLAKE2b-256 5f31d4431e5126ba4f1c2029cc57f13427cfd453dde5f5c4cff612f4e30a9eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33f5546f20cf9cf6e827fb3293c0c987fc48a533640df734bfd57331fe1731a7
MD5 dbfc4e3b5f0a91a8b34a962c4a68c929
BLAKE2b-256 3039000e4c512a7f9c8fcf36d884328b263f35b385a0caf072f20e4b901a9351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 520b0be292154fd64bc699d6660ffec981809f9735f5649e3ad1fd5bae05ac6a
MD5 f16b97a62f36308411096ba413cfae0b
BLAKE2b-256 f663d1734049bc1f0db087c961f12df58e1d2b29b50a7e59c325d3c357dda0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44ef9c910c28079eaa7df2e8ce90ff2aa458b110856a8f8302e20c65fb5ee3cb
MD5 1963e81bded4b310d1dad1bf791f2ae1
BLAKE2b-256 845d994e5ff10579a50aa7b6fcb9b1117f7f4a7647d6dd257cd766cb8c8d7f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7e3fa994d17c9ee95cb2173d102d1d16fa8cd3556eaffccaf88e4811d3a3df8
MD5 86b9698dc6cefc426779a95633c23a61
BLAKE2b-256 07f3f1a60a7c5f7745152089eea141d70a3546372bf046816a84d20b9502acdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71332e951f7af5c19e29ce3926e395c7a1e23d2e5c69fcf165e09c4f62444273
MD5 e594d985ab6d5b92124cbb097024131d
BLAKE2b-256 2cca6690967a5e2f4980aa8410b7f4de0e907d926062c6731f3fe22a1ac73fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fdaa1420ba8f03d87d02eec045cae8843b83dd37907de131d1f987e9b9d976ca
MD5 13349777ec3cb5afa815606626e7fcce
BLAKE2b-256 f4bebfbbd7ab93533f19066ab3b0ba96d3d66aa0b7962b280e5ebd9407f92b28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0c413bd5b72931bbcf9f6fe6d561461c66c8895a0f29a1c194c117704f46e9a7
MD5 7a82d456ebb0c8da572db2f2bb605dfc
BLAKE2b-256 026294a4cc8735bca9bc41bc5d906812bebd2793373eb71eea04633933be3fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 33f3566b7a93f68acd01e6ce7cea113e6e7e2d8cba2d1e3ba310d56b1fb38e0d
MD5 d2c8ed02308cede82242d97b2f0de117
BLAKE2b-256 eb33102a5afa524cec83bdaa473129ca8e2fc4de35001ebffc3eba1515d97567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f3cd7c4220d4b22521d6ad5ba2ab890072531aaff9d2e797631787d40c51a521
MD5 e7b2ead3e8d50bf067f4e7b98bdb2210
BLAKE2b-256 5c578dbaf2769e107e15428ba8ca55442ae06d811d07c932ab23ecc4a2109751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e353bba3740645c848cec2ea82d8a7e4301810e2499755f097359d6bc354e1d
MD5 9b876e2c4939a4f108e61964d976ecd1
BLAKE2b-256 8f88530ab413b4eda26345b4c6d5265b6bad19c35e4d645b6302c2beea7a2f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2109d16e958d8d57034c71c7f0a24c45715ae25ba21a89826e5a6e5d8d60dc90
MD5 9d0e9005fa75ee7261de38cc28efb068
BLAKE2b-256 c1553009e627b0419bcd37c839c08711a1c7369231a88ab7e3b46c13e666a762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 adfea10cac3db2bdbf817645c4f86d3eacd17939039c70881ae5a97661d9463a
MD5 1df57ae04acdd856a93dd2d8cd679d20
BLAKE2b-256 a4ee8a52b6db419edef24f781b5a7a36b16ff47c0dab0e523d3ca28a59f6f5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b65db87c13d45f220e59456a4a9450b9c883e94f00815994cf84c92c801af730
MD5 15ca7c9334da8f54794d47bc245ac4b2
BLAKE2b-256 8c14743533137b705f4006ffdef90252940568f53532b76952591200b0012193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c242d8ad811347af34fb342faf22cd6c348e82fe388b4ff148962deb32e0c9e4
MD5 e33c5b2662910dc8f90767ef0291b62a
BLAKE2b-256 013009638d73759251facbbfa5e78059bd67210485efced0a94162e95fe54fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 815998dd3cd036748acea70bb6f3a0f1e411d6b556df12097347f3fb6b1548ba
MD5 6eac382a38745fb11c5d08fc338b0865
BLAKE2b-256 272dc820e719db3b6d137cc5621c534e87df74bf264641c3fc7e3e6ed93a974b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed0471ad6bfcd92dc531afc986c34341a7869ade413ea4971bc5c0952f7df1df
MD5 659f3d205b61ed8ce26c0fc3898461a6
BLAKE2b-256 eca501969df56c5c15e4cdbc333ae18874bdd1f1c0bcb53e3bfedced1bbfcc82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 67df98e46dc5af514a1a73948c62090d5c53759cbf17d0eb591adf2f88756dad
MD5 f175d157191cc9f1346278b217adeea3
BLAKE2b-256 66a842a6694549444efde2ac6fb13bf62dc297afd41939de010baa1088248eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7514616d84114c8de55721a8f30cebb1aed483011096a164f541c6df7daabc09
MD5 c742112d58079b94e0964b5c54c315a6
BLAKE2b-256 24cc6789bb026c7b31ec9bd99f82b1cadf4181b8ecb35bd2e3e05bf0c7b8e8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 226f1c0681e010886e32695ec7eab92cd19ee89176b5aa0623804295f904726b
MD5 546a859d9656307b51115174a9f0ca16
BLAKE2b-256 08bb5067f7732908768482d74d67428f82e7bb87ecf97f2abae913b2b4a79d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ab20a40b48c6a29ecc6411887b130c2e26306c7b5750af44b144b6a142904756
MD5 27a3c0f3c5298a7e12465756c13e9b0b
BLAKE2b-256 1129deda582688a35a62242c9a98201e109b4fe1527aedf89cd1c9f95e8e090e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b6ac8aae0e9399d497d2ccbbdd20a701f6b2aadb72735bee751cc1948b1e5f45
MD5 2bd4bba8c561bb52de3de15f249661f1
BLAKE2b-256 e3a06ab8da372ec3e813b61ac9702691ee8aba937010891bdc3478c39b564f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6801f368e4ce9207ecc3fdfefac69c849a6f60557c16e6021f8372b015651eca
MD5 85e8997aff7cd5384916a26afced886d
BLAKE2b-256 7b056d995a9cb5538abb113f6c73478b4cd8a8ee364ef7d964a7b75e6857a759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dabda1259466a21dc3fe78f8c4aac04664a41bccc239919f13a0210b26a76187
MD5 541781108226e57fe0c419e2b1e2422f
BLAKE2b-256 40370fbfe82fdb24b148e33bbc9d637b44d2cb5b914c32516609cc7d6c3fb6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8ddf8019779d47cbc80c4ac03b16d26ec5efe42c88b1d2d6ec8a2b579880ac1d
MD5 2cdd1a8b8770a7c207fc0b278b1d4936
BLAKE2b-256 7d47bf09236cb9287f1cd2d745705c5519027850c243f64491d25cc6c551c965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 109fe459b98084742a4ff4b01ce272fe8bd66f00c83be84895acf6ce908b6937
MD5 1ee0e4e7229c4a4f9d13f96267aaee5a
BLAKE2b-256 3300dbfef451e0ef2b94004adca3879b705977b76373657b9f2aadf73c2ca162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb8d315f17e6033ea6f4649c208acdd33208516b16d0cad8235a9d89b97bc036
MD5 e2b42c85f0998522cec18289bfe9c484
BLAKE2b-256 7a7f517074dc3b88320a7a383d368906f368cdb884b30efc89a42601e051768b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 747adc526562c5bee0569bfeb9cf8561f2a07e954fa4aecb5883b030792ec48c
MD5 eaac77d12380bb7567abf027605bb5f9
BLAKE2b-256 365e4292f3e790db51f66a2ea5eb3770b1e5610841b7b1761b8a4a4361d0cf70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d79f0f842d32c3a604360742ea19829b9ca943a5025c6f42fb485a82742a0119
MD5 f7f267a6b60abb0ad20e17692681bd3a
BLAKE2b-256 af031b7a41c33808723c2fce060c8b2090a92f2942a115b357302461d5fce987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa364f9e49f308c9cb267060e14d07e79e7885383662a8ca8e6a1b62a20de170
MD5 bb982b60541f7974e8d197b887f31a36
BLAKE2b-256 33190afa80afe9a3d0daded5065a1c527328ac25c0719121c4d5e8190655bdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1dc8807bb112b11e9e6e485c5885f1cf68b108faf89454a384fe4f16ecb5db65
MD5 71bc845938e210d9fac09badabf21ef9
BLAKE2b-256 403de38c25ab8abac491836e6e482f02a2bd8df2c9dcd217476d13b96072f99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 92e3295200e63f1db017e03ac7f4faa45694fb9dbe93e3e46e77d7d269f90fbe
MD5 7859f70feca4ef15408b5f6c075953b5
BLAKE2b-256 34cdad12a650e0a4f14655922b9a8286d9e305115d266e686382439f501b6efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 32a343d5d77848bd85ec8477802d74e95aaa6af9387c045414b126cc4635c15a
MD5 a623ff38fedb4a5252558f9d7279fea1
BLAKE2b-256 8ff5362789ebdec7dc7d78f4fafad88171355f72b71e5d9df7693b3651d8cca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2c0836f37872c52d5b46c31196dd6a083f892f12e8eeddd026e38635731e21cb
MD5 dae308823e9aaa96e8766108a2845ffa
BLAKE2b-256 cb4467c3ae5e89d69e91b8c21b0888d6412e8269bc807bb7098d8cb0b483d696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f039ba3f42a71ae018d8c6fd677fbf7c4ec9ad11d9d6c6ecbf946cf374b917d6
MD5 1e53b13a2aa04efbf177e9799aac4da2
BLAKE2b-256 698429bd8d7341ac3cb47267956c2e44886cc45c2792bd66ce96dffa0dbc6ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 798084a25bbcbfb806f1944799fcb8e80a1ec3eb5cc19f0b73f911dba7c2796a
MD5 b7a6372e7909028dadea647fe3f9882d
BLAKE2b-256 5081994a32513a6763b1454a647cc547eba9de58502dd8d640ac7a588e639a3c

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