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.3.2.tar.gz (46.9 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.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (726.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (759.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (811.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (726.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (556.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (566.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (705.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl (588.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (540.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (540.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl (729.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl (755.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl (725.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp314-cp314t-manylinux_2_28_s390x.whl (567.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp314-cp314t-manylinux_2_28_ppc64le.whl (707.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp314-cp314t-manylinux_2_28_armv7l.whl (539.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp314-cp314t-manylinux_2_28_aarch64.whl (539.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp314-cp314-win_amd64.whl (401.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (728.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp314-cp314-musllinux_1_2_i686.whl (756.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (726.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl (559.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.3.2-cp314-cp314-manylinux_2_28_s390x.whl (566.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp314-cp314-manylinux_2_28_ppc64le.whl (706.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp314-cp314-manylinux_2_28_i686.whl (587.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.3.2-cp314-cp314-manylinux_2_28_armv7l.whl (541.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp314-cp314-manylinux_2_28_aarch64.whl (540.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (490.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl (729.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl (755.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl (810.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl (726.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp313-cp313t-manylinux_2_28_s390x.whl (568.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp313-cp313t-manylinux_2_28_ppc64le.whl (708.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp313-cp313t-manylinux_2_28_armv7l.whl (539.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp313-cp313t-manylinux_2_28_aarch64.whl (539.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp313-cp313-win_amd64.whl (401.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (727.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (756.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (809.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (725.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl (558.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.3.2-cp313-cp313-manylinux_2_28_s390x.whl (566.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp313-cp313-manylinux_2_28_ppc64le.whl (707.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp313-cp313-manylinux_2_28_i686.whl (587.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.3.2-cp313-cp313-manylinux_2_28_armv7l.whl (538.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp313-cp313-manylinux_2_28_aarch64.whl (539.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (490.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.3.2-cp312-cp312-win_amd64.whl (401.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (727.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (756.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (809.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (725.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl (558.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.3.2-cp312-cp312-manylinux_2_28_s390x.whl (565.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp312-cp312-manylinux_2_28_ppc64le.whl (707.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp312-cp312-manylinux_2_28_i686.whl (587.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.3.2-cp312-cp312-manylinux_2_28_armv7l.whl (538.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp312-cp312-manylinux_2_28_aarch64.whl (539.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (490.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.3.2-cp311-cp311-win_amd64.whl (397.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (726.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (755.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (808.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (723.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl (557.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.3.2-cp311-cp311-manylinux_2_28_s390x.whl (565.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.3.2-cp311-cp311-manylinux_2_28_ppc64le.whl (706.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.3.2-cp311-cp311-manylinux_2_28_i686.whl (585.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.3.2-cp311-cp311-manylinux_2_28_armv7l.whl (538.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.2-cp311-cp311-manylinux_2_28_aarch64.whl (536.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (492.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.3.2.tar.gz
Algorithm Hash digest
SHA256 a5eff8396029f9e532220d57f321022281b2243d05764cb0c62d2d0f1a29930f
MD5 d70d4dbef9f3f5599699d72b19a3fd5c
BLAKE2b-256 c5a3a29a6aba72f5cc03490bbde19a6711747000b986fcd81728031c47e132c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 377d1aaf0b9238a174fdfcd69563a53e0cd67911a945baa8bd9922581c95cce6
MD5 ca62b42c59ae59cdf3068a32fde359a4
BLAKE2b-256 6dc962d124bda8382a7abdd656031ee0b14c049653fd1c01907cdba8218f3d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c71f706f0328d0a48f037677413d537106dfdb0aadd9f063e6ee53b3f4e1645
MD5 c24666db46c57d757a531ed6ba25a94f
BLAKE2b-256 f0b7b4681ddc6e217dbe0d7cbb4ef21ff7122bcc1577ba8873f297c1a64e378e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85d79127f374dd19c926a4c1312987fd45fb310ca06ca3b1d578ded156a21f86
MD5 fc6fe344129cf557cb2a95405caeb634
BLAKE2b-256 baae9105affccd4fcebf99ac6db54ac951d3aac1d5bf142423cd50158f747922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa8998eb145e48c8353914755254d561d465b8d5411c3e9ed7f49b1a47b6128b
MD5 49dea45d955ef8073eb266dbfcf9af77
BLAKE2b-256 cdc264c9ed526983c39b8c112f2020ec269cdb50b2bc7bd30431bec27ecddf7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a044d57ae989c85bd657a4f1f8e7edc9d296bcaad9c71579ebe1b5bde0d9036
MD5 40bf33f251c14c1014baf81c45dc856f
BLAKE2b-256 3d418d459fb01454bca6214685649fafbfe73ea3ff037010befbdff7f04f0f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c2bb3cc801ec5836d736a56e2305e9093accfd96e58633411a7073691a9a9b6f
MD5 c38726022f4f4f7c7da7948cd2d6cd7f
BLAKE2b-256 7b56586757aaf7a7c87f5f37e54be42d25eefbfcedfad99ebbf4c56ea756ddca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fadbcb9680829d6f3944b0267a5d268d1e59f4bc9a3729de66b8445d57772485
MD5 52f37b3c5f696028d2c8afe1d0b1fc28
BLAKE2b-256 bc72413755cafd3d1dd1adaa515a118b05d2c3e9b9078e41e2dd3bcebf02b569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 829967510022ded4b6c2ff57d0aaa473523983c00c6b33f079113976831c0e45
MD5 a9399f400cbdd262d40129ce8a33ff80
BLAKE2b-256 51c5d92fe8b85b81418bd6ce78addd105917dc69aaddb0d27836f82c628bc240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fc42082410c1a3472fea1dc47a05fc299943cfab23c631608ebc16de1c34250d
MD5 0ce093aa2e6202136df7074a0a8c6363
BLAKE2b-256 c1ecea11ffdeb6684f6f2a6032b787dc2732ccb49fa5f94f75ea924b4ac5d6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93303ace8af14efc33a2c9d52f5187f6293fc679ad6926173b8a28f0874e93ad
MD5 26310ae102245c934bb1b5c276b1341e
BLAKE2b-256 c827c5a0f4bd2148ef49ffbfe523e694de6969501d5d4cb33b592184d031471d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41aa9f761bb96badf14f6387f06f78cbdc5a19408a36abf36d48883b9b7ce0bb
MD5 2cd11d5a313d0b3069babe4b506a7447
BLAKE2b-256 824dd17df68cad95b63dd331dd81d580f928f337fbca87b804bc7900d874396a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c91a0c829c37e7ba00144a757ec8d03b04adcbe6a3985489edefb1582c08f715
MD5 a841d522dac5edeeafd95f43d4487918
BLAKE2b-256 2b8d55b8baca5caaec2a4857fdcda2f9a1d2a8046bbab58457eda3ce37458959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6443bc3eaef064b3587a0dd89443ca6405da1eb9512077d24a9733b513860265
MD5 ec230f169c61621b2e6c159c9b8c26b6
BLAKE2b-256 4275043397da50c2640014bbcd14743a882f9e0dba05da260160dd95dc8b88eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cffa585e506ddb046ff763f748319f834c3e3c448ee68b0d4bb9983c44b6406b
MD5 f4ff4092f8f21148acd0ce631fb37bc2
BLAKE2b-256 48278439d03725427b0d9f6ad310ea2850dce625aaca8062c58a2b9fe85f34b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9a8d88eb7b8617fd6f435fc45beaf8cf8bc35b050a0f4831aad24c87bbdb67b4
MD5 9bfdfd207f84d12adba71d248f25d9be
BLAKE2b-256 800d95a9af143e71e2044e55298e501d52bd3752dc2a321f36cd9bdf853866a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cf9de69a64028ba5fd7d0339f407dbc72f41dcc691f4b55561ad29a189dbba35
MD5 2353278a5c42f903396d819f65c023d6
BLAKE2b-256 8bded31bc65bac3dc21ea782c021c562610fc528b67b6c157b6c97d8c075fc8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d7b610f68d841a8110ef4a1365929a469f76c096cc83560dd995caed6d97a7da
MD5 bbb09c61090d705f019a3ec6cca5466d
BLAKE2b-256 f6a8b874792e3e34307b9b53b3f4886fd2a195aa3fe1dc62b52622d4f629b8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f96e3a42b7f6c161fbc4539a9c21f00fc7c5280dd19a4f32f65bdb2ab265d701
MD5 70c3ffa582e748577c9b9cb7492637d2
BLAKE2b-256 d588d0b65288f1988932937a16bee1ca4e9c380401fd30595e8e6e117c9b5292

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e5c0bfcc64a6f9bf9e9df9243ed1ba982de728190754ffd73f6cd5f2680965eb
MD5 b3347268dde0ab2d5f8b64add74ac944
BLAKE2b-256 dbdfda2bf524a856626153cc93fedff26e85912c312c26dd531c9beee9b0daf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdbb61a439c9d27f74cc31670736c6728c3978d710ab3698ff183e1e746c75f1
MD5 9451574a02ec86ec0f67fa6441f3f9ce
BLAKE2b-256 3d3eaeda9203f87f79901d8933e0cecf9766456f4287b8d875fee8b4af389e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e3a02310535c283c65909f9c5ea307d2b936891867076eefb8c02ff2ca6dd6a
MD5 1755351d90ea1d4600cac33e29ff0a57
BLAKE2b-256 f454bf36a0595e17b061296bd200bbe579ffccb2421bc3d1fb67f7cd24d05218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a578be43434a485ed5587f61c157fd2e36c91270d64d81309b8c46858d5c25da
MD5 b26e547a915abc5e9d28a24baed17e19
BLAKE2b-256 06cf27504ccd80a829f858ee63ae185983b2c4001b2419a2cd8d3524c1047404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c49c245ce63e91712053e8795c781689ed524aea6df74f4e2c0e2e0396bb60dc
MD5 b57dc9370b286db7a3ac87e585a257ff
BLAKE2b-256 050da3576e1c744ee29a57f7c71081522a1b2f4bc62faa5225ee72c54cb0a48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32f5827441f5ac0e22ebd7122288bd283c0b553d811370e786f7b6e88433cb7e
MD5 68426582981098ade966fe3dcd358a08
BLAKE2b-256 11bfdaccef2d5809c127bf9d496fea55a2db8b67f75b2e8bb0fc6800f80bc03e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e1717eacaf0dbbf945035309d0d4cc715c3eaf18cd81960c78e2a20ed2fa5b4c
MD5 0be25cace9fdb4b009425545cd0d00bd
BLAKE2b-256 8efa6abcd9e916e3b6a29a25fcc63b9c7b40e91ade0c0937fdada958e2330073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a976f4c2d05e0d46f5a8c3cc6be2a281572a62e822403cb055daaa279e8d2347
MD5 3fd38141dd890c67698104378a6d9603
BLAKE2b-256 d289ad9c5c2538d132614665548f8accf624a0cbf1edbd2578bf0d0c4c3ff1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 41e044de2bb34d71f22d11a6243c6bb751ced37ca4f9c512388bd088064defe9
MD5 e44c841b8552bf8cc3ef7695a09f326b
BLAKE2b-256 92e7cddab657af1f8ef5fb2c388bd4e04023bbf714f758c30a04aaed2775341d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fdf754b2bc7267dbe17707feb3e1a0a36a2955bacdaa2cef0fe05134c27a247d
MD5 1179f1843659ad4c9370ba5c47336903
BLAKE2b-256 9443e0b74b04e0470ecbe42530682fa516d1047adf214df1b1901d8712362772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05ef9473ee6aae0c6027ae484860738f1e73c394c7930dff01099afa67996b2e
MD5 991fd66b61543e63cd5d5d7141b4ad12
BLAKE2b-256 6a1947b3e7a7a3e83dc953f1d82b03d39deabf0981d724098d2fa9d965a6a90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 776e15a53e5ae8d37197c22f6cb4e77088f79538a5af64c0e44325113c91e64b
MD5 1f313ec0736992e848ee4c8be64f821c
BLAKE2b-256 4c1554ce66dafb151afc8682e46b957a4a25b4d67fc5af0046940c02d852aab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 255c6e60226ecaa4310954810b82d94dec7cd0b9642b121566d5b1e8b2b23629
MD5 92247758907edebb11c67b4bb2108fbd
BLAKE2b-256 8f7a9dc5590b3e8ff22d398d38d8b16998295c2cef7b9535ca947cca3928cd17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 202d2c5a0af143d60c0645b749098b5f529c15da34a3418da3bc5675096d1316
MD5 a003c617fd6abb5682a088b55d0ae1fb
BLAKE2b-256 3d4303ffbf326223790eb7ff43d3ad2eaa4744e584de1c8b3db158a57dd0578a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efffc77f4386cf69aeaa8d9bc43168d55ef708dbd06163e1cf4352f1e74544a4
MD5 93d3367642102f102c1d5532262d9a7d
BLAKE2b-256 2e36f04df93cb8f672dd6f32c3191b912ae1f1e0bfc495eeb6adc5720cd1a4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c99eae15dcea2e4ab00c823f80ceaeaba900d3690003821552538ecc689bcd8e
MD5 a529724aaabe4f0725ddc2b0ecb99b3f
BLAKE2b-256 b17c04ddbdfbd8a8914a2ffdbb8d8df2b10f83edc3da8916bec59454666b25f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 aa084c849d4d60537380067610c20f1ebb4688689b9ad01447a7c57afcdbfe41
MD5 17d9a3fee6b99b3b128e9b1c299f9dc1
BLAKE2b-256 8bb6956794d12e538e584589b201cfccf995d28f8348bada7ee83265bbeae6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b7dbc75c4500cae57524af5467581b251399d58b040ad94241c0b49f4f6628a5
MD5 84d8730c7b0faca39a16b6e83883645a
BLAKE2b-256 c6a5d8aa4c5a08ae0272223a955d17b7f81a0a5c1b0d4188650dfcfc5e148618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3f22b625c98043fd56f1a7696757cb50b2e8b9ebe4bb7d7d84a3bd6bc6e1081d
MD5 546d590b05b7e94ef7d46f272c3d3d27
BLAKE2b-256 8a83353c91b9af98ccee4418f77f212f4e5d31824004fecd8d3bde7514abb967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 acfdc52cd33fe37f6ea81cbc692ba14d2a4bb9ecd357ab7560482750fbec4b7f
MD5 7e15ee818a6e095166d43d7d4146fc91
BLAKE2b-256 86ecbdc483f6e0c55f096eb21e961785c5a229b5bcff60a2eb95408e0af3e112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b5dda665641c275600d19cd0b1a9c233c9a011bb8f40ac4e2687a6605f48337
MD5 4856e115fd9083c4352b744fdadb8d87
BLAKE2b-256 9a5b81f9d0679bd4cf8d4fec69c226c38c8b4940b2c7ddb4bb3545103a16730f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d73ce1245d7387c83dccb8632b3f604b4ff846de86f0ec5b0b7226a702b21f7
MD5 c8520a686d6e8a7e11fcbf648995f233
BLAKE2b-256 a73c84a4c1991b8ef048622ebd35a760a1a148dec8c64142e5422544522d9bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca6b7b09cbb3a6d82c55cef068bac6bd6babc0b60554180d9d9d6dd7ccc0b46c
MD5 489548aa19ff9944a8f68eaf16f50254
BLAKE2b-256 d8d826038ae96419892dc1092cb6a73ea61ee13b9fd31c59da46a7d3f39e477e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6928fc41763eb735103e3b362572b3d2dcf8b19d29807b04b612a7c8e0186f96
MD5 4e7e1eebba5a6a0146e455b0574dc52c
BLAKE2b-256 92644074d4e3b573ca26e999dc090bb06146942f3331955eeeaaf7d21c6fdba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 521a2690a8ff26ac21d0597d84d5a25db31a0bc87e562e5833e1affa949c4f9e
MD5 48af45f43e41c097aff9db20a3e17a06
BLAKE2b-256 2f06ed1e79a1bd9724328951f3107839060f774e8309c52631977bec4528482b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcd3e55f17d3c2e8af549f08d799309ddbc073f0823398d944518b8d49a3a6fd
MD5 6ba037170c9a12c3a1e000a879333d36
BLAKE2b-256 698f55eb64b561ca9ab29171b4c3135640164a0e47e4d1c0d2688c2ea9957dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3650aa908eec310ff80a182f1f30852b210fafffff105fe9be6cb4d96934aa4f
MD5 7eae08ae698b93eaa1b906f9fc7db0de
BLAKE2b-256 c1253682dfc3f4a4ed729f7675f45c0d8a5e0557d3dd9e94dab0b66ecb5b62a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 725f892857f0d508dc74f1206ccd507f383064803e1287a53778f148f37c2243
MD5 fcfee47678fb180889cfe3f264e36480
BLAKE2b-256 406401f220104db7e61339df74df77e3be1d43bfdf550143dff663dde580b2dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 52c38d9a50918d83a9441abb5444d2ea32bbaa56b6503d3560ed6ca86796639b
MD5 4095f07b0a6a51210e2f570555a1b32f
BLAKE2b-256 5cb2f45542015c4b58abd46390a9e995666cabdc2f8d3d4eb724d028c982d8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3a06c487b4c4e6c717c9609a989b8babc6e805c3ea8be10f3a74cf5054dbe007
MD5 391f1c907f3e854ad5368aaba4599ff5
BLAKE2b-256 17075ef1beb5b5cbdb783ec86f9712cd75575226163bbf817f64d6efac465334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa3d4ada9fa08480ac921b54b74953cb94bd4e7a4bc11bc273be2e098bf48d62
MD5 59f0624c52fa605d612ea91d400628d1
BLAKE2b-256 a57f86b64a0503e2ca993a402e9acb6ecc1d374d507394ec30cdad0335cc53ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65f77941b6c7f6b7c6df0268be603bfc6089f86d2bafcbe156f07ea71af90b6d
MD5 5e54b7ca79ca79671533d3c7c21fbbe2
BLAKE2b-256 e926262a5573c2616e5684310016ae17d594d250caac898d282edb6d4fe64343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9082d02140b47ae7c12dfc1fb02d90a453be800fb11de5a158aa2c1d9721fe40
MD5 77dcb27c21baabfefe8957472dac42a6
BLAKE2b-256 ff40394894f83ebcd364d86b3d387e42203dafb5efe97cb71f8fedb94b5b9f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b667478fdcd64ca6a7f9b79f430a84769fe5950b6f06b8b3263e0466a2eedd97
MD5 e3d0dc5ca3dbdfede8f6f42b1dc6e715
BLAKE2b-256 8b6d35a4688916417f58089c2edb50d49ef0bbf37c7212c0adc702f80dac4fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13e900e61a9845a792e50ed0bfceaceaaa75dd8ffb42c360c159485be6eb3594
MD5 9bcd2d1c1f642992fb920715b1d69237
BLAKE2b-256 fa33cc456e3bc1cef4f41d39748fb786d005ebb7fc6e8a2d4df5a956894a163c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec89b48e8f8b0d262f53cfa34f92b109384568ce9272f6d4f583860f4f8ec3b8
MD5 d63098ae79ee1508b5c6bbd54d1a04a6
BLAKE2b-256 6aee2eb6120137b0de091a8e6fbf4917385cb702752911a7d8d9ff4707bac6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a0e45d5f87ba980a0b82efbdb09db66c786743fd5520aa9a67f2db388740797
MD5 e172c5a1a1f4740af0e693425468608a
BLAKE2b-256 57360257ea3430a521c92306c81fac000ea0597d4ceb02272dc3a70a9e96a81c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aaa58ce1246adfe460642bd311e7f159445a6708b03c03a173ee46c7b1759b61
MD5 c21ada58ca4c11bf64d12157a8a9a2c2
BLAKE2b-256 44f0d5b6e45516651ea123070323b871343ceecb5834f2387813c3d271217d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bc234e636e00813460ffb48ada39a1c81ee368baf0eeaf12d6b861ba0795bbb7
MD5 ea2e8618760ddbe939b229515f597219
BLAKE2b-256 e763d505aeac2ecd4ace57652b186bd01840f9cdd72b9751146a475517fd1943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f787f50444a4ae7b10e6f26027ac6018d41718aa36f0a4b19ed79d2988df73c7
MD5 9f8347a08378283d5632d373d0279573
BLAKE2b-256 e87880b8f350d7715b2c1bbcbec231b7e8d103a26725604f77b8a52dfc593141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 50aea1a261ec9504355a083d87ba2e0567e261a2c18697dc3ec0c8084ea1d90f
MD5 2eb677d4c3bec5a6c2ae36603651aa17
BLAKE2b-256 12292f3dc4850e6bd8990025cb79c15f308b62b4ce59725a46c086c03d097600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4759f0e59670b6ef4c72af5a77c5db50e5d135add0fbe132e177c71fb0f57d5c
MD5 d3d08f9f503ef3d0d09e9cad4b29b9c6
BLAKE2b-256 f93c729b13c0b96594aeada10f21f020e2211d2c07032599b6be064081693e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33210da5c253a8552b4aaee49267fec45d43d7f91df96d9250b1d6bfff766e69
MD5 7a8c7d35ad8d8fbf9e655c10c0b0f42c
BLAKE2b-256 4ba2328044f25982fb662e71f41e29b26848b24a1b2e96a51cb35032aeed72a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2653a5857981217899970889840e0dd69c0459dc4f772325cf054a18cc6a5dc4
MD5 79825dbb729a313c5e7ae6a447527e36
BLAKE2b-256 03373020447307ebe18f1ba566aff41b2c036de66a45d01edf3c657460d94583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c28871ba3b94ad061c9eeed4bb593b594413933924453dd6d566d27d47744b75
MD5 98af8ab2e312a5c21339ccbe0fd7239c
BLAKE2b-256 f1c41e05062a8da80ecf4d054ef5a0a5f86aa6ced47dce329d57fbda3b672a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3cdbcf87a8c860730b66d2f0b8317414fb36b7b52baf6b61e83cf18861d9481
MD5 0ec94c8e15f6bda401f92fcfaf4bc9ac
BLAKE2b-256 d28f87b14e8ebf490833956d7e634323d04a08aafc1ec7c907c6e8351e6f72d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac643b195b270d77013212219475bb4fe93ec048981e47281990b52e9e295c98
MD5 1bd55fca69a508f63f5e9f2da6b9f0cb
BLAKE2b-256 5425c72e41eace12b206a3412c2ea77732c23a6de30dab05d3d383b0fdebf087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d83d4722cc3bc73d6b5be7113dd1f1f3a1a9b6a9c7e3b2a77ab58aa314b3afa
MD5 6742fe7f0f5dda225421328fe5d72614
BLAKE2b-256 b19e40ff085e1dbb81a8004ac9776edd12b31b9d077380466a27c3d6ce7bac99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67e2d8a416560e1d3f2ab9441d3846fbea3d4b91c21c52b1a774326f85d6e395
MD5 e2b54babd3ee23132d1251634f6294aa
BLAKE2b-256 0b3d8d9028acedab10f88f7d39ba3c48210fe79f9e9f3aecf4536cb762d85042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c884c99020ed5cb5c6c15ee14f3fdf58329ee820ea23dec9eb32ed4f3230aeb
MD5 22486043475a16658ac6a0836cba078a
BLAKE2b-256 fe1b9ecd70aa2f8d9db6adc4003b94108d6329ff1d293be570b4dd4a8dc87a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e5d65c7ecee8afe613f101531039e358518724c8bc7464d08a7eb04aae9d4b4a
MD5 a19f52aae3ab343f80705ccd5e8727b2
BLAKE2b-256 d095b7a9de3517850a4e0cb9c50171d7e10e806f5443bb04241cf907cd235e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5448785d2584878e5422cfc424442e06d23e77582340a51eee1defe664ab298a
MD5 75683f081bffab33b33766b43a0e5a05
BLAKE2b-256 a80d4a7d35e398f01d05ea1e34c730377cb770ea9782ed5cf16bed3b122bce41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ae2852b5b756c9a75e253969c7d5770eb7859078d771cc45acb5f5361f52a2b6
MD5 7eaeae6541eead42a127f98fdd80544e
BLAKE2b-256 757d88b3d5721655a9500f2b4e1246c02c98dc636ba74233877ec2a9d84e19d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f1e14cea1901c99741834ada35e6b4d3966814c489f864e4ff9dd24b2dd85080
MD5 3e21b21af83e06f6c958ffc0d2174799
BLAKE2b-256 561bbb2f55aedbfb826cf5d397312e9b5407ded9f5137acff41d63ddd01d1a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fa553351f70098d626657df2d308f40708f80a60718e572936aca4e1985ce03
MD5 183ad91b9aa6fea19da08ff33a54166d
BLAKE2b-256 07235fea72e9d25d61ee088999a4819dcbeac6a54a409e45f7a1926664770402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdbf92a6569bb0183568c60bb2605724c805e339686f437a32883fc4a019ecd9
MD5 1fc264d36dd08dfbcfb284553779435c
BLAKE2b-256 ff6f3ed9db0342bc9c91c6d47dac26942b50abb1fd0722f908cf0832a8cbf3ee

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