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.1.tar.gz (46.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.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (729.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (763.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (817.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (729.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (560.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (571.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (707.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (592.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (546.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (542.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl (731.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl (763.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl (815.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl (730.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl (572.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (708.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl (544.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl (542.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp314-cp314-win_amd64.whl (401.6 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (730.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.3.1-cp314-cp314-musllinux_1_2_i686.whl (762.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl (815.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (729.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl (562.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl (573.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl (708.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp314-cp314-manylinux_2_28_i686.whl (592.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl (544.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl (541.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (490.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl (731.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl (762.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl (815.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl (732.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl (572.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (709.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl (544.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl (544.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pythermite-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (728.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.3.1-cp313-cp313-musllinux_1_2_i686.whl (760.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl (815.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (729.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl (559.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl (572.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl (708.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp313-cp313-manylinux_2_28_i686.whl (590.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl (543.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl (541.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (490.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

pythermite-0.3.1-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.1-cp312-cp312-musllinux_1_2_i686.whl (760.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (815.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (729.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl (559.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl (572.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl (708.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp312-cp312-manylinux_2_28_i686.whl (590.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl (543.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl (541.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (490.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.3.1-cp311-cp311-win_amd64.whl (400.7 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (731.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (763.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (815.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (731.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl (562.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl (569.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl (706.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.3.1-cp311-cp311-manylinux_2_28_i686.whl (592.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl (544.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl (543.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (492.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.3.1.tar.gz
Algorithm Hash digest
SHA256 71f6e609874b28ed12608fc6c72bf8a2d803dd4cbf5c5b3892fb3859544981c4
MD5 d67ec367db89e61e4fa063b38d382367
BLAKE2b-256 c39d7910ec16c4c879e15b0aa2011c1b0e4588f04c47d328819de96e96aa4293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eaea81a72355cad4741b3c7e00150635bf84fec83078f13a876c849e7a9bf3aa
MD5 fa6c6b7f6f521d193763d21ae6799d73
BLAKE2b-256 e3dedcbcff2cd0c17abece802e07654362fbc2bd1ccb35dfe3ecf9bdfafd036d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2decdb73ccbd164ea7a4606e49651a8797ecf0d2ab2e7c2ad4c0207e978e43d
MD5 8dc3db48cf4ab5a482da02b2a64432fc
BLAKE2b-256 76622399a6376380b14047adbb3ae287861de3cca863f620f1c7a162b00253ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 535ac6c689ca1111f0e3c8329e427d93141707b32c51fd4a8b0f5aab2462f662
MD5 8ae775cd948e82e822b383622c0c9bc9
BLAKE2b-256 eba78be88bb97cba8519b1820b00b1f91ea0a7e85418cff18b6aa41b07f7923d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd2572d61f976589895ff8be10bb75dceaa62854b3805f27b94169a6ba3a8739
MD5 2a7b8dcd60533b33234ff03b21b91db8
BLAKE2b-256 21551e5940fc9b1cad345dbd384dc2e9d73747eec7d174cb6c7df13ca9e34852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff1554cad0939265b77d76f77d450a4c0495cf567db1b25b0e1d1c648e6970d1
MD5 bc81d9df4c39541d893103cb4f9fbc99
BLAKE2b-256 28054a74923ac77358aa0e12dd048d1f19e3f6d62b78211de780c1202f2863ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a0e8bd794db4ca82157ce268cea6eb43083acda4a5f011068a174c24cd0369f
MD5 3f0b4295c9cd80ec6cf42c9555c17d16
BLAKE2b-256 6c1e2c7ce4db249f180d4143b2960ef59bffb86dd347fd98c5eff51ed2e24531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1798e3d75680928a03874f229fc48546d6311c583b835713b476dc6fe02a8dac
MD5 ee746643f85f6e92eba9bcda1c063312
BLAKE2b-256 e154a2d66f616d328b617cf3227b4ac23360ab6dad473cc550feae23d69e9e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 760505d4fe2f06bf2b7630278b2573bb7dd70fe82c45df3459618b142446235d
MD5 a067f4af7f69938bcbe8ecbe40cf380c
BLAKE2b-256 cb64a46cbdb5591c05c48dc624b2fc1a596da0e55f22b2187d793e81a86e9b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1bce50d468124fe91a6f9d4fbd06f898944cd9433a72c0b76d24b1ef87966e97
MD5 eab20d2f4255538fe7204f5b17a137d4
BLAKE2b-256 78fd82d0b1854b54b363ccac9ecf9703b9a630dac32e08e82ca1bd154f63e245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51bba8e1b45dc1fd5badf798f3068cb78b63243dcd031a57006c8499c0bcd97d
MD5 a5dadd957ad7165a1fe2375b9434d5aa
BLAKE2b-256 32de2f6b7bda9167144854b6553a49651222b7b1a8257d97ef6b249ff665dd59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e83e0c13d462bc1fc33a2267f9ea822ac0636680fccc3b4d458d3eb358aa08e
MD5 961e5fb68487dbf2594f6cedd5c01c11
BLAKE2b-256 94f37fa7e9bae366fc08218ad8febf1b9e57b1fa29bd3323dcb73def4391e7a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d61804ea348a0819f5b25da9f6ee12b5c3f3adb207f01661067e4d0ff19cfdc7
MD5 aec11f741cbe1466b2b47d4493d1d88e
BLAKE2b-256 5cefa18da23c82d64d9a3b06692153954ea9943ff735f3fffcf996fb9112f5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb0a37e1194b67bc8583ccd37d284d725eb178110631ca531de7745576df77a3
MD5 bce28a62cd7c2ef5cb756fc4678dbc6f
BLAKE2b-256 5eb229e92783f1ad8ce56e97c800242e9b1afb00bbb25187d62af46514eca8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a28b1cfa1e069248f9d874b24ad4c896b42030bbeab671cf9d6b04eee41a776d
MD5 edbd727aa0261bc7f3aab112c6332301
BLAKE2b-256 e75338da86c158de20e3ba86e4347ee95b0bbf34fd10b9fc2fa4ab9cffe59c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b9a9a27fefdec6aa9b76d4de8b4148d3f8b4f6f16a86a529486a8f5f520e6c8e
MD5 bd705d54da450581f5aa64917169a35e
BLAKE2b-256 a108203f3add54c8f9a27ea80ce5367236709c67bb6f3394d3117280c6aac372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4f2ebdeb5ae6a715c221ef934ef98e33201f904b4d56876aa7fa2b9011d86885
MD5 deb72971b681d14ef99b0b90331badff
BLAKE2b-256 b4d47ac2054a53ae984ae2f2cce74de608708421d9af82b3bd4e393aee3c1d7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7896a7220dd3154606167dc209fdc425b1b0aa97b144ae2b8a324cfa2510181c
MD5 71a515cf0e7141977fd92257fd82a47e
BLAKE2b-256 22f1d1d8ac8a9165632362444b6f1edcb500d9655600e1a59ecd5d285debb689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a18a94ca7a26f85f22128cbe5739eca1d07cea0378fa1daba1023e8efd8ac90
MD5 4507554d6ce4d3507e3d4f49f4783afe
BLAKE2b-256 0b408af897e5ce0160acf3e54e66c045b91a62c55193280ab8e50ccd0bdcc57e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e20f8a27e9d2e147d3411e8a57a8e8b0f3601c04d9cb84096200a99c70ead76a
MD5 8c49923efa975b5e87bc8d6efd537c3b
BLAKE2b-256 295b6d7218fc94ba1343b3066400afd8f25db986242dea2849d3f56044030a42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 136ac0eb947f593873eae3287d71c36f7b2076adddd3d5cf754c20f6a6741973
MD5 64d60c2a57a6e9f8dc214c7cc83be2fe
BLAKE2b-256 3e2df60560655c8407995e66f4f1d324d3c9dda454eb8a73d06f265d9b5b3be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d811893aa053d995f87911c7f5918eda0bbf4d878bc1da822d810c5c411bf341
MD5 0486f634fe37683c468da4d949fbed4b
BLAKE2b-256 4037072db858f75babf4d430835b4ba49b522b20c24897fbfb4c65979c33b38e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94cd862566e8d9bc44474883bb7adf99a121b85c31010b880a1b065eb849f728
MD5 81df4c7ef460633fed143ace092e9a45
BLAKE2b-256 dda577bf645cadd86caa5f2bd1aeb6f701a039e6012cdb654b7ea693e3a1e3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6333dfbdb9e72ca5a33c13458823c74ab5e6a15eb04837e7ee2e065b950e935e
MD5 15605a5d1770892cc9dfecd46a18bebd
BLAKE2b-256 a1e040f92c3325d6b72f16bc62250ead3a47d77800362e7093518513edc7f404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bea3884e426110b754dc938876505cbd9984ebe428f8c7fc5310f04941d51fed
MD5 712d1eb40c90b4e3f1d6d47b8864e636
BLAKE2b-256 8f46209d694cc315e9d37418f5ab27f847efdd7f3d41e10b4d0b3cca779bb6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0670ecae7b5da5634e0417f34e0a51ca866597cf6a21fd8b0ebfd0ba537ecf55
MD5 4973aecf8d0047a957a6691a0f661d2c
BLAKE2b-256 970d1473679f10ebd174442e4206beac8f3e1b797646ea3b12c979a22a429947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dc60b3f106ea83637607e28e37e4602ccbd8d5bfa32d09fa139d07824e30b85d
MD5 6abc2f73e03ba9ab6b565bdbf845498e
BLAKE2b-256 ba5e8abf96ed9c0da204c036431e21a917fbeced3ca4a4cab8f8b88e449c00fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 263cb9cff82930a0e7cc40454ee667c1400c5327b6e928108d160dbdfe0f8b54
MD5 81dcc1f332a2541bf5648e7d0444d704
BLAKE2b-256 55846fbdb802b0c2f1da910d5abdb2405b368183194e432d445344e303472291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e9e12bae81bef2c5e263418c998794ebd0638b8a2fb6105bb537bc3a4325bfe2
MD5 fa7be2222ef014d2dac794c6dd5878cf
BLAKE2b-256 cb68133a52214fbd102eb095777725ec53418fb75cbcc0913960faa0a270d7c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91cf81dcd568b682bb41d97d8744f26ea4eed98136f4c05212425f4a23473bd6
MD5 8da4127bdf088b083f863ae45bcef5c0
BLAKE2b-256 ea675cd20bf72a45f61244cab0958345e9387bbefae98463440dbc8b108deb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93329464145bb9afe4bb02b406423d81e32280508d474763936b2e0fa901590a
MD5 d3833e9ab5365eff0af3b55f754358ff
BLAKE2b-256 230f75031fef99ec1f3d1d7e5d8f795c9c38b4b234dfdb7ab23cc829a1513008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43fda27b82a175cb370d95d8673aac9cbc747489fe9644c54a43b447dcd4cacf
MD5 86b15840717d77d98dd8fd4f73025b27
BLAKE2b-256 ae1d2543ad9c4ddc1440093a4477d6ad75843fea238ab9b164a5da250b02d8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 505fa1e5dbf73e10dd21791d99b8c7e755cd7062f83898b6e6e9d4f07774e5c4
MD5 37fabdbbfa7bc1f7313b3c8ebe7c6ca6
BLAKE2b-256 26affe05334edb53c1da30a92e2fc9a9386771477e0daaff0b05dc34e2c6d910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd1739dfb6311300904139373ca32a4a79ac7dccf49eb2d8ca3f3ed39a83d179
MD5 fe02f3c729a8efdf56b69110fd8b1bcc
BLAKE2b-256 4aaa4f73c54b0faa2c41476975c7652010fbd337eac7306315f8a8940f66e2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b221558d4f66b68f9b789a2984eac283a7d4ca3bac1e5765ff72ddf0f8825389
MD5 ed03cc3f095cdee4b4466abb2dca9ab0
BLAKE2b-256 7b0204cae11c9cf8f1d54a6a4b31fe6d00dbdcda6e9041568ef8b07f68c0a771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 003827c45805da9eaa6276784605a0d5cf2e08e4c1eca25fa7b12055a8aa1a98
MD5 424140922e2785f850d83457a68df131
BLAKE2b-256 90bfe112278704bb9b3a1cc337e2af32404afcb6673489b13742a9b7c9a7f893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 234c931a9e14636d10738c010462d608551210728f711035e57e9a0c1ca74f42
MD5 9a9a5bb83938bd4d670ab8e59ba9c5ab
BLAKE2b-256 c777bce48c13617828b264b245ba2e08bc6c851aa9cc1df3eb17423111afdfec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9addf42641ac85348dc2f60f0985220115adbc5f2262aac721d5be10ae42404a
MD5 fd94d7effd37046bb274ba18b1c8a6c9
BLAKE2b-256 9e6c39d7a40dd0f8e2a449cec0622fd51a429354060303bedea60b9368d16c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73fe8f31fd33a23511ff159d9db490a43aa1452bce7260cde003f52a01798443
MD5 f0999cab2adcce559b6108ef58862a5b
BLAKE2b-256 331967910753768d08d7e881dc54d427b48f9a54042fe2029bda8bd7e5bbf19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fc9237d36709fba5770b0c711a18948f7b4c04b6763b3a98a469002b87aade1
MD5 f158c7c686ac143324f32463cad54ed5
BLAKE2b-256 8f2c8d0856e33fb8108a798c00a7aca72a8f658c36e109fa6201f183917e3275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e9fded9fc77071064d37ac1c700c7e6f564113fc4de233e7d48c1032aa3a27c
MD5 12e135c001f17e0fffc2ae970ef2ff3a
BLAKE2b-256 8d3630e2510d9cc9f94897f34e6ddd54abbed661e6c5e935423ee677be7cc820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e3a7799fafa14c87f92c282c03d53616a54852dbc415b2a6168c54bedfd8250
MD5 dcb7a896b1fbd89ede0301bee95f4eab
BLAKE2b-256 4daa7f013079584dbfa60fff52498e26b8777f80fd826c191e703c1645cc4a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68a85dad0ac0b41d32e7b91a5554883eaa4d54dc821d77181481e185e2a2601c
MD5 a19487cc18900a4646ce0af9780415f6
BLAKE2b-256 631f9577315b014b7f1fe63211bca556709d890ef96142410b521f5e5e11d264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03396cccc708c8f68c78d8e1803337ae9b59527448aa3549b6cc378429cb22cb
MD5 7e171ecd3627f667b36e3d3d9019d6a0
BLAKE2b-256 d9784a0cea429b2988c459ae6353ddc00c07229e4ac953993446527f6d356391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1653d2d5b3d079b4545d4b5e7d1b0c2fad0041fcdc476c05e07dfeec53a21a9c
MD5 d19385fc98cff73fc547ad048381be34
BLAKE2b-256 ccff1a30e997d48f3cfba08559e1e7dca9d3c88523d6f4a5c97bd662a0a286bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 64f5fa2102bcb6db0669416a19cb38635ecca11e5bcdca315dddea22519ae0da
MD5 b3479e44b4d82f533107fd205292d147
BLAKE2b-256 1a307de3fa58d009cb2c00dbe78651fffb110c90b2874c05db4311bc41ea81d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 252c38ec314be8d5ab31cbcf23d6db0c0b06e2e43f363d7b3bf47fc5b74d20c2
MD5 c25d3c420be7fcd826a91fdc778a134c
BLAKE2b-256 7922bb6001815092694a6f300150172d2d564cb0589f122ac0788a8103a32a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f4edf52af8c71cc50d138159d58e6e19520e267b3257491b62e9410df33fc737
MD5 3e047fae010543a9ae91b475161ff437
BLAKE2b-256 1441bfe6b5f76fdc6eda3f6f4d55bfadedda0f42d266bec76f724bac690671c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6c3ed67546e8ca748b6c265a2ec71747da8dd52a6155dbbe0fcef150339496d9
MD5 d322524076a08af109aea1ebd30b6473
BLAKE2b-256 b959b62bc9fd0377add227fb4fdc45110eb94b425c2729e6a25472f644549d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05b219adbd625e2a5e40de642a917abe1c74abf39d3c669facb98d909e884ebf
MD5 1d409efcb02b8d840f6e67f0b2754b65
BLAKE2b-256 f165fc1a7e9b8844501e22a4f63c7af4145fe57ba12262fc7f762f939dc53789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c29af9a43f39598ea4fc6f59fe8e5707eb9f802c4638ac3985fbaa2a47d4bda6
MD5 e9d64986493e4a3867f9f3a8ceda3ab7
BLAKE2b-256 648859cb85457b1c19a717970c85d1fd8e91ebe074b17059e69e8f4eee054b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6af197bea2f91eb173eac96cc7f96255bf79864fb165267bbd85d3c7ea240d8f
MD5 54afcf18d1c7ccd02eeaf8bb5ee49aa2
BLAKE2b-256 87820e01ba90d5b28fd67650dbc922a559bb1e8241c58676b53c3336110f0171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4040c6a300efcdd68efc033bf7e1a72d3845333f789e1b8d0585260ed255dbfb
MD5 07c5e16c49ed88794cbc300c4d2880e4
BLAKE2b-256 fb01c1e0da6d24ad7446c0fb8f1305fbd96e560899845eba8dc9db60c14cce37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a1bead7e6d5b970f4bdcea59975d057557a1678078c850e95ffbc04cf6f1196
MD5 143a02565652fc50a10c3ccdf867dda9
BLAKE2b-256 2fee3872f75f223067f76cf5aabce55725d1db133b0dc48c29d107ad0c0ea667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 43e6e4ed56c5be514ce2fb017b0f434ef129e354dcb0fb76a2b4ff7b68c71a48
MD5 fa8cf3c37faac2e6a1a7ba72bec4c8dc
BLAKE2b-256 eb37457d1e38db2eea9703b398df44e5c3685373f210706cf3050dace4b9c278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65b097f6fb3aecea54c97c6dd7facc961294e29f357b3ff2a0d7274bb4da210a
MD5 349f90932f33325cb973aea871623196
BLAKE2b-256 d26be65d94acdfd282eb4ca49483f31ff589673ef0255c6a40c51df079599d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec49e2bf925e63756dcc7ba611340edfdc312325e8a285b46efdd9e4509c4efa
MD5 6e014d08fa048034e58d03161c5275e4
BLAKE2b-256 048a01ca272cca6daf89b2e289f39b5f9e8547045c1dfc63eda73950f88ca4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cc3e55e2ef47c1f88d1833838fa68c9eff04299fd5594efd380f9ac701d6ee33
MD5 91d018ec0a0744d31fff3942c5ca214a
BLAKE2b-256 bc1de5c103ff3ea4d75bacc4e5bf2bca3da4b364be6331c0cebba4f55f256ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d31b907ccea2f8d9c5950d52f9e97e222b919df3f617b098a7fad91be1b76390
MD5 42a104960e4a73295e40daeb3a4674b7
BLAKE2b-256 86af78bc1e51a9180dad34831ee322ed03d535a729af2b7f5c9a68cad6f2fb66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 22b0a7dc448389439da2f28a666082484318dfa2a35bde080739ee113973559c
MD5 5a6d8884627910111162d917d914d62f
BLAKE2b-256 1d2528cdeb3655d8d4c3b2fa01f860b47e9a04c12bc6810f4cb5f579da2703ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 018bde5b9e37f71356340d47724ca5dce9abb0a506918c9371ab4a600f691ac9
MD5 13660b5ddd83d3dac613bc20b9cfb14a
BLAKE2b-256 cb7574b973061215c13cdcad8b4c0d973c234c17373079d7e99bc9a383accc27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0dd23b3dab53612b0ec68dd9ba7e9e3eac0fc1e68ad00f32a0585e232285884
MD5 6ba574368593485a58f229d7cf74ad9f
BLAKE2b-256 356ef566f90f53c8fc394a56fe9432c7ea3521870e939341010097e72da94842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6e94063a4cb112198f4c3cbb5f47997f62e207d2307002004143bae84d8eb40
MD5 7bf68f8fdcacfef451cb8de18ff8cdc6
BLAKE2b-256 d99c5d4056f6613b022dd8f352e77e8379f59999b4d9d4d2f85f8ee891bd0c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f0b8866b8320a2f603c64c5e90db0c1f3f294d24366c08f96b9845bae1ab7aa3
MD5 d0df8ee12f2007761d56b5b80408ad59
BLAKE2b-256 34fe27fa3aa8d4360cdf952f53400ae4d883531f6f7507c8b91fb80f69111b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b01ea2d7ba6e76f2dfa096d7c2d0691c60026677658bc3419fc61a13981e410
MD5 da3927d88cb98b1f7636de5caf9c4154
BLAKE2b-256 bdd1d68d8bcc997bceb3d1e0cc68ab24c7a2ac3ad4b4c32d70f7a1f2387ba0cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 01241d9da03c067b881f9e4d359e808ec6fc450dabf7c3346639a627748b2fd6
MD5 2adbd6c83675c3987e32ed5c23342500
BLAKE2b-256 2fbe9da961c6c4adbb3f277c6df75fd22af1964068126bc9344ce344295f3719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f51c3b725e1d84a209322f147cc3d58b5028d0d62741c6c784c5fa4a71a28e02
MD5 d950c21f9365cdf9e45c4bd4dad39327
BLAKE2b-256 1c02ff23d2bac2acf7f3043556bbd62c889c3b8283879e11071f8ec3a3ab9587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e3367157871c34339203dbe6a9ff1a4c8a6770da2c2119fe92324ee3e20fa71
MD5 f8e00f65b6f8f5768945e7c6844310d6
BLAKE2b-256 22e572e97bd65ecb2ffb85510418b49550073f7f1fe467df1378a0228d2ed3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ae879b7a14f051cf8c6caaf03d13b64b3c9aa110e0b22767ed0fa57464abffe
MD5 28d0032e14b25cb0fe996df53339ab20
BLAKE2b-256 c4af13fe48a9e4253faec069b2e059d81972fa75d1ba93aa4b7312202b1d88ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2551564db071dd39f62acdb7da87e6a32b2349974a61c97d8ca1dfe4986a5b44
MD5 693106bad313ee89749c8075df0945c4
BLAKE2b-256 e5c2fcfd9190bf74c3589d2081f0c41347c35b8102ed5955a8218cbedf2986b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 50ebc957b8baa3168a0dbfcb2c0bc17fc29c99a7108c8d3305682a7e398c9ba7
MD5 e481b931b1375b87ce2812b68a6d7218
BLAKE2b-256 d128ca17da7cf55b06aa9eaf2974fbcce0a210ffab3e1dbc15ac17cb7dfaf87e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1b1d0eb9e4fbd09f572fd9e3a7caaae7ea78befce87da0972c53a7c7c445e0b9
MD5 a3d9de4e63fd52d30f0e3ecd30a419a5
BLAKE2b-256 21b921a22bde0104b7dbbb573bd6bfc82f8c724f7c2db55047d2a2139a0c92b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f91b50dd7ad6a1e18ace78905e8c95827da104ec9a9a82091d598296d8189ead
MD5 5d617a4bf367f579479a1b3ccc7be244
BLAKE2b-256 fcae78985979cb920dd15067c9543718cc7b4ced9219b8d21b99d63d2740fdbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62108a968940910221625daff54476b2b160b61cbb2150f251dff1139d589020
MD5 f24f9294f785c5011fe43b60c16d29ae
BLAKE2b-256 c459cfc00ff0498f5e74a62e164077be34db45e9b163ccc2e7eb8ea62e2b2b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2b282f6b948b17ce99e682afefd09a7f441931e8ab81679d7877eee4f059780
MD5 505bd3b49fcda103daee7b79c7d80e23
BLAKE2b-256 cce780cf1cdc736b5b8d18dbc20e8d1265a295e15b0ff335923a94fc38ba2283

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