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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ s390x

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.0.tar.gz
Algorithm Hash digest
SHA256 2039f798685cd1619e2d4e7c60ce20c75fabe4cb5aeb3029346ffb43be28aaa3
MD5 2d31457515fbd58570c4392bfac68c8c
BLAKE2b-256 0e545a48e1357af2eae951cc032a10a3c9652ee3b335f7a1eb172cdc9bb6604d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a03cf50462123bb5f2930d10481b26aae3cdc4f193fc8fe781dc8cff688bb258
MD5 ec1d88c1967862098e316d661fa2293f
BLAKE2b-256 1580bf215a51ce5962fca505ae65997d421ac77d97a931836ab30734da5e5163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e43ba1eeb1ed7643e2efc0f3d7af23e1e709f0a557ec9ac89f21ce50dc5417a6
MD5 01c3ce20ff1293dbb23442af65318e01
BLAKE2b-256 3ee7fd9ae5cca6f4618e75723857ab43a51396e48ede89132babafbb3097609c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0668f6b7253b198055fe7e929f16e9fe2e7984c791dc301ec6fb8c08323d3767
MD5 e0df86a0c30f13f359be17b392f4975f
BLAKE2b-256 80b277435a30bf637b7f2224a6f5fa4583b1dc9ea2b768a56147b0c0e57ddd73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bcf46fd9e57609744e85abeb09358185f13884bda6dfb6e57e690bbda3b8957
MD5 92c68e87ab26f335609292fee34102b3
BLAKE2b-256 b1a94c41863543e4ab551ef2facf0e77be30b4a79061516e7bfc38448a87a288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e500726e9611b94f7db59c7b3d1427e9b65003f6e5d8974244e0849ab28e225
MD5 e7113f893e8b86f2324e570290618159
BLAKE2b-256 09dced3f85b2f88232c67cbee2b33136e4e2711e7fbed3d1869e31f9b81c6783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a246f90816baa733c2156a849080a9137b69d3ed86d7b049fac03320fc8ce5ee
MD5 379302253b4719238ac2a7851a0c4116
BLAKE2b-256 296a83691241f8a1d846e19728275adbef7c69b017693a03139541f96ff11a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6b064b8c08b38831f8009b00190f5beb60c203cbd45909a9adc9744b4917ed09
MD5 4252210af43642c9612ff64fc9793e5e
BLAKE2b-256 22bdaa18b6f43bc78de6fd06a1e06411036e3185e04b0f97a2596dbade60f094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7122942a337d2357b10cd94ba2ed3f761ffe0890036752bcbffb5bd287c70294
MD5 66cae3ead3587c68e93f96322cbc5116
BLAKE2b-256 58f55daba446392a84f31516f6fc0c94fbfbfc514d965432a7e35ae72096ef6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8e952c29644fc91badff9d0036b382769dbab196bf23cf868dbf050348c779ce
MD5 392169aa847d415fbd6995d7c60dfcf7
BLAKE2b-256 216677340463ad915421d23e2982ca4c68e18464ea7fe7157957ca0585a6f14f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e99d4b57c94680bb4376a82a8463fea6d961d79ae77093870b07456afc32aa02
MD5 0c77476adf01d0478b0164e9a07d5ded
BLAKE2b-256 36d3165db0bc0b362706c74155677960a6b2722d102ed113e4e60dd992403d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcd818585237f8c4405a7b2be3bd827c0929b8edb91068c3434f6a5d0ae092b5
MD5 ebcaad7381b350120edcd2cc78041c5d
BLAKE2b-256 a008c2c6a8bebcd2692df8b75d840b73ee7efac8d1d614ac7631d41b4097ddc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1ecc8d3a67cef7b41f6013f792b9b5b42c27664fcb2458b5574827a6d462e31
MD5 ca67ddc1ad29d66914826c3adef4ff18
BLAKE2b-256 095200c19282f3c51d38d379068f051584e45e6b3dff3b9b7528243547868c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fbaaa32e36239dd6261ea7d59de1fff1f2f31761a8414996f67b015a95a389e
MD5 0a04d82d5d9966c45d21285c43f04126
BLAKE2b-256 82be2727a6f99ac70391674f1fcaa24564388e0a2ed8407873536220995fc01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f41bcb5f51f1bacdc66327ffa37b9945473762caad8e76d6fb31d6230a100d21
MD5 5e705ec43cf57c0d51d8df8df42104c9
BLAKE2b-256 d5f356d904be13e8aa272aac8dc6575820bd03805d2731ceb520e25cbf198a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8c152d1d742166ba4da2fae9826289933536f3ce5f4fb279ba55dcac2e6e8ae1
MD5 c9b4a15dd0715bdb237de11748750cb6
BLAKE2b-256 097bb92601394c24ccf7cb1b6871e91544a3d6e990e60f96e54e0666b595d4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8096b0965d9d780bda297a5cdb6df97952e623508787566bf7d1c81bba2888a9
MD5 cd12336f6654d62ed531b69fcce8adcc
BLAKE2b-256 2b7d6223c77d86af67e50e97a1befeaf97bd8789c65a86ec04985a24a3e00c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 867e51ecf522917665ec3ed5175e8801354f7f832857ea228faac8f32df577e0
MD5 3aefd8aa8b32ea8ff6e5befa0e720538
BLAKE2b-256 8ebd164bf667de45a111e8269026ad517c4718b20d8cb29ab0fea59faef43b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71ead050d977b1ef18d7c589bbfe86b82297f1629789c269a0babbbaccf34ba2
MD5 d51a7836c5bcca9e123d4514a765e6a7
BLAKE2b-256 1fec4f01b317c8ad264e4aef5c2af159fe9001d5211c6ee5fffdc93186a25e3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eeb50648732f5d8d888af262a005ad93fd57f4c8ba85ad00061e7a935d46eaa7
MD5 d4b2593a2e440605421d7b26e443a6f9
BLAKE2b-256 531b29453dd527fd58d9d9ba35880aa545d31d7c04f8cc093fcb311f16ed9e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff77657c9d8c051248e06e67d9f334fcf0c754681bc344a867e45f843968f1c3
MD5 e85aab46f8f63de6a59eac383faab051
BLAKE2b-256 32d833c7eaa175a040451a73046499966b0abf9eefd8964adc6f8f0fa627cc43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf92a93a1e7d4af37381eed7b2d132953a2adc73529decdbdd5ff3f1353e3972
MD5 8adfe5df896a7669ae6446163ef0c93a
BLAKE2b-256 bae64e3252e62c28fcb6da11b2fdb1fa56072cc791497c54e1ec09bf6d36e6b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f63f6f9d8fa304541cc6ea8b462a18c81e955cff898ed868a0bebdf521a633a5
MD5 ca82f26ffa94e1f5ad834ea22145928b
BLAKE2b-256 e53b1ae13337a7d1e8ccf650ec32d2109a73fa753012b3fdd076f9469253bf5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea114827c36df80af9420e268fb6b96b6a69694625a7ce187dee610b703b3f41
MD5 3c68c86bf805142ed845937e67724ae0
BLAKE2b-256 5149ce7d8e385749a879095ee450a254e6e101493d789c5583badfa3d01ece1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e1427e9ae3781a21b8edf5d3fbfc48268f5329918eb507a597e4f87cffec2068
MD5 f5648791b9a8dea67faf55be248bb255
BLAKE2b-256 b0434e41b923a62be3ec98f14b01668965de5a363cfec34581681e45943744b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 05caec151543af13e194591d29f0ad360eaf4dc7ad9623f51969291e625da9f8
MD5 684b1e9995e97f9684d1d931bd318bd1
BLAKE2b-256 1044fbc425b336c48537bc0a649346b74f3b8080524beb5c6420c21975b1adcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 328a385e95fe300096f04ccda4460ae326dd606e962b92cd5c21e560c82466c1
MD5 7d5ee58b714a567ffcc0e117f0a9ba82
BLAKE2b-256 82f3266a349f9a67f75fd20b64cfa00005e98f4c09bcc3a76ecf88ccbb126157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a9deb29f009fef2d5dd92b5c2546343c65a072435f5e6f179658b1d19cb46641
MD5 33fa22ea8afcb0eaa83ef189225050c5
BLAKE2b-256 1b06dfb9b70d14b7ae9bfa5014ad6653e3a762690979cc93a0f284b9f6a18074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4005ca792e95cdc299f685f481cecf4d0b7f4974ab44ab914b16d615daecd31f
MD5 577457ad1edf057d9eb4c46841240134
BLAKE2b-256 88e22d72a6b9ba8bb45c19d440798e5e3104c1f3d0c06dffebf1ce8f6142b403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbb0c93ad1b6404a92dc069ca0a8948ba8bd497e09808ac3f1267582b02a5f84
MD5 53c5fa90eec2d79596865374d1ef5bb5
BLAKE2b-256 fafe8809f09568e6be6347c8c7449ef8d47ceb69b62847ef9418cfcc3a75a859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0566444b536347093f5c18abb986ae8c27ac99d4604ed012fb0951b6056a260e
MD5 44fdb03786e63a18ca98921b80e63421
BLAKE2b-256 55a03ff3417b2de3502103aca2757c19402a74931bff65c72200f22057d54f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 887858382d7b73bca704d20156f2da5572add07de5ec71549f58f54edb14f90c
MD5 858658f5b55f917511a8ef9cf1bb0744
BLAKE2b-256 5fdd9a9486c0d516ef74e408e9027d11d094da7c82648469b5a5f0bcee13f593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94a46980b030c1dbeef8a68ab0a4702c33c8ebdc87638b72e7fe4b87390663b2
MD5 c2b1343fb0372c52503cc2c464ee3edc
BLAKE2b-256 f8c004e3b8e895aebbfdb2132c40b0c3104df05f237217aa467b5a89a4068fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84543ac9b022450e4df791a51058643b8d24d3146ab7c0c9c558b55a403894b4
MD5 95328103df088dda685daf4384acb735
BLAKE2b-256 1dbbc2d6ea0ca63f19bdbb155f41537e1ac6340ff4406705c7ab221f8e1432b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce1698fd3ef7291b990356039e591b8523c70e81c988b614b9dc28d1e6b1c5dc
MD5 33c7172e215ecdcf5815cb21692774b6
BLAKE2b-256 408e2d8ab7b277884108d9ebbfae7aa694661a7bb52a1a3571cae954c6841d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 eb7510dedbb9006667e3a5005c4b4ef6b74a318fb08006384ffb33e1698207ae
MD5 2c11e05bd0aa05aa98f6a7795ec2297a
BLAKE2b-256 c8da9d1f55ae52777f5a86b4924f910ee6827ad79cc858c655d90c982ef0e503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2af2ea51757d8b9b137ca000403f60f53717348d8aa95175db7b7b07538c8d91
MD5 ecf45036395aef84558e4357fad015c6
BLAKE2b-256 6e9e24bcaf915dd4b0ddf7687a4a4149ebe006c7dbd7c8d00d987734f7a04bea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d9d76d6f93e4537368a08919242b5242e1a1fdd93369588de108240b3531cc92
MD5 b11836853a76dab0bd8b0fda2fce9c39
BLAKE2b-256 90ffcff4a4e8ebf99a2d0eebeec911e349e73955741ff799b7e9637adcf29ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c132c56d89aa502b0c1efab19b6913aa4dd92a50c1ded861282bb249b12f8e9a
MD5 00767a43ba7cc3d9bbd43b97b8cb97bf
BLAKE2b-256 f6e78ca6eb44ef3314fe7c72c4483384335f2df284e6b7e23046c0af1bc6ada7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8fdb03b68ad1264fcf0473dbf522cef477f825459ef1fa3c98926634fdba05e0
MD5 79bca16b6eb70ee4dafd24f5cdbb83cc
BLAKE2b-256 8b85ecd952889c97b31dad6d8ef32d62ab75a037162dc1d2979e4a1f80b2c62d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c6b46549c53e82aa03a15eb20349e22499bf2ad74ab4a914539cfb97cd52b12
MD5 9258c91105e7c2174f45f14da6ef37fc
BLAKE2b-256 caa527c37d279c4883811d4b88091f39535592fb78437d103d8b1326c476e4ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23541ddc2b830b49bdacc7ac8a592d0d267ae96c2b6e8f1e47f7708134aacb57
MD5 fd6b93b24588b678f947a6fb1541eb06
BLAKE2b-256 0951ae209d5fe5753393410026a71e474f2aecfe5553c49668b51f03fcaff945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82e2f9c621d08e53406c35d3b3162f2aedfdecb6bd27b14caf9188bc63742981
MD5 98cf75eb7962f886c35efdfaac3401ee
BLAKE2b-256 66128e10b44f8863c2ba5b83b8eecdc65d79153c12a084f994d1329ae6db0dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c330056cc17c81ec80a32bab4953d017e8ece7d0bcc9120d5b5d6cda2d60f7b1
MD5 ed28d517836b25abc2eac4daa669eda1
BLAKE2b-256 5f812d1e4a684324d29bdedf495fc047836b7f6f85014b25189e0321e86858eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a0cd5802225f202ac294cf221fe631b2c5dfd5838c40a3ec9a86f6811bef08f
MD5 6e979b6cfe6da8dd65dcda520749b62c
BLAKE2b-256 10e33d87ccefc41a77d25a719c662b5058d3f9c545e8be2b73facce93a7cdf8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5a8ec28b91a2015dcb608ca730b8dc4d77d64a4a1dff9d8d4b78fe1852717718
MD5 6bef2e5ecf8ae99627f436900746d561
BLAKE2b-256 44bdd5268894130f42d62bd10471b96419c947a52a3d98ae320f84c115a08516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ce32fb377d984c52bc6e4edee6c6b9a86fd2fa753bd3b3053ec3e2ba84b21e4b
MD5 6096de4f9d9e40637f3812661ce09120
BLAKE2b-256 a968e9f7391894ab41fc193d98478c21b6c701044127db12cc9ace015c4e694e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fe34985c0d4f3f8e1d1b41d7dcaa35ae3e7bf669850c51bce262e67db7b091c4
MD5 3dd60a8135895f526a51374b1d3c46c9
BLAKE2b-256 f06aa7238f6852c5933c2c0eb28c04fa41d87432a736fe268b2c9d53899c2aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 96aa5528f628766973266e050458d4e82d627874cba2cd4904f63844f285cb5d
MD5 bcf4731a36d30a753c05ffe04a9424e0
BLAKE2b-256 e2f6d92b633bce634b890f514153aaf42e3baa52872e78de480865e48a9f445a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89a7a268b4b666dbcbdd6d3e68d5108f44f98ba2723b5be248e9dfdae5762769
MD5 c1ef418f214660465992df94e64c3d2c
BLAKE2b-256 e948001b1c54c4d92b24c25e244f608847978b4d63d87ea0f8ca2b9f86279d5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efbb5842b146c3e2a17b7a4355c1bfaeac877cf50604a2eb39c27debc44f6023
MD5 a3ad154539288bfda98deb219ec5d147
BLAKE2b-256 e4226bc5aa47b0e1c1e961d6a7daf97e206791a597f249bc9a38fffff50dd0a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8503b878d5377f03f8fb02f79a8f4df578b66b4060890d302c71f812ed7f1e51
MD5 e265de90fb7e1e4b1eb682b96643fce0
BLAKE2b-256 e9b5b00c364a7241189176e800e1408552eb3a814c964e8198f0912120ab014a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44fddf51045ef7a7fbd41a03284889fc6440c95432b6d50cbb20bc31fa9873fd
MD5 aa782ff6c7f6d1fc849b8f023a0ccb6b
BLAKE2b-256 29634284fc977bee5abe7f4d57ef4b590b70d644fc0f0e87eec3e00edf466355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 149cdb3c156f06b19af50f177e134b5ba6e2715f0df805c9d807c66271a7ae51
MD5 1441873bce39e5d67e38cd909d106d69
BLAKE2b-256 7504cfc5a9f7e7b3703c840b6b4ad6fd5622320f8fa1e4b57e4ceee60b371eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25b2f2678c0c72012a98e17502f159d85a9e5fa40958d0821a4730afb87890b2
MD5 89d1c1db1eddce704e2a257becc6d564
BLAKE2b-256 52a0daaed570cd7773858653600792c260c7d7fec01fce9938760a3a092e3a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b040f8a6dc4d87fcfc14c4f9d50e9aad6b3ef13b9b057752c226fd70d9665185
MD5 692884d7c7e05f2cc0975af7b0829cc5
BLAKE2b-256 a221e1e723fcf762fd5428c200296868a1ad6f686622818dd685d5b6fd6bccfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a467275b883b24166295ff6dd8b0fad1b07fdb9e6a0d401e2bc094d33cb2f3ef
MD5 21ced5b04fedd95c37ebf557127d5e35
BLAKE2b-256 3da5a07ac0c3325e4fe6a86c61b46da9cb8654b41e60c92796ec5b9d7b4e0142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 72244fa0cea56e4ea2a5ce124ae4be3d14bc3231fc824173ef6359d96e6454e5
MD5 9abdff1b1b061a643024733c0cebe60d
BLAKE2b-256 1b714b0e2c343300630d82381d5a698416c4463cb602086b60094118e0378573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 36a09c706329fd2486f012762a15cd18c668ff6708ddf84dbde7cedb8a0b1af9
MD5 481ca3ad0fdef1ccbbcc6d87f4563ff7
BLAKE2b-256 5fec68d188c4c9cdf99a779f7fc76c174e97772c4e37169bbc8d5aea3d4b31f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 6d94eeced78382cb745676dc2d20c5a6f3cd0a4d51226d8e218202f03c32d218
MD5 dae87243bb55318dea6b88cc8c45b989
BLAKE2b-256 ce0eac1aab6009f5c129faa40e8bbc7d57cbfe6375cc38e3b4f7fddc8ca86338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8a811e3f8e6a2a845094936770ca870a95f23534072315ece99cdaf8808c4e6a
MD5 8fdb99ddddd3f93e3db49eb54d0a2919
BLAKE2b-256 7e13c15b9f69aa038c48421ba8472145995a693be53fcd83c7b034b778237383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba5a9844be132ff464e67135b4c1481088eae42779e36fddbb4b425984663dba
MD5 486b7d6a3b85430046e60cfe893cdc6a
BLAKE2b-256 0fbff5af3b755f76755e44e72f46e6c7d8e16e26cfc8773a91f0ae19ee53d68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9581085d5ae0c9841266e3efd48735156098bf9e589e345238d85676546d436f
MD5 b739860e06d283c64e84a0f6a90f3ff2
BLAKE2b-256 63f6e3dd00457b400e5750fcdd5f803fd7eefd5124f26d566a89bcc7b8ff50df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4c1a2f04b0c34d674b052f52e3ca64d33a6b6eb4d08ee8f9c59edf6761662dca
MD5 ae66c54025654a2cd3e7ca62f7669ae0
BLAKE2b-256 e1cce207a29c79ca7937f1c2baba1326d1aa5954aa7da4a1dfa9ea35f9408856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b80a0c2e557eae42983cf8c180296f91583809eae92b661d8780a8b51e8ba017
MD5 0c35c0f693aea282ea98f735d3e468fc
BLAKE2b-256 1d00c3dbb2f77b443d65a24054e6a1c42876840583bf4f524f97a92063fbd749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52a96d21655be80edcc10a6b5fceba8d9a4967f2922da276c7822e092ac7aea8
MD5 dd79e9751b3be29ca286455f39377777
BLAKE2b-256 13e11088c9bb7519511120fce2a0e59d5e056286bd0778d96eb3dd0fa7be9c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f10cd3c654c53499a513bd1aa286cfc71cfbb9fa4a29409ff73029c552165173
MD5 93c15289c8eb594d1472fa67a0b801b2
BLAKE2b-256 e739edd4142605199372cc7c0e7fe918db6268ab10ed6095cc308aa9238c5672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce9cc331657467c41a9bca4a5fbe04fb63cbccb280939654578d168d9cfeb5f3
MD5 d7d75e2345f807d38733217c351b4b74
BLAKE2b-256 3febc79324d2479114b9bcc8347e77df4753045cbbbe471a3600e4652b674903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6938fe80b3ee41f7da9f1a048c95bd7464d36cc1a89d41fcdee1fa18a70bb080
MD5 187fbc1a2ae6bb8e5d5426010c51cf29
BLAKE2b-256 72aec533b5e1be2c6c9ef2454ed66720da5ac217de693195bdea4c971540abad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b5e97cbafa9d9b0104b130163bfe67652470a1dfcdcdeae5d73deb40a3a72ed
MD5 8885a94d2c1a23c43225bcd12ce021a9
BLAKE2b-256 d891277ea43a1007cee7e582808ae724e81920ebe010010994d9d9a81b8c3b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2fd7dd755403758a9eed65bcf7b4a431a999d96a48f43d7b3ddf27ec87b5212d
MD5 01f670e1d297b8dc06a826e9f7fa0f63
BLAKE2b-256 ec227c327671eb2c3413ff4dadb3d7ef26ea269a18a6d369317186873d53b931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 099c6ba1733ff83c515308b306e1b208619c7d384f726a6dd003c8c6931f63f2
MD5 6cc2a126e58da177bf3f7c8e7f541088
BLAKE2b-256 4c32993493a4d95a8cf7ae270602e08f7dff0efe8e5547745326f7bc891db38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ba63884b2acaea309a4d2d741d96fe61fa708b6743b992c6c1619812c9075c2c
MD5 93c4e5f60d2d7bb5c8bb5297e3152a44
BLAKE2b-256 cc5e7c5bde448ec476616b4b49fc75a88aa2fc4f8a758f2a155b868fdb750a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16c890afefc3bb4a3fb5267c3ad619e0f399fd31b4604fad4f74501b159ccc93
MD5 6f45bf8ee8ef66de8d991958979c9335
BLAKE2b-256 cf1c4da6c9bc331658512d9d3dbcb77d837137643c614c479833fb2707f05be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a24c350c3f95cffb187b9d1f021ad2a7a86b7950032f212c707d5aed60ca1060
MD5 4c88d1372500a4285676594dc16e35d8
BLAKE2b-256 84b6a70372d5af35e2ca4d1e2f0804700a8b247a5393432c195ffa841f108944

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