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.2.1.tar.gz (38.6 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.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (764.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (800.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (851.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (766.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (595.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (607.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (743.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (631.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (582.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (579.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (768.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (798.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (850.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (769.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp314-cp314t-manylinux_2_28_s390x.whl (608.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (743.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl (580.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl (582.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp314-cp314-win_amd64.whl (410.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (766.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (797.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (851.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (768.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl (597.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.2.1-cp314-cp314-manylinux_2_28_s390x.whl (609.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp314-cp314-manylinux_2_28_ppc64le.whl (742.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp314-cp314-manylinux_2_28_i686.whl (631.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl (582.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl (581.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (519.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (768.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (798.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (850.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (769.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp313-cp313t-manylinux_2_28_s390x.whl (608.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (744.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl (579.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl (581.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp313-cp313-win_amd64.whl (410.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (764.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (797.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (850.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (767.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl (596.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.2.1-cp313-cp313-manylinux_2_28_s390x.whl (608.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp313-cp313-manylinux_2_28_ppc64le.whl (742.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp313-cp313-manylinux_2_28_i686.whl (630.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl (580.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl (580.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (518.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (549.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pythermite-0.2.1-cp312-cp312-win_amd64.whl (410.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (764.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (797.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (850.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (767.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl (596.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.2.1-cp312-cp312-manylinux_2_28_s390x.whl (608.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl (742.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp312-cp312-manylinux_2_28_i686.whl (630.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl (580.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl (579.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (518.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (548.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pythermite-0.2.1-cp311-cp311-win_amd64.whl (409.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (764.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (799.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (852.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (766.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl (595.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.2.1-cp311-cp311-manylinux_2_28_s390x.whl (608.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl (741.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.2.1-cp311-cp311-manylinux_2_28_i686.whl (632.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl (583.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl (579.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (522.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pythermite-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (552.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.2.1.tar.gz
Algorithm Hash digest
SHA256 04732eb628c1bd0e7ca14d4ec850fe2cbb3845f020f18eca58b4ad095d88383e
MD5 357432c504eb3ef64c9bf73f946ce5e8
BLAKE2b-256 279985b9ecc326e7a30ec13c37c1a2425b2709af8f7703d6c00b54f66e10af3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ac4f83c967fd78c155153d865d520ab45a1fb386c5fa37f049d4418219e6de9
MD5 6fa1d9c4b6b0a694fc4611c0043ab346
BLAKE2b-256 235a025ff13cdbc5e388c22d9e411c5ebf7a7573c0a4bcb6437fc2b8900aa4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 231ef1d19a2e2f3ec70bf8e3d573496c29ee0984842f8716333526b575a0d2ff
MD5 106c764b9013cdd88e50f1daedf27866
BLAKE2b-256 7dffea131f820c93216d02432ca9888d094f0d0947eb5122633f524328137485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93b4587c63e9b753bd7b9c07ef0fb23c5473127bb40d6148dd299fb5996ccec1
MD5 440a4a7dbd5319cf86662abe7a949eaa
BLAKE2b-256 86b153ffd690dcc215e38fee8a2b481811d56548f18f2c705abedbd8fecbe151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cd3cc2f4595213837a541a42bc71d1b1009d55633fc3d7c122041cd4ad1ff04
MD5 5704adf4e66a48ce9ef3db0d474927ed
BLAKE2b-256 5906e8eacd5e1f43123a84c883e0fc7c03f327acbc0b9a25c2c1c41891ae8e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 001a0c686d916b71de2bce7cb55e7b3f2f771215d37bd5990d8badc16aeb0544
MD5 921027d2020e7caaa565d00fec5d87e9
BLAKE2b-256 ade1e152d5006189b302d68c9038fa66349368262790fcb60cb2dcf360ddf8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 435a116fa4bfcbc1a092b23b749c211895250c940f9ccb5b17da9f15e7cdcb00
MD5 dbad496a4c452dc6c19d60336edd7c7f
BLAKE2b-256 13c6edbe177b5fed6f1c7975789e2d0d7f5ec46d50fccf80f51490f4dbf15ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4ed5b2948099c8a3365c7ba0cab100d2b236c395f56a2cccd0e1f419a74eb3d2
MD5 a17051fe967c8a41779c74dec970238e
BLAKE2b-256 54aa3d00118ac970fa87217f009dd536540316474b4df89084472552d97a2575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7ba979cb55805eb54cda0dd790488a04859da5729a7276a886ffa9a4f49b56d9
MD5 ba227a1b38794eb751a9c1cc2dbb30ce
BLAKE2b-256 23b9777aa4491f55832a936703050d40108c6077f19419f628bcc2c9882460be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ed6c4e7253a0e20c3a9bf20901aa448a380a8ace587940d2e312449500d01a42
MD5 98878d44046139660151c6af5b3b3f6b
BLAKE2b-256 75216de41438d7cdacc279b682e2508a74c94c9ddee6623c477c0b64e1e68324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77bc17180c0c11562afdf609ab3ed50d8034327ad7f9a0516fa6f8fa7b998624
MD5 4f533e25457dc2bc54f51fc27548fcc8
BLAKE2b-256 1989c17f976c05ee9bd35c84a8d49c5472250b83d81fe2c2dd21c59efcd1a675

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c656af84c146d117300fdf7e2b6671786c1d975b4392ae3422aae5a5bd8bcd2
MD5 f3d9b1130ec107e713fa1eb0b169d5e7
BLAKE2b-256 6c48fcaaa155de85c57ecb0290ec48b5c7b78782207ecf6111191d08d993d13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0529771019d76bc10ead138b17a11cb42d389384dadb230334adfb6e3a2ccfea
MD5 99cac87ce4ad905b3a5114ac81b8d465
BLAKE2b-256 3cf09be17c85a93bd1b05e33cd9530ac46d57228189f009acf730b3e744fde41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba7842332c639e1aaea97a6cca1bc9f419a6aa2b67788e2f6e2d5a64f9539b07
MD5 96a4f829c9da7bf86144e9ab98ca6623
BLAKE2b-256 61f953fca731747fa3cf75ddd8b674247f84259abccf172a557b54df3fafc547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f179244a84e2bb62572b7df5c426a3dbb733237d8324ed8105c0fb24abd204b
MD5 e990489340c20f5484669767138b7508
BLAKE2b-256 4711134d4f409ab248da9a1481197ae14d383840cefd6d5622f3d19bc445cd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2ffc79f14558dfe309004240501ad229e14e7021361605d62c8e566decf6feb5
MD5 ec91ff7da33683dc0f14b071a63ecd86
BLAKE2b-256 327d317d40f331d4cfd3a39a956246203e1b36c0e563b1cca353f93c266ed721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e5192d0d0549cb866defb947b5e2437b3589609748ddaf3354ee57ce18fd7e5c
MD5 190aa16a856867573b5e1c185690d2b1
BLAKE2b-256 495d35c4188e8280183dc7f8a1be85030c118344224fe2ea7de9b03eccc1fd9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1172a5efef2bbdf63462da8e1a4192474c1fb6d71a27ef995c1f2e72676f4de1
MD5 77e0d0702d76fe9339da150566a113d9
BLAKE2b-256 a0bd2550dc56b896a232f99959faef4fad2e159f21e5f76232aa41123e7f3841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9dbe6e1436cd5e2cc4c51b70bccaa61685815dc44f8f9ae2e17607013ec800ef
MD5 dc29b646627643a63689e5ed34d78e61
BLAKE2b-256 815e84ccab11b75ff7e9b231f0a30425fc00d9b3405998333f9438f48f17c9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c4a2d0a84feab120b2cc4222c560a6b2b67adc6325ef5671ae66a5387d4a621e
MD5 bd8961b692421486216c171914034154
BLAKE2b-256 6189780ff7a16ca52fce02475474994b2ad56009af66b44872ca82f63060d645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43017143533ec04ae43289252f7ff737bffc9cf1e254160869c2d66639c62297
MD5 ed7372786c50db967ebf9926f5042857
BLAKE2b-256 400064f8d4e7b48228b773a26a8a576e5208061a8b2caf8cc0a166b61179f3eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1ed3fc0ad48ff8aeaf5491df917a7d433d776bfb1254175863391721e4b8e46
MD5 b7854d511c87d0f5ac5d54579e64be92
BLAKE2b-256 851775850723e1129a3b19c27dcb71908f0a445a9e234f75345e5f3fb84329eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80cabf200eea26772f090aa27f2586c472e299ca588fe366062cddcade3fa226
MD5 1647c62d490b164cbf1cbb3dbc2c86c4
BLAKE2b-256 4ead16a5ae1d63121442a4771d1be881872c5c973aa3e83ed5f5507aa70b0bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aba6f69696ede01d52ed2c47daa53873f5f6795ed94b3438a4682a7890650b32
MD5 285185039d0145695b8b641378bd8198
BLAKE2b-256 f89c4485d2a7019c89e5a1810d725effffbc17c69646ad61685a1e76ade26980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c34249f646112d7af13be1674fb7db0b3c9d42f85430972aff695fc6070ef9e4
MD5 0b3216b5d22bdfb953651233f33e05ab
BLAKE2b-256 6fd4f1df83e0c0bd97d06e50a9bba4186f43dca5c9d51e9aa78684aebb3714ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 62290adf03a5c75828d74638be47f496354a31819abf7acbf9e8867ad246538c
MD5 226429ba42313c72c7e4e6804e197fa0
BLAKE2b-256 7e058d09ef654a931658d94538e886b0f0a5902e14ad580cf7e05d8dda0e170c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f0d247f8e25c0c880b57af5f10b758e94fec9b4d8b75d02bced6857d10b52f6b
MD5 4cd2135c1812c036151ad1c18483da9d
BLAKE2b-256 010a4d8cbf4706b9b2d5aab28c902fe1881c30ee2d325551b2cef92c83afe1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 23c1bd1231444e975630b4633e9fe79c8b05babce1b9920614cfa0d6f8b5121e
MD5 c84bf903963e916190a5d9384074d9f6
BLAKE2b-256 9e15d9a5d9952a9922d01013671bcad9068fe738d6215e89d21e4c15cf0c3318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 285a257ef9a1723d37dd931176aee88a5744cd67f33d4e1cdfd4186184f03f19
MD5 42d2edf5b11ea52a51d44a83fa81ff8d
BLAKE2b-256 eda7ad0ed17ee3641fa9dc935406482d9dce77eb0aa4105f9061af19e832846c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4634bcb9f9bb507496182bbd3e102da942aa42f8c847ddfa37fee64fd705f2f
MD5 dfb0f79459863b5d9c999b4bcb4ec1bf
BLAKE2b-256 abfc8103fee22c41d184601be8b70f687419fc5cc65827fe298995f7b2f0df9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e78e9886e35f30f1528085f53bd4162af60fb0fdc90385b7c10a9f87ea53d4ed
MD5 3dc70fa1e22885e7f2a371500e05ee11
BLAKE2b-256 f4909c9c1328d32786f47eab062687d2988ed9dffdcfdacedb49bfedcdcc01c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 845037fe3c34498ddd197e4ee75851999a5d95946dcbf7dbf75aff1d21d08ce4
MD5 bbc559e3bb4545a0bddfedaf717f8b7f
BLAKE2b-256 9ddb28cbc192306ba73e504a954860aa8ae46fe578ac4e13b987bf86b186e42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca62c4ec925e6db60b1b63066308f73c2bc2a51c7e85a093bbee6cb52688a628
MD5 881ab26160f3d79d2f282c644666f45c
BLAKE2b-256 fa16d73d9623dd316474189432d3026d5f507e4b402e5b5e73b1e8159a101592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2deb9889e78042cccc9f1da1d18791c0d22b18d14e11cbcee92652a8304f1aca
MD5 81b9839315da39cb9f591b7ccad01b23
BLAKE2b-256 48d4b57ae2471f90ee1f37ddd0684903a6ce512a5522439340694559f6ee6044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eeef867b404fa39e259eb3b991ccccb620fd615f0537c669f74a618aaff8eb6
MD5 98530aedab7ab34272b4f4e0d4bc7f1b
BLAKE2b-256 a3659cd5d019c7b7ccae7b008f69475b20abcf2826c175dda43b85f045302c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2aef1040b094e784288163cc729be50fc1add38c15aeb1dfdbadf15127a3214c
MD5 c7cc7feecaf1412a92c6bcc602662d2c
BLAKE2b-256 17bc9377ad8a981dd2bb42abeb7fa0db23c987ae1392c9eb366f768555986271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1e45d3b181d86f5ba74d40c8b0e3dd18c85c6d21ed8ae26c893b68d0e2c9b3e7
MD5 51d6b09b20d88a506bbdd5243bf3f4d0
BLAKE2b-256 06daf6558bab67b630771bcedcbe535888ebab75a4d7405e26bc91139f8308d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 627d14f320f8b96be02c8c0ffa9600d59d1a49ef62ed37ad3119b7c61cd28ac0
MD5 f86af82632c05e669b8f231dc8d85152
BLAKE2b-256 51ef46f48dbb4fc5ff6db8ad7c071f54c369eed469a985f5eee18230a8b17a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5882383b0b466817c4426a990a24abcd0f0654c5ca03ddbc38bf12b1be9a3e0
MD5 3caf128c1ea675f5e325e57b506670e9
BLAKE2b-256 f2fe7507ebd09cb51e540e9a60df6efcfa7fec1f94ab6680cb747dde09aba457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4573ba7f55ca150eb6b3f96a063e12e1bf0a7ea11b6d6ef479d8a2b49a87b374
MD5 ea815f43451ad252171b1d0a66ad27c5
BLAKE2b-256 8104bfeb95e3fb784c2089a59fc5b1532fe345b39c8c89ca7fd7425c6cdab1a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dc457b325a736348d73c16e1af5d67448e6f648a7d2c3738c47d1344b9c5e9b
MD5 1b8ff28a58b70b1d695084b257670790
BLAKE2b-256 29303f4e263718754983a356a7d6e3940fcf4ebbde366886f0b68900fbe878bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06a6c07e44c6020477877bd88957624f154df09c73add44636d5d200f7ab29f7
MD5 0bfb3d3e6532f867ea9bd76af88c9ed9
BLAKE2b-256 303cf80702c55a54e4cac74df8d3215c0fc41a00536e0b4ecd67bddd1edb8e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4ed30691631f3c69171516d6555af7f28fba65400cac583087ee5a8161875046
MD5 25d0f80a29bd89b0977fe64cdbfaeaa9
BLAKE2b-256 b71e4d924dca34eef410ef3db411f5a3594d28d6627fe1a4a802ceaf5605cc82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77a10c50b75c6e211aa019291cba781fa3f2a3e3d4dfb6df043ac098598d9264
MD5 1d2ee2ad0d11266383a2699101d73121
BLAKE2b-256 e98f62c1089b959bf9666b8d6b61d65198201d92fb5fa83a339e03466fe6dee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 095dc113b9033a8b9896d737c0bcf2585ac0bd2ae8ae41375399b0987e20c29b
MD5 0475b99162f794d97fee4897b574df99
BLAKE2b-256 9937603fe9c99bee959174d2178e7dd118e3438db1bb8099ef0fe00b30fa1b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a075be932df1fe03c02c9c2539a9d68c4d0c0efc4eea8890418bbca221d70038
MD5 711940605be0952acec80f4cb86564e1
BLAKE2b-256 227c3dbb7b3da1a280a3dd0dd90fefe85cf88c1e1442c10178bff6aa24022f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8c44e0e15f579fc261b63aa1e53f721c332d06c776fc68cca14eba3132bec0b8
MD5 1207767777e3f07bf8ec9b7dfa5aebd5
BLAKE2b-256 b433a741333a01f75ff82243c6a4ddf8d72b6e7cde1a9f6f2f1579e75696eb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3a809bdee7e6bcc81cc5eba01e3220e6e0d84d7a9c70480ea0359018e97a0079
MD5 35316b64e83dae8f8d2f4dc87bcc9e10
BLAKE2b-256 09a0221ac0a9376de66d2c83ff54a171ee2c1419f7057e6b0e278fbe108d894f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 720d705a85006e23a85fd9cc437610213a45a83e5a9bbebd4c5731034a383566
MD5 23cdf2569f14be418e680c45f4a35e25
BLAKE2b-256 1b8e9f2fda7f2d0ec45b00d99114c3ee1d96a8b91a57e9cb1436cbb12c6185ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 838ea598ebb1ee4fb0e88631460259839173c3ffb27dc4b370332508bfa4f7e4
MD5 70bf8122369bde5ff51f7e44b18ba578
BLAKE2b-256 f9f6559f0be2a0491be68b7be659bde10652e9946843c321b0b5ee76d57af0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 335e928fa10ca5f344806011289d29d57104b0103a8a9532a6d39d3f3ef8ae7d
MD5 4714b6a1ef8cfc0ddeecc7dc7274cc55
BLAKE2b-256 3cf25612b8d4b23f2dc5b73d6c2dee1f909bd8c959c60b384940d357748c95aa

See more details on using hashes here.

File details

Details for the file pythermite-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25b2c469da521b5b64027f8a2507810bac9e68d3e9785c66e5a52b4f5785aafe
MD5 c1af372126d330d1458627fb9ad7900a
BLAKE2b-256 0655e801807f428ac4e838a29ebb7194551147bfe42e0e4a51bfac7c77781851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b65b0905404601f19547f1c1fa9b9f3e7ec303fb74efa18e29dc78eb3998017
MD5 d2246d7e89aaa4c6aa248d52a4a54129
BLAKE2b-256 8d0dcde43f6ad47d2bd8ffd974e7442998efc8c9f67794738a52aa84ffd0ee33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d92eab8bcf7ce0793dbd65f3742796b53ca9cdf46c82374051abc187b05a14c5
MD5 0b29fdeb3f252b89443684e415255fdd
BLAKE2b-256 4d8ef6c9d189afc4b479dce96abf1682eb8da1583c9a4be84410cc8996f03b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e000bffe5ddbe1091616d105cb36df0ac1c8d63f347ea7205c09275f515face7
MD5 ebcee3ad6c30a9785dafa44297f6425d
BLAKE2b-256 3e0c7cb089327cb800a35bf3857054819daf772ad4341ff9799465f7945f540e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 268ab9d49ca54f2c9190fe2d2c1cd37d97f8b62fc611a0fd12ea955c2cb68eb8
MD5 9a400fa5c2a5b0b3e07c256ee9616d06
BLAKE2b-256 10a36c681fa8a923576657867c677ed399f47b02c1ff5f5a9c07f3632beb86fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e43945ccaad782621a188de66322815e28a23cae11098ea13729b756f31e339
MD5 c54676918a802e255e4b569042477437
BLAKE2b-256 a74a8a055de1ac5c1414244de5107287b99ae846f531ce0c1e94b19228d74532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecf2d6cc665c5ff8a986b55f49d5dc4739f9487c59b8f1936c9ac3e61c313bfa
MD5 7bb33ac098fd5973f081f6b914cfb608
BLAKE2b-256 a163f478219f1bc9cda252b5f685311d634ad5df1786488e02d819fb2bdf9d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 60933f0a28a1872ae7354078ed02f8ac6db07c6b9216816a94fc7137edfc4237
MD5 78f044e47982bb804162f0b96e943c70
BLAKE2b-256 24cf9cad7b3c69b4169e8fa5a4e280a684c4d75e9bae84c1679bd57e28d6ea51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5639be6055a5e1b8c01dd8bd44bd7582c46bd0eb6496567289c005e52f0b75fc
MD5 13c79ec4cb6b2d03d3f3b68497c9e595
BLAKE2b-256 f5580f2d640dc1297df92384ca449c4cfb030b32b7df907c0282c51d0791713d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 85d75708506d967a0ad86cac2cb51a2bff3f63722984ae733ba0113fa63bc2b8
MD5 37580b38fab3cf2af51b8e64532a0529
BLAKE2b-256 7036faa2e2af850d307c68a30f2225548458d5d7865bb7b84b4bdbb71b411540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f456e064c381bd49a742393478d3869e72f031c7b13aee8f9ba064834813dc3e
MD5 399068c26656008b90bdcf14a5fd2ef2
BLAKE2b-256 ef4d801f31572ab34e7120c25423c0b2c426557ebc0177bdcce448cb27912730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee19b1b7faab7997453ea937005f2fce58bf7d083093a379dcf4948639c96346
MD5 ed3071768b03abc0be81f7e004476d53
BLAKE2b-256 962a7939eef0a407d51e4753e1c157b9c25792d81584aad9c63dbbc073bd1b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e7e47c67aeb76df8125e56603f345209bd85de8d9f9dd6dc7571cbdb2ec21ba
MD5 9a54151ad3c6cadd4ac0715f819dc95f
BLAKE2b-256 2e211db2ac5616bc15ed80d79a21b26085f607234ef35dda04c6cea6f6cc8684

See more details on using hashes here.

File details

Details for the file pythermite-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 64281b7229a96f08296ad8b9999ae09ff775108a2daf2bf8fb5503039ae21c13
MD5 37591e6b7ed2adc6746af6c3e4de6afe
BLAKE2b-256 3b929a47b24c6e58cc03215c727ed379a5aaac106c2e2e65fb8c3261502ea07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 713725ef586a05b60b842eef5e146e0a91dc09115a5e191b8b050f65c2cfcf11
MD5 0ae90b27d3bd88743edfce15233b70dd
BLAKE2b-256 a60be21fcde9afbf62d493ad09d671f8660a12525f5d465499a3bdb9480c7e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ed986d073b113e9f52596f6f37269206d4f25d038818c03946f5654a7880d87
MD5 440ce5b72467d6fccf58d248a2c76ecd
BLAKE2b-256 539d8a377005710daf61269442c681b793d8fcf80c482d098503660343fe1a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1aab933c3ca0296003c8670334110462c1b85a718ed8f384c20bc8e8939197b
MD5 5dc2f9f7bd83e38ecb943d7c03e6f5df
BLAKE2b-256 e0f20fca3a5c9198ab6f633a9131e32029099aafbc184448041435f9f53751eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16b0a96e0532f6bc80e3472ccc7f3a9ef5ac042be850b2fd965129f988b738e2
MD5 7f148ce85b3dab00a56224e76ee8d818
BLAKE2b-256 8209d1e1003032cb6d1684913acef146f71f7c1647a3ba0fd4d4e2667c43ecd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90b329ddebfb8b8aa4359c9534342268f60817b6186a84deaa57837c24711c53
MD5 79b8faaa4dff76d0f86ddcbdca9d0b08
BLAKE2b-256 d39e982f8c719ffe5f34e62955c6e3a5235edfd09f37c28067e56d91c64cb0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95c509de4f7b236f3d32721d43fcf0adc341ca813feff77d5fe6e2503b9c1875
MD5 ce9b0f73601d8c3a09960d9c038bcfbe
BLAKE2b-256 f8d1bf23a7fe90dc0dfa278cad8ccfebca3a863dc9ce0281b993ed361e2a6fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2b2f953df917ccd4967fbf23b0d691072fcfff113434068293d8a302f0f597ce
MD5 d76f0b9f52de37be93f61ccc76c1b0c0
BLAKE2b-256 d1cd18fef236452d33cd6cd98eb33323579fbd0db8e6bd6d7ba3308989c0454c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f721b6a7a01e66a1de48567dd2854e34846bc504d326d1c46af087c7ae329448
MD5 6c1726e6a69c7246b16c1793c0fb0210
BLAKE2b-256 775fb08f4c40a8834dcf906c2176e10ee8406b6e6f9520c5622d4c3225337085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6658698b78250d60a4976874f4793fdd46074038d3cf5b0e81c64368a1b9b81c
MD5 0c01e75631f80b1dbc8e167ec0aed50a
BLAKE2b-256 7141fdbb3bc9a9973c4bcd5f6f4c7ef184ca92ea126b96c61672bb7874affa33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f944c91959d31cdd0b3b2652e73732577b08528c7caf90e9a81cfcd1c69b8f2b
MD5 37a4d131213585e798be5275851713e1
BLAKE2b-256 00ba121ee26870c5d7657e461831cc8d453d6c8337d9466326355bd5b6ab560a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 832ad49c9c75d23f662b525fac9fb0f346bb9a00f5015c77c3162c0fd516ca3a
MD5 f6d9dfe1b59251fc5e615cd5232c8cce
BLAKE2b-256 46773fe2fc1a6689467c8f4d8e064721c43879d2cbf91e7ac84a9334ae648429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa8464e323fd82c231ca2a263b32d0fa5bff984f93155c93b060e957bdfd8a44
MD5 420728060c9f2a3a66f35fc79b4fda97
BLAKE2b-256 83972fffa4db04d39af6b01cb5b0217594de58b5a6e1a7807f26858c41586a1e

See more details on using hashes here.

File details

Details for the file pythermite-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc7f1be0539e8adf1575108867eb9c034e81733f62a72765ea29c5a95d1bb8df
MD5 c9fc80dbe8a4898852e25de48c979f17
BLAKE2b-256 eee482b480113edeef05f64a4d91f488b2df7908aafcd12356e03f6965fef890

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