Skip to main content

Python object indexer for ETL, search for anything by anything

Project description

PyThermite

PyThermite is a performance-centered, native Python object indexer and graph datastore.
It allows you to index arbitrary Python objects, filter them by attributes and nested attributes, navigating graph-style relationships — all with O(1) lookups on attributes and O(log n) range queries.


Core Design Principles

  • Python-first design
    Classes are the best way to enforce types. Class methods are the best way to mutate contents and communicate changes to a third-party datastore.

  • 100% dynamic schema
    No schema or types are enforced at the datastore or query level. You can load any Python object, indexing all attributes.

  • Indexable schema objects
    Data objects are Indexable types. Updates made to the object immediately reflect on the Index.

  • Constant-time updates
    Unlike other data stores, schema updates are O(1) with no restructuring needed. This encourages iterative loading, filtering, mutating, and exporting.


Features

  • In-memory indexing of arbitrary Python objects
  • Filter and query with attribute lookups or composable expressions
  • Graph-style traversal from root nodes
  • Perfect for ad-hoc migrations, analytics, and breaking down JSON

Basic Usage

from PyThermite import Index, Indexable, QueryExpr as Q

class Person(Indexable):
    name: str
    age: int
    employer: 'Store'
    wage: int

    def change_salary(self, amount: int):
        self.wage += amount


class Store(Indexable):
    name: str
    address: str
    owner: Person


person_index = Index()

big_python_store = Store(
    name="Big Python Store",
    address="123 Python St",
)

alice = Person(name="Alice", age=30, employer=big_python_store, wage=70000)
bob = Person(name="Bob", age=25, employer=big_python_store, wage=50000)

person_index.add_object_many([bob, alice])

is_30 = person_index.reduced_query(Q.eq("age", 30))
assert len(is_30.collect()) == 1
assert is_30.collect()[0].name == "Alice"
del is_30

high_wage = person_index.reduced_query(Q.gt("wage", 60000))
assert len(high_wage.collect()) == 1
assert high_wage.collect()[0].name == "Alice"
del high_wage

person: Person
for person in person_index.reduced_query(Q.lt("wage", 55_000)).collect():
    print(f"{person.name} works at {person.employer.name} and earns ${person.wage}")
    person.change_salary(10_000)

high_wage = person_index.reduced_query(Q.ge("wage", 60000))
assert len(high_wage.collect()) == 2
assert {p.name for p in high_wage.collect()} == {"Alice", "Bob"}
del high_wage

# nested queries
employees = person_index.reduced_query(
    Q.eq("employer.name", "Big Python Store")
).collect()
assert len(employees) == 2
assert {e.name for e in employees} == {"Alice", "Bob"}

Installation

pip install pythermite

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pythermite-0.5.0a3.tar.gz (61.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (753.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (776.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (815.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (702.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (542.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (575.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (606.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (563.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (541.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (521.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl (751.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_i686.whl (773.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl (810.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl (699.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_s390x.whl (573.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_ppc64le.whl (604.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl (536.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl (519.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp314-cp314-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_x86_64.whl (752.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_i686.whl (775.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_armv7l.whl (812.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_aarch64.whl (700.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_s390x.whl (574.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_ppc64le.whl (605.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_i686.whl (562.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_armv7l.whl (538.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_aarch64.whl (520.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp314-cp314-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl (750.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_i686.whl (773.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl (810.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl (699.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_s390x.whl (573.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_ppc64le.whl (604.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl (536.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl (519.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp313-cp313-win_amd64.whl (423.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_x86_64.whl (752.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_i686.whl (775.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_armv7l.whl (812.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_aarch64.whl (700.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_s390x.whl (574.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_ppc64le.whl (604.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_i686.whl (562.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_armv7l.whl (538.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_aarch64.whl (520.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp313-cp313-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.0a3-cp312-cp312-win_amd64.whl (424.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_x86_64.whl (752.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_i686.whl (776.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_armv7l.whl (813.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_aarch64.whl (700.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_x86_64.whl (541.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_s390x.whl (575.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_ppc64le.whl (605.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_i686.whl (562.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_armv7l.whl (539.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_aarch64.whl (520.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp312-cp312-macosx_11_0_arm64.whl (498.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.0a3-cp311-cp311-win_amd64.whl (422.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_x86_64.whl (752.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_i686.whl (775.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_armv7l.whl (814.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_aarch64.whl (701.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_x86_64.whl (541.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_s390x.whl (575.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_ppc64le.whl (606.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_i686.whl (563.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_armv7l.whl (540.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_aarch64.whl (521.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.0a3-cp311-cp311-macosx_11_0_arm64.whl (497.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file pythermite-0.5.0a3.tar.gz.

File metadata

  • Download URL: pythermite-0.5.0a3.tar.gz
  • Upload date:
  • Size: 61.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for pythermite-0.5.0a3.tar.gz
Algorithm Hash digest
SHA256 f49ac384485e3aa344be433ad5e0099a1370bfda32e70c9e5d59048a23187861
MD5 66ccafd6cb84ddd84defcdde9828117d
BLAKE2b-256 5d3d4db95a854f23eef02677786f9fe40ac4065ea75cd830be07afada4dca130

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e07b4865e72e5930243524c252c05dcbaee28cbcd626906644a573f931fa6b06
MD5 d6afeaad31ff3e791dcde29364f566cf
BLAKE2b-256 d16b6381f339533dc444d4e3b6146f2063b2f7749c42bdad7d9b1d95a46bdb1b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e982f55f94c1c11f727e0eac6676ed295ad47fcca4be1afbfa7f7d46fcdcb126
MD5 8f9e6e2c23269d409a73f4fa5c40d002
BLAKE2b-256 c582bca3a39cc9d41ad198a2c336200723eb716abb4452f6c8006865affb3168

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c0192553f78a117235a9da3901c4f26844e5ae6487caf45c54cec66c4ee9627
MD5 c0eb54217f6f7bce7e32aaf899962dfb
BLAKE2b-256 dfc93e723823d7f7823bd73dbfd389a88ab351b6e0a18132a274648a015557ca

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8d34d38c4853ee038429f2fb58a4ebffbe01cf3ae72b6e65ede82b805422951
MD5 8dabb177f417a483bcb5ec1a2977d311
BLAKE2b-256 240122c87fa32f95509717a757b8939790d049df4ce911c4e5cb56452e060f93

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffdf1617ae686686e1fd7528bb6cb525ad36738af79a9055679caf693a6483ac
MD5 d7216cc05c2f928d4eeb4d37b8a07fcf
BLAKE2b-256 b98cc808f637ef4213c9a4fe7ade9de1fcb02f6949e117e0ccf38ecad6751fe0

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 03d556ff5eacbe7821446bda8445f9489673b1078ee0cb81984f78a589cf5a12
MD5 b123f57b755d2fc8b13eb16cacb44781
BLAKE2b-256 4a921676a746107f9701dc52e13f8665a9fc887b0b2b8cb27dce573b0146b5e8

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d6a5aa104899595e3b5ca12fd1871e828b8db461262a350cfb9f0049df9b8654
MD5 a8fd040c971485341d6a21bf4d304bd6
BLAKE2b-256 2d37d216a6aa352aef60f3a1a0f8cb354ab911aaca31b0bdeb4fffafce5061c3

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ad3cf609984938219ed46f083e0bf4f288e8e6c46b1a45debef795757a65fb31
MD5 98b8670a9900078323a5a70e514fab4b
BLAKE2b-256 9a26736a1f131f00b2a4e7f447adbd3c547b79ca9b2a230d9a26eaaf3c210188

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 26c569a7bc616aee6e1c709900671426b7a21a4a1b58805078062eed42d6caad
MD5 0a15dec5ee16cdb87ecad6b46c85d58d
BLAKE2b-256 6bdae1a82151aae72c159f9e7fa57761269bb7c75b12c9e456db9ae5d5feee77

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c43961669d90290e6f237e2be92b1727f49817e2a50f4b09bfaee592b58837b
MD5 41f992d285eb1a24302e0b958932fbe9
BLAKE2b-256 abb4d5a24444bf53f3a12138d977b85a3226b17347532a04893f8c898a0f2358

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7b22e2d1db471f94bd8cf7e0fabfe0457cf489d52ca9a429783f578ba69bc72
MD5 704ce1b6458c1891e8c339c4047335d3
BLAKE2b-256 e67f9eee5692b5fd8eb0b2c74fe3ef7ed62bb8a493b812e28aeb9a0cdc4ef81a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d44e5b77a04b3559eabd77796e4d5f7644020c3c21bf531f748f071690273b2
MD5 75dbbac69464d22a065b27f954f62127
BLAKE2b-256 e7a5ececb3ae32cd9fbcd8536404d5810ddf2b31ddd1dd9fa14955c26009e753

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c711170d855363fc3ac8ac5e51e60e592fc262b8c1848c32c77eee58164f2d86
MD5 dd201bbf25dcec94d771a393b0bbe90e
BLAKE2b-256 96691cbd68620b3685424d3f969bdba9d620d74864ba9aecce5407710ffd157a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb9d76fc60ea116432272d4c96f77a1dc751b9fdc5af32504116cae936bb62e8
MD5 1afbbba4a609c9254aab34b03f625809
BLAKE2b-256 a3b835161ac49643d898b900580680955b3b56d99c1c70314f2dd4bd24123fc9

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fbcbff7241a419e321c6ddae4388ea23c39ca12fc0beddaa259d1bac87198e4e
MD5 94711b336d1b13250ea6e439ac94486d
BLAKE2b-256 ebec57fb9c2f5571ee81f1c4daf232795048b631e070541a637081fac11ee446

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dc941b45931297948e9f43ef57e4fccb03630ef51d8bb2d892a81b3d62f8a952
MD5 333dd8870875d4a0be6b22401b688bf9
BLAKE2b-256 2122f446ee5c46e9a4304262141c19681fb21066b9187b734ba5ba91ab471676

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a4605c02b736fb2a5c520130610d4ef5b95fde4593777f2e603067775e14ca09
MD5 591fcab2160322f69a534abaf139e3d3
BLAKE2b-256 7aabbb8903f6fdedcdc12bb2fa1194f08faecc7a48880f7d8a68089ab89ef94b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a83612019bbb0f05c612014e5a3bcb5172b2d354f32e4cd45cf48a9f4f6c937
MD5 dd7991756b3fe0ea533d7f1c156549c2
BLAKE2b-256 48fdca9390786fae1fc6f09c883255e4cc87e3708f4bc7de48b684847e7b8842

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4e2199629f0e02e5ba8b91d4827ffdfc70acbb6a576eb0166e7688431878d392
MD5 45014bedf31cb4f8471d41ab83dd9beb
BLAKE2b-256 2e3f17b308718aba315cb3a160b8cf5eabd89f15e41a6ddd90b27b5e2ba4487a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebd30ce8d1d81d4f3d3b00484b0543d9b3c10f181986a472785ef34e489d76da
MD5 5c5d7970419f6c931b4979a30149ed80
BLAKE2b-256 2aa60f3735fe314dc3897978b379194e8f27f91e68eed6498653f80ec9c3ea24

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 663c1823c1953b29c119665ca992c3a7c0d75e526ec53a88ad2011dd98b8a4e1
MD5 d368ffb62a5ad03fb85476e116e0a0cb
BLAKE2b-256 5ec7719faa2633b1e3c9a45589167df967201b17364b7334a573824624d32575

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b73a14156f780dbb7da704521956724323c2590331eac437ce2cf0ddf2fbf1c2
MD5 b7161a30a643a13b1e8043b7436f76ae
BLAKE2b-256 3ea74f0ff860c977215a5f0d51d06dc5631109a29bb5f7986c6a38831cb1bb5c

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b1242b17122b4bdcb10ebda9a04b42d39232007fadc6147ffb3bbded1f3d1cd
MD5 ed1a67de6cc13bfe83083a59da2c5354
BLAKE2b-256 503bf607a9433406b6adb8a0715bd74976d484135258eea275774d0dfb5a318e

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b508601175d993cd529194ef49c1e2836b0e4f7af7462d05c3b270dfeb45a3a4
MD5 f70485387ffb6c6b0bc183a21b431c3a
BLAKE2b-256 c928a8b0d8f194ad890c5bac552790cdb03778c6768fe95c4e7469adafb275fd

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c33ab6c879b0631b6f04b7c4ad68004fdce820e94714ebcc68a76110bf2c0432
MD5 e355de1c909b49ba21c2b52c877914d3
BLAKE2b-256 4f4fd05714982afebd4390ac41466ef98050002066b5ba7c7f88ea8384b8f312

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ef55399c984d8e3d805dcd427d844ac72ea8e172c639a15eacb2ce611e98df25
MD5 d14ddb5091047e61fdbab651b078b57c
BLAKE2b-256 cc5feefb73d17cef13c4d03081ce0484f7b588d7e46eeda58df941c656f4479e

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a0fd9e2299e1d5ded5898c7b5340b4eaccce0de0f54edc087bb042d62c10e299
MD5 3903af4a10572692f7fb13bbdcfd21af
BLAKE2b-256 7170178f45e56fe00a2f1da239cd642888530bceeb00d4a768f409783c9a2036

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4f51cf1127dac81412d3948ec3c9cf0425e58e9d0ed611be6758168bf4b651eb
MD5 a3ea06f23e852d533c553bbbdabf9353
BLAKE2b-256 797d793ad0db40613fd510b552f3637964ee8ae1a51120b9bbdc202bb578c1e7

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9af38f93e80eaea7f18aef876b840a9b61910a96bc22441d15f82baa055d55fb
MD5 477d6ed3613c1865accda48a5f7d6967
BLAKE2b-256 29226cd53bf22e724b4c7ede3499e14da658fa70f8ce0412df5c611f6aaa2e66

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a519cc61d3aac52e9dfffbe4f4c41a61175c3b79ba80a9b0cc679e390789f945
MD5 1abf7f28a0380c0c68854a2a9f31c26b
BLAKE2b-256 1ceb47039c26ca7bcc93d9c7f795c137adea95c734ae2a79c7a5ef7fdc63efe6

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73fb0275ca94fb6d19dbaf598f0c471be78a43f8fb29e60296be5a2b46bb0a31
MD5 f3f5586674abf28bc9019087d235d34c
BLAKE2b-256 49f0026115e759ff974444b4f25b44a2572c7b5ed14ca1c2a838f3c45acc6681

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8fc47aa96b52a98b252e2128b9b547158ab78a6c5d7f840d13b595629d6a07e
MD5 59e0f0eae63e42af313292dc73a3bca2
BLAKE2b-256 9f048ceb57488d3c9263e69eaf212eca019090f98da027766b5a1be96fa3ca47

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f80392c33c75f5f50d3f621af074fcdd82011242bb6a02d17b69ae6523e4bc3
MD5 b34cc5eb65fbe437f3b8548882708bf4
BLAKE2b-256 67b1f36aff582dcdbb8345e7a7a58271c4b0122e9038f366ff8f6c9b0e21a688

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 310710c52a14498ffff6e5a11ef6d186db97386f75cf6eb7c869e9e0b6157bff
MD5 307f21fbde26957b2051aa29ce2fc585
BLAKE2b-256 2567c1337fb8704487002b78bcd2e6c07a3cb52e16a232157901f12320f523f1

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 41c6d07d7981c15f2e6122e69fe499b17e38a9a92f50781a3f8668e3fb650ebb
MD5 ba20affcc85adf5992a804604c8c1741
BLAKE2b-256 6c92f5d1ec1badd5e6c306d23990f982c63eb8ddc2dd07c66fccec0464a5948a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 54734fffa14103fc56a8a0c75144869524b8be699852f611abd1caed204d564c
MD5 f4e7a343782546a55008f31dace623df
BLAKE2b-256 fcbed6d4ff23f8d8b9be61f546d155e9e1915ea8b1f33b6d337cf8e70759016e

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 58f6e027382e903a84470cca53348b2da42f1c9b3ee55268ce0446e589300201
MD5 ba5ba790d8506d67b008390a67ab352b
BLAKE2b-256 08d408b8a1beeca5380854b9638b84b34cfc96e271a49d318dccdfb59a492496

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1794f43420ebd7cfe8f9246a6ef04212174c5717ba33de5706a468befcfc65a
MD5 cc80656195f3c12a81041aff76b5662a
BLAKE2b-256 8e202830eec17c5d8eefe1898c3ef15f8539ed9828eb3ea700f31ccb0c057735

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 079ff597146ead887912f3857935413f3bb0fce1fb8bbb157032f5b8fc46817e
MD5 56087c051a5d44698851baafe018024d
BLAKE2b-256 2feb40fd1d66ee5c454ef036830844127fc69978c92543116e1114b0b7e8d8d6

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e6e0673a94c4c59a852a066fb071a25f45edec5031c1017d3af4d344a5d0920
MD5 b2cdf3e5e8fd4e2371643eacee41b4e6
BLAKE2b-256 1f3f3b4709591115f016d34a3fb1b70e6db0b96b77b1b8709c480af229d729d6

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caae480544e9b9e9627fb83782e3bd5d531200ff4a8a5dc055d0158dba132f90
MD5 78c473e819c1a990f867987f36875fed
BLAKE2b-256 8792b8c84afba6beb9974d3c4db8ad30978305c4c960375a02a47036e10e1839

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f09a5509e930f02fb2dcd0b0721c6841d3543f41cafaf9ddec6a8f1c1a31fb2f
MD5 d91b6d88ab07457d46af89ae09dd2c36
BLAKE2b-256 fa6136e083803797da24a56fa1f6e423bda1c408e9ec3793d0d1e753ac71bde4

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f06e32222ca6930e9f883b7f555c6a5f1f4125dae84726a7e552037a59c07ae4
MD5 be8fe6de57a4052b9c735d5cf6c04b66
BLAKE2b-256 ae9436dc7f26f5382203ae506a90cc5f45ad292924698cdc2aa2bcdae5b700c0

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6c1481614b8b238b83d91c9b363e8348948f0dfe667782ad86de0d4a90d8ec2
MD5 dd4b93e8009110acbda2234ca7a7b462
BLAKE2b-256 c1ec5bfd04932f875620199eba0f81b84712c9853af109527d42db94e6cc0554

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a194d4a0ca193858eab8f61de9cde65e94863b526f72c24236b82e9dadbe819c
MD5 8652e5214ab78f15bc0d317bdc22c135
BLAKE2b-256 c1feaa49d7136218f350a8f089008c65f417ef73deb7d2ce960f35734761aec0

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ce17ff3b1c44c49a6e9a5ddd0fb42b880c357b73da9bf03ea8a09ef84342b1aa
MD5 33ef724e56bd01ff85e758e046ee1e87
BLAKE2b-256 742de7ee64b1282a4f7df7260da1aaa933a845b85ce37e1ed9c8b73d95c01d3b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2a48f601aa128c58ef046b5dda97987ab8c2c39641305187a26ab631885289ae
MD5 d4f20c1bf45b70aaabe0d982058565c0
BLAKE2b-256 3adaeadf57bcff53a68ae1bf7cba2f07eb8cffa9b0fd94cbb771c5f944ac64b7

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 be004528ca67b2ae3435e56709a119ec921a80b06adee20c5d638b36a3c8072a
MD5 b62d645eb8c6bfd750835f34364f3ccd
BLAKE2b-256 d9a148077861bda6d592b7c5bf2d50266f8563fa38d2d1fb9b0af4cbf5912e62

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b309389e631746d2323a0c508c077bf67ba617af43c0a7af0cfd132ade9ce83e
MD5 a58f1a70f3aff41d16c7c59856702731
BLAKE2b-256 4eb083e5c610a0f1fa53b51dfeafd6afed05a20fbab28b54a281671deb7671d2

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10e5639ea2dacc0887b3f43a1d5644da9cab81d0f4958af0413e72d46e9ef183
MD5 d87b7e7ad901d0a373ec1c7593698614
BLAKE2b-256 665474726522d1e98858d018d0c270bf6b0a2bbc527736b976ff9040017b80f9

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96d966ffb49c11a3e609cd08aa8a2ebd4a7d30810ff51cea1628c39a8463291c
MD5 82d6a5066a626b26e742c17fe6fa3c9f
BLAKE2b-256 02c238a6ac79bed05bcb79d83021dc510872884be6acf80f543c0812b9d42c78

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fb204a21cfd184d861525aaf8e2b7269ff6124ad0d8c00a78595cb44cc0c2b1
MD5 1a863229e7f219cd246b8e498d05c8ed
BLAKE2b-256 7e3577a2cbee16a5bffa5d2bc0ed2f44384f22951305d918c1772bce106dec4d

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 874fa15a66c3f5596adb3d091f5da92f5f741b89c64b7cdb0175ee4be1d2d8c8
MD5 b40f1853a57d0c58f4e0a31d2f1a491c
BLAKE2b-256 53adbcd61fbcb73b0bd41e9bd06f8dd529444a236808b59629d075a4e2b647ed

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39df2fb1d7c24feb492ae5e47416e75732e8f9aa8a93237b0a2668f69d799972
MD5 a16159c83a82d3a661aa2d56d5679008
BLAKE2b-256 e71ddd80db4f67f22408cdaf704bb07e174a642e464024138b3b442bbffaae6e

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4ddddb9ab0dec62860e2a82177f60a6a366bab4785e8e4570ecf28e2b921860
MD5 438a9e206cfe681607c65e58241933bf
BLAKE2b-256 3a2a2dcd0d41a274016fd66699456fe62ecd1418daa89535ba5d2987640b3fb0

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad4bf1c0267815081e4fb2f8ee0d6d928309e01806b6baff791b28d52f627200
MD5 dd6d9f0ff29876dcccacf5fbcd8c1a2b
BLAKE2b-256 18400ce8fba55046c679e8acb8edc6c4b27669c37ab7e3cd31699526049685b6

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 22db0aff94fd41d76409cd6a7dab9033cf71b89e8b27bbe10882a871115309eb
MD5 4c2aaf946eac415176cdc9cda8326d05
BLAKE2b-256 1cfeef3ee21d748fc9d1e90ae904c775b4d91a089b0aac4ec6ebf36973ad5430

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fbdc54474e8975c8737f890215cff110b351f82637c11edae3df8868dbe0df87
MD5 2cf7ab4571fd4149538bd4e103deaa9d
BLAKE2b-256 844f830b9e5b8e6b5b0a5b003ff4f33b83fc879a9047e78c2c5981e4ba989943

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 94d2743408d0fd62d7eb1337a9103d31068e819a02e93a353ad3de6cde57eb7a
MD5 a04df05f56ba92868161b0564a8fe5e0
BLAKE2b-256 83b0e663f16319d8131765682127098f275064268e8777974b24d7bf1f1543ab

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0f7c7aa500ed7c2d4a581d2570cdd48a97105f4459a2f91e4a2564bcadda25b1
MD5 81d359e6fd5d8482f105e6c72175a815
BLAKE2b-256 21a8d1c0fa6fe330df6f6349f750ac50a87d0f06dfef5a13ec40e82110734b52

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c2fafd00267da055c8efd48fa36a54e707f73f99636e1ee154b4b75d41ec13a
MD5 ce9b9a83e1ea521b9c2a1f1bd8a45a77
BLAKE2b-256 a3772132a36ec8d5ce032ed1e78b66a6c108cf2a788ab070191f14935073877a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d36e9a957e8e2167770a32d53556357804954cadb4e869b15d3d046dd9adc8a
MD5 38a36d724dc86d40e16920e878d518c2
BLAKE2b-256 ebf98a09f9b1ab41e8744ca87fd94a4830a88d14779294ef60b43855f003617a

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e22b98e2608aa9b412b538441a6ff73adc40e6d2386b3aa99f3f3320ca0c5af4
MD5 50ffc6ed45e684a248c5bff3440c19d4
BLAKE2b-256 4c26e7f15e662a8f76d543b2ab43abb9eb4a0b0beb3dddba7d4c24f08f327b45

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c5badab3ef73c305714f3ac845dbc995d2d0cf5dcc63a8d56b7cb48151d60d9
MD5 448a76cae571d822ee2260d69d1138f1
BLAKE2b-256 be78aa618578c5927a18347c698b1fc945c52bf2958d39215defe42408d87bbc

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 902f68fcfa1f08c9dc6a2cb48843512e4784801f8ebd1427b6a59d19460a85d0
MD5 28c8fa657b2c1effdcd92ece0956758f
BLAKE2b-256 2d232ce3fad1d7ff7d7a183a0b31e1228ae852964d37e5c5056364965dc45c9b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3f7a40533ba5c6a41e64dc9c85fb709ef890b369a6c57951780db07099328939
MD5 e6b8e5bebc1642ee66070fc510af2f16
BLAKE2b-256 90933cbb87a531554b00b33c4ca7df650e2ebd943e526b553a9dfef5c6726f52

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd8c7aa1ff469f18ce9474023e26d1194b31262d4989ea5caf66df273ce96030
MD5 5cffab9f712d7ef3064950e645be6c32
BLAKE2b-256 208850a5cf02ad0f786ebc6b03ef7d4b97da3df4e285f115933bf572026a358d

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7df52bb9b63409d0d569f970d4ee0a6a52cf5a99555b2c41cea927dab9a8ae29
MD5 c792468d975b78e12f3ce83f44beafe0
BLAKE2b-256 4773ca83fc7b1933f2b4e3b31e3c6a2a7e37c11ed9b9386e9f2b7f78d35cf64b

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 69cf26bf8c5d9cce70260aa4bd5cc848d50e0f0ecb6a83c26e697f1f72497a84
MD5 332bc0a1381902b9829be2f2e6b86fbe
BLAKE2b-256 e50aa6cd9a8ab06dc6488c8e5b23e65fb695843faaad7804bfc690709053a85e

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 401b324a834c159eb36987592f7125b86087ef786c836ca5bf679621b815e3ac
MD5 c5efcb64613ce65647d1436287e970cf
BLAKE2b-256 edc09104991c47865281d51dadcebe0f1bcf060bb52d469ee89aa5c378963297

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bb90b95108133c079ab32d17a358477304bb27296b0eefc1aeadb8b51ffecb70
MD5 41b64c2d615046b74967abfa6100cc14
BLAKE2b-256 5cb2fea8e1c68ea9a0aba8c42b430ffe952744a5bfc7a140c3c5e4b608576c43

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f8fede1d49b20f03ac53af134d7a52f036d029694f5cc80afe5089e996663dbb
MD5 d8e3bbd4e52f35cd206ceee48c7800ea
BLAKE2b-256 b7594631d7a58c4d31b54537bb7e57daca09f1ddfe6800d5aa741f23eb436941

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76d9677efd818906a032169d97376eb89e816c71b52ed9fc318552f07d977647
MD5 3f2e755ef54dd5258ffd83c61e55eb1d
BLAKE2b-256 4fa241e300d64349d0fa41832474a20220fab2b861721905e096ac01cb7abde5

See more details on using hashes here.

File details

Details for the file pythermite-0.5.0a3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e27091d0b0bd79e815efc88db5f8314a06cb76c41af69698f1e95204443c69e
MD5 68817e5966c8b847f77cd9c4131c56ee
BLAKE2b-256 3ed7f9e68c7ceb919f9c703f675bd387320391120bcfc6bf4282082b80687b72

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