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.0rc1.tar.gz (62.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.0rc1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (760.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (781.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (819.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (709.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (548.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (581.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (612.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (568.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (544.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (528.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (756.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_i686.whl (778.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_armv7l.whl (814.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (703.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_s390x.whl (579.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_ppc64le.whl (609.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_armv7l.whl (540.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_aarch64.whl (522.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp314-cp314-win_amd64.whl (427.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl (757.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_i686.whl (780.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_armv7l.whl (816.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl (707.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl (546.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_s390x.whl (580.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_ppc64le.whl (610.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_i686.whl (567.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_armv7l.whl (542.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl (526.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp314-cp314-macosx_11_0_arm64.whl (503.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_x86_64.whl (755.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_i686.whl (778.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_armv7l.whl (814.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_aarch64.whl (703.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_s390x.whl (579.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_ppc64le.whl (609.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_armv7l.whl (540.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_aarch64.whl (522.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp313-cp313-win_amd64.whl (427.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl (757.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_i686.whl (780.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_armv7l.whl (816.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl (708.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_s390x.whl (580.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_ppc64le.whl (610.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_i686.whl (566.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_armv7l.whl (542.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl (526.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp313-cp313-macosx_11_0_arm64.whl (503.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.0rc1-cp312-cp312-win_amd64.whl (428.2 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl (758.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_i686.whl (780.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_armv7l.whl (816.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl (708.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl (546.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_s390x.whl (581.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_ppc64le.whl (610.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_i686.whl (567.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_armv7l.whl (543.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl (527.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp312-cp312-macosx_11_0_arm64.whl (503.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.0rc1-cp311-cp311-win_amd64.whl (426.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl (758.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_i686.whl (780.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_armv7l.whl (818.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl (708.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_s390x.whl (581.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_ppc64le.whl (612.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_i686.whl (568.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_armv7l.whl (544.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl (527.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.0rc1-cp311-cp311-macosx_11_0_arm64.whl (503.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.0rc1.tar.gz
Algorithm Hash digest
SHA256 983b625ab527246151ade0e644568c9d4f16f172dd397c3aa387520b212f8f79
MD5 c5f83482f48435f1b53303d5c255ac9c
BLAKE2b-256 da71526c23f5ed76949a7071f34cff63dfe5ad6a25a2886e1696ea99c9287164

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce2eebef3c4a76f265b1c696d4d439e0abbe757f5a656ce7610b19b21e27f93f
MD5 5b6f146baaa409fe5db678ac3444b7fc
BLAKE2b-256 0dcf2212accedf5be1ecc13f6b4303bd5440e547288da5fb77cc1bb982438588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be901ec753f1a4fc03eb0dade97ef7e0dcdc4978e35f012319c1bb3e69d78799
MD5 bc50e4483689cfd6e1789a725d534cdd
BLAKE2b-256 12cfa01b2819e7f4112a3ac82dc3cca9008a128c256ae66952105d187411ab44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 827c34e5272aae8032888a17e107e07afbc0ad2e7ae2c7509e7d2b8af7abc29d
MD5 0d3d61e771a8b9aa199337e6d5f636eb
BLAKE2b-256 b22540ee7f8e4d004ba929ae14063a2f2a71d1e5c329e6f259d3a3be1831d02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 597398b350b13211fe2b5dd6304af658f3ac33a69e120da7e1626edccdd17e4a
MD5 b14a183988d47376c5c740f4664b48e4
BLAKE2b-256 39456d246d4622cb2ab42fed66f15c57f218b17d66d74f2c7f551ea3f5e64bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a1167669e48a143814a2cbee8ef8ac2f7b5df21b65b495881489e53ee814a519
MD5 1d9fd27796f756c740c5a9f2f0d2806c
BLAKE2b-256 3e69ef4eed9e31043043058d0d63b82011889045e8cbf6b18f3377ad86d55560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b6526bb4f8b8b50da09e20814de597812ce69ae6e8ed177063e902023fe97500
MD5 78161f4b49f28df0d96a3e9fc22e7335
BLAKE2b-256 98a80a21d2b987bf90f66dd231ab3b29c28121bb7d364bb8636d6c18f4aa7815

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 294a4024ccd6d8e86d656184e9671f6c728b206e5588d5a2695787dcdc8f1fa5
MD5 81f2a4d6896c5422d268028b97bca48e
BLAKE2b-256 efc03112b0138e998dca6ab6595fff22e8f71fb118858e62584f4ef4b59c3742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1852e37a82c26f6e68f314489afe106480770fa551462944eb6c784d5fa6135d
MD5 75a24ef9869d8c188c67df4f2d79a8ed
BLAKE2b-256 49335026bd299c55e228539435dbf36d077b1bab9aa41453987ce2f3d9773c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ab16c9ab1a6687cea85107ab411b632acee8f7fd2ab25989a0bfdbafdbd460cf
MD5 a1b54f36c176b981ad2b16407ee2cd71
BLAKE2b-256 39c04ba8ff4300a23d2aacf968f55fd839f93ae4089fbcd803af0719d4218703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b64ce2f57cc580283e731db64e0cd3ca100fceadd8d36f152c65fd424739be1
MD5 0ec7987fac5fcf6ae813ccaa0016d753
BLAKE2b-256 284ea654a2b12939780440391e84c748e67bac2909382fc9b0a483d0e1754d13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2013773b15cb769f6a95d554ddd24d26533c3cbd2a4409f5516b186dab107d2c
MD5 e3bed29a3b9ceff3a16c37d5f8cbbdde
BLAKE2b-256 add35939454accbe66f48c133cadd8603675c72e10c703406d623a04faa6af10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0adf49316ecb82f5fa6da219bf0a6daf5a117a77fc6464cce8153aa115e19554
MD5 516bfde4d7a359ca7edd2f98813d692d
BLAKE2b-256 efdfd1885c0c6d1108c3cc25e4e2674adc46488d366052404d53b292d61081e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1abe2b142c9ed41626ebf72ee5107537217a4914a63c2571819cc2f0aa3a344f
MD5 fd833616a632e34844407c3d046bf1f1
BLAKE2b-256 c9c498ad5d4b9428d5b3221415c1a9c58e1385b07aa542318679ee1ae3d69cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a461eb373f77e182b068ae973e752a8a9dd4847e6fc763946aa110db25c78da
MD5 5ea20123cd7673fb35050676489aea49
BLAKE2b-256 1e68dbd202bc6adb91664e9f9f8743e6b6d555cad3ea46535b0eb66c5d197f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8b43f57e50097d9c655e87d8244de858a8d6f060a01c258aeadd68895ae1f9b1
MD5 791af2b7c0f3c19e083914b4e75c92e4
BLAKE2b-256 121f2a92bfbdf7ef9c3fd95dc8db0af6a0ba3160a9aade90fdd123ae6b7ab1b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 839c3a9c083078c4725650aa98c650a8900a5729ee5cafcb4ae14586627fd652
MD5 afaf14d2707fe55e98a8f13a670fbfcb
BLAKE2b-256 fc4c040e55724f382445bec41ddf09bbf84ee297c7c2f6918aafe25fca569f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cefa5bef36c76dd22e8e9c47a7fcc76ec4f2229cde00b45c57ba7520a07ab612
MD5 ceb9167fd8ed61eae4c79fea0be838a0
BLAKE2b-256 d69478d6f4354c92253c122b8aba3921ce527dcbc30e232dfdf7ebb2f861b76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81baab608bb73f0d3c56c59ec3c83c2fcd0da0ab596892ffa2755b1d0465fc6b
MD5 a72930188c83ae0b751dcbda2dedafb0
BLAKE2b-256 cf6bb880627b9539e2e2fbe1e0b6aeec5cf6f6591255e7626ec0e5b9b34c2093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e1eaeb19763987b47e51bdac8883a23decf4d0f20fcafea0ed76fa93cd2f6a5
MD5 0990c3d280392f57b531f116c3017b90
BLAKE2b-256 fad85409309f0e1f3b83075a90ba16622d06d2751caa8a02473536cd811b47f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4f26a025ce6b37b547ac8112751ba115123feb49889a8160a6aa5a5f90b0737
MD5 72db8fda63faee8dea3a491ee47d4225
BLAKE2b-256 1db6f17d794455c38d86306eca3763abec2912e98ceae4bfed66b7bf45cf328a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3275d895203a318bcd7dc7ed7c2bb7b5124f40cea3e5ae01563fcb933b98a98a
MD5 e3cc3c0b9722c7db475ce4350ae695bd
BLAKE2b-256 af84ba36783c8a4ffd2ae93905e5a2b0bdfd12d8253bb45d589e8b4390faaad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97b16f7a01a91f38acd211500359689ace40f755ec75be4cd6a7d8ae5b50e0c8
MD5 b1042bf8b57bff0d796d4598b5e28b74
BLAKE2b-256 855a4c74778d974df0892af421648e3703c599f217c7a418bd3e22a28e803134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c2530731bacc255a5e34f0f0b472bb64bcc1af95f964e3cf7281e2cb624d5c8
MD5 8abf8eb38c2db82ac2c09e9e553309ab
BLAKE2b-256 c6f0bccb9c3848629e2109daa00f4d3229885757de044f9a331c613c054d0435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26b9228e09ebd5a6a5f2739dfad790ee54f57e406ee9b6abd2e89beafa86e0b0
MD5 2f7b20d9d599ac96608cba47c09e4cb7
BLAKE2b-256 cbf79aaeafe6674db461da8915689a40950b4acfa2b3ced4f96216af658ebd9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4a6bbdb8e300ed21d71e61369c694413cdb49358dfefc4501bef5b8bfc56f6a0
MD5 cdd0977c7368be9251361e6094103e8a
BLAKE2b-256 84402eadc019194d4ea226f85199978f6d8d2dbfeb24b89d18c9625017cfc9ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8f800c0e4f925f3026c64b3088de136cf5359b0f47b9d5640b965019174c0be3
MD5 ec2f933b363238e49809910c27e58940
BLAKE2b-256 da06425d0654284cb7c183df02bf564d9e01c9d07a68fc9fa6eb0a47b0dd3ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 06507a54dfb4bf70015a53d5537be688c34d184b5e138c48c4b1cd13b62f2b79
MD5 da4575e510f738cec2d229b0aa0fef9c
BLAKE2b-256 e9271710b4e348501295539aa2b81912112f079ce7f30d508e98e9588b1055a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 634c15935959bb401cff11a3fc7bb1f0ef4af24f3816e683564ea643e599d860
MD5 1acba77ef375f5c83b4b1e047724d65d
BLAKE2b-256 7d0caa4b80231e9fc88a18b99068c32a7cf54606c3df97361322834c1a9d1a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ba28db06204990e8543eddaef9a3b24044b4ce348801f3ad8197cfbbc959517
MD5 afd4ca683bd9633e84e89132169e2b4a
BLAKE2b-256 3b792953464ab074a19e004bdf0bd8136329ab8bb2a09e817c1925f22d014153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cd85d79804b4498a0e2b73e79cca8b3f8a00d67e51fdaa566738bc4504fdcc3
MD5 b7f5a78408f96ad5cf46b8f418449715
BLAKE2b-256 cc16659d5bd77eac324da8f70362ac85b1600d420084d6ea21b95842fe0941c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df5ce03990a9bf96c4c3d79acc57683be7ceb46572f439badced701ccb135675
MD5 8cbdbb6f737645f20fa0411d556bf1c8
BLAKE2b-256 841207a80387efa1a480dd75c2aec8fa93f5c54cdd3e93e9af92025c33d4372d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 553023b86774c87b91b6c9fc0aab12705623f02c2250e73eba4066f61b8533a1
MD5 7f6574509a620f23b5a816b3abd37dc3
BLAKE2b-256 5a3e41da736d87bf0a311f3d2b06e3481b1e1ced04b378dcdaf2699358f06811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f83533e7bc5478ad3f47699bb9c4134a17b151cd5667ffa34663021f502c30a
MD5 2a98dd61e24b52fb38b6be2e68cee20d
BLAKE2b-256 00ba0e8375325277c633234905478042522517f1cc70e15fcecc45d3f679ff51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77c51e40d54de8b63e582bb6a0dd047f449b7dbea45abf39d3e1f3cd864c7602
MD5 4cbe8fd019c13574748416437216ebc3
BLAKE2b-256 5ad23d6a8649bf481dabf8e7c9e60e7332e4a8effe56561b2c388ea60350c3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d1fa5fe130c3a6a2a2bed95abece513eaafd9e831530835dff705d2940e5effb
MD5 fdbe3c1e96fc47e7e116efe4f58a9cf1
BLAKE2b-256 5cc9dac4b0fa700593980a1d340e865a68491e65c633b59ccd55587199fdad37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 119458dab1e74238bb27fec5f46efe90b075c7fa9872257f56b4e4f269fc1e66
MD5 8140f0f7fd09fd8c8cdade17556549be
BLAKE2b-256 ec85d3497bc485d2e832d7af6f7ab28b0b4446ddd204e376fd6314f326ce4ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a19526892508e70e7c42db0b8f8d455cfd04fe0b51b75e58f4ca28aaa5ed372a
MD5 f28b59683443cf88ce69c04a132f8488
BLAKE2b-256 eab4e7053d06ac425dd3bca859fb24f61a9994bfab3afb468b463c73cc61db5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 505f1fe5f4e40902423d95714312fe68f1f9fd48643d480dd30b98004b6dd5e9
MD5 6ecc66f8411912734e6163fc3dfe4e40
BLAKE2b-256 9efd73f66d8a89f5403b936ed60632b7de4aa70d90e46855a31419ad8dc907b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e2cba552aafc45ae7e0015182e59095906600b3d07d8bf62f2736427a2733fa2
MD5 7b031251fe35d9943940522e36221168
BLAKE2b-256 a4bebd5235ead93ea90c2e45cabb298813f8204b78d5881a1eba46043dad5955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1525162a633dad883d798101094afd9bf5f1597f2adf21935c4253d61b188950
MD5 5482c33ce87e38291c4a18d9c2f9578d
BLAKE2b-256 a7db999fe66e3a97f0c76fca0cc92a5d7a9a0046d1ea8e5d2c83b7ebdad06dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e91c985ca84b22e4bd6bf15cdcff1f7fee4dca91bf9c4c594b82eebc42ee22b6
MD5 8d4b0dd4b88b485decbb5894fbfd13be
BLAKE2b-256 4c7869fc47e1eda144a85d1024ba71fff9d42e1db7298afa8974200b12f90817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a719511758ff14a0ebab79be4090da01139ca4b0dbd6e5af4eb66ff597fc1321
MD5 2302dde14c1992155956dc053ca362ed
BLAKE2b-256 78763d0563e1d3b8f9c65863553a5a0f71d8db8024206a9906f4bd5aa10f7ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1bcdd52afbff9b93905ccb9e62beb6776bfd36f78a0f69ee545449b7bc9194e
MD5 b15a452651d2139e4bf860497cf50c0a
BLAKE2b-256 c27538c89f53b8808c1392fe1d2d60c34eecb5b75ee1e16d1d60967bfe8edef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ec4944888b158ae654c8eeb4d5219cbc21003a716b687a23dcd5414c3343cd0
MD5 a2bfa59b82de6bd39aa55512623f056c
BLAKE2b-256 928185b0f562ef8ab377433c9977fba3c918e7cc3e4b7175c704b820d85d1d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0d8315132c446412aef3d53f32d0a4ab82548771dc5295de76fc481f8e6e08de
MD5 4b31b88204926dd208c488b8f6d8a147
BLAKE2b-256 ba9b3a3f60dbd1828710bb9657d6219a208c75107ad559cfc00529baa238c436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e775a0d47175e45d218a1ce6315905d979b062e4b62b5495d6e24b13e6041e8a
MD5 54ebb2a1930b7dfb0c926ea99bc850c4
BLAKE2b-256 e1c2e06024edd1203c8f537380dde993a5f3cce952cd8a4329d58219ac3a2fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9f94d9f585b64b85fdbbceaa0441a1d3c13bc79cb4a48577bf74b3eac692ddac
MD5 02d8a4c4ace8ec34f0d4345710b5dc6a
BLAKE2b-256 e576e26c33177f927040373f4dcc19c4caa9bf9af721438a1106e9e277012d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fd512c1b36222279b84fcd7e4a5eb626a817b507c374c99bac130ecf45b0c653
MD5 a1f21e350061c32a1ed8752eb694314a
BLAKE2b-256 dc977eb1568077c562f9589db7dd0fc585273f03135c73741c656f51f4ec0709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72f0fb8a12135835ea3ef32ca9ac22b4d39561b937e775cfa87ed367a539bdf8
MD5 26570888a3aa5dd17bd6c9b5918fb132
BLAKE2b-256 dee24f746996f59af54e75658c795c9570a30992aa9313eff739cbf1efcedd87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ab8dde2114c4e434078268b501660c9b5b46eb94da0a3160fd847a664afb570
MD5 5620fe0868db3123fc5b935effde9d63
BLAKE2b-256 a80c6293da4cb30d88ef1b2ac10510d9683a30ffedc13cc2b7914baefa26224d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 30b2c4341630daad1f6ea503235e6c517164a05d7739f3b5c4d292abbf811512
MD5 e1957ad0bbd4167ce16b5693d409ce17
BLAKE2b-256 5b23ed3fa7d420c81320deefc2d66b90b1546bfe62625371b474400113db0969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15d2d2cc7a4b563fa50a7710a65958852096b91994bc55a020f0b8cc84459bd7
MD5 2eb432f992157430105f28ed28f02568
BLAKE2b-256 200c0385460bdea4e3f4d6d90681a1a86fec3aeddef75796e4182983b3c3918f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef2bbe34baf960e5ff91d8424e2d4ddac3fc17a69ac6a1316ca30c8e0f3c6b8a
MD5 6ba5dd95aa661d0d8274b4c30b2c12c4
BLAKE2b-256 bebecfccdfd65062ba6e78637a673282040d7a412f7f7d7bc3e67c22f22bc158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b920740bbdb161ca2bd48f3338ae116fcf3affe4eb83acb157a5046574bdda8f
MD5 5b48fdd82811f733fba29d089c0bd736
BLAKE2b-256 6c9ebac073739232e74fc52da32bd1c0f0b713f8b3c170e0a7c9c0ff91dae9ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aefde33f86d9b1fd726daf8b47959b7665e29170585e61b0f53ea1cf5718dfd1
MD5 d17301f3f41253f16b2df6c7715ce866
BLAKE2b-256 3b6c6a4f7479407b1cde2aed68c4c7c69575637caaf9a56a9ef0dc7ff7c52f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8b1ad6bd14678e5982fcf7c684433dc99377c844122da84c5ddc05c7504e82f1
MD5 27832783184a7a59730ccbaa93037e75
BLAKE2b-256 c1442a84acf7c082a4a3c6218bce968c208e2fbb2a523390efc04e8aebc640cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 25574533ea17b71b3309eacdcfc5e6bc75f303972df10db367596974d01aa734
MD5 3e015fa6bb8e5824895809dfc4b39199
BLAKE2b-256 832adfc8d509f142e1923590097fb48b38c41cd22177ca09fb1d26f1299de8a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b9d185ea36a65b56f301e53398e734d87423ed9b8a75721637fc0cc4f0d8bc68
MD5 711887b94a99ae2f04a011f465136165
BLAKE2b-256 ec67542d4aee434398b91d5ffc4dc1a697b976eadef154fe3cb9c236cd5b0f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 303d689ef0d2cf50951c0b85e6a240a0685b8b4f85c06c572be72b13f837a97a
MD5 27b4ac6ef3647d325a288b14e5e52b14
BLAKE2b-256 08a22d6969d5fc2289124cda87a672fc9e86b9128c096ffa8f95d32d1f1f0979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0995bed7a2dfc437497a7ad67d48036d238ad04590d922383cef863590192784
MD5 d964a02d3f19c26f5ad9f256f690a21e
BLAKE2b-256 f1c5ca0073a8cadeb52a26816da33f511e9c57cde78f2e59cacd3dc7f04af893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84cf73c93e818345eb86af06f912ae60c638e7602292c5ded843086b6bf12dfa
MD5 8eb59272983c4e5e5d536fe06b27202d
BLAKE2b-256 49d22104977b04a855b8313910acc8f13bf8457d0cc3ff2f349b48e33aefa44e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 979e28497664d3eb647a7e08f9e29d0254763a5aa8a6bdf8fb3a7d919542a625
MD5 25a6eca47b5930b6f76cea0c198b16d3
BLAKE2b-256 26c2e374cfa0e90de1a65e8f766b5e0986541eedf182b6cff0f1ae93dc7c90bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c66d02c7b90e69a3825508aa881d4fbf972899d72f83eed63dc3cd6b57211f50
MD5 9efda0923b1afb629eb6b3b4a20d27c4
BLAKE2b-256 6e686f59e402c5878bc837a5bf08b60084ab2114be0a0c92af7e0c7b90d56e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a21dde1ddc75891d455852137019e870437a7e32d62a7d3c661fcce4504d9ffb
MD5 b07b6937b9b02d362e229109b9c89b25
BLAKE2b-256 5ae1bcf6546e23af4d13c2654ee598e84670bad3b3c433b14381aa773d880fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3551172007ed89d15f2d84ffee1452204d4183655a03abca6e231d9079a46a07
MD5 c421e94924d493e66b718da3e644255f
BLAKE2b-256 68684be7b7bd59df77fd43deb9f63b090466385c69b88b5de3514cb56709f3df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0b5afa7c90ccf5ddd819bd3d700857282b34cb413134022df860b24671e0306
MD5 981b583a8c5d04dba776c7128620657f
BLAKE2b-256 bd233e3cc79c220dc1ed68cce2f05d415c8182416793c73be8d43c4ba00f6fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e72fd60cfadbab5109ecfe7167ae95577e3fb382f639cd840ab09e9d5a502d9
MD5 029ea05d56e3990a04c106781082e93f
BLAKE2b-256 2523f31b1ce8c7e4618f4b0c84c9b7d2e6edd11ea762563b12df50fae3f86973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 582f2aaeed6244dbba70d4393db4b096f85934b8b2e9fcfe6a2dce6d85375b61
MD5 042ea0562772e50d2e63b14b4fa84d41
BLAKE2b-256 b92e380a6ccda537f37aa4d3a5e49821ea3682b8d7765a04dc7a5a905441d758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4ee3dcdb78c4d125099784b4538a6de71bd3efd3becc983ee432eed1c63eb699
MD5 37fa5db4bef8f16c4a3a6243193a6e6c
BLAKE2b-256 85c3a28af2fe6218b73d097ee291b4f0ecbe55564d7f1466b4572d110a80e915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b0429df97af510b1c0fb13726b48ecdf2de14085dd96bb1421057e41312d9438
MD5 aa1f70fa81e416ea3ed84e8d53bd1a87
BLAKE2b-256 189499c1e117fcbb74fd48a6d1173287b922b763f78914634cbb2ecd868f3e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 94a542f588159bdca78f26289ed11e56c9ab6d88b214f622ebc23c865f4ad6cb
MD5 71594d292a7199fd0ab8d90d5a59aa12
BLAKE2b-256 83fe1e056af836109c608c294922a17c0a61eb5b1b9553e9b84d83c716a64fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 84c8565958788216fbc8ff4680db88792669341d6b5ec86290db702c6da47976
MD5 afe9243e2538bf3943b1d904950499e4
BLAKE2b-256 360dd7c5a063cc357daab6e40d6033eddec523b9e63c1dd6ec97acc06de6cca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3c4b72dcdd56b9bf3c7d968b3a546862769b7a510c0e6f5d8f37e0b4626bab6
MD5 bac91c23a6b2082fe0bddb0aef2c8d73
BLAKE2b-256 ccf1888d8ebf510b8f4b1045974aa2436bc48bb1fe66354c7c35305f3b700df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e43872bb38aee97d90f79cc6df0bfc4d6635e2ade81218f1fb6b16f174f3f6
MD5 082bb11d762a515df5a50cfed25ef886
BLAKE2b-256 e6d5c2ded020b5fbedc8ad365a24e4b7ae0c88c15875d228dbab9216c23c592f

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