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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ s390x

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

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.28+ i686

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.0a1.tar.gz
Algorithm Hash digest
SHA256 69791d36b666fb98ec8c660efe138465b35ac69968232fb0e913ada7d7a724dc
MD5 3095e96cb4dd97d2905334e13833ff43
BLAKE2b-256 1c412406796d67c29faa53d032246e16a1a6016b1eb9b3a1a95be94f974f1838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cab2cb238cdf61389e1d5e67750f8aa00f860b35dcb7031a1452116289ab1fac
MD5 a8a27b68b2e4b52260f6b8f65ed9b907
BLAKE2b-256 920b4f6bde79ec6132352e9e7b2a9e932d199c4c956771b307efbad9b620f9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 012b182052c4b2dd6c8de0759366929383ef845feb4a40dd8137f5a01b24ae06
MD5 d0c4039eb8dd5244196cf67e05eb449a
BLAKE2b-256 1c5ed554408bc721e19da060be61a9096c6fbc0808eec75e2066a6942c475530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c53a895aef0d2e0b1daf54a3cb7eec634f0beda2a1b4bcd17c0312407cff22f
MD5 265632ea2f5a7f2bcd49cc2bef00041e
BLAKE2b-256 0321283aa085f8fb6d6e3da994005b973d9498a03cb9af0027749b57823b6360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5996ecfc9453444a9b872e25ef755ada74f43409aa35e48a4545d409aea1368
MD5 e573adbeb912fa7e8773643a8538e040
BLAKE2b-256 69191314ca5732c8a559bc9f699d23c14bb3762db1a04fb81a8e721be9d7a1ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6fa34b79c1cb7e3c30733e09b6cf9782952629553bcaa33d1372a3169076e2e
MD5 a9a426e097952b1ca126b0a3f83b1024
BLAKE2b-256 18d69852b4654fd71c2ec63179456c08ad0e49a0e2edd4104d39ea9d4086a7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 88773c13f0767a704267e9b4940e0d44e9e6a077d75d97a6448085740a570660
MD5 ab8b3d61a2b56debc5fd61c708571fa1
BLAKE2b-256 8a3c123d92883c709be01f3ccae5c6e2025fbfbaacfd60abf43f6a7f888e3897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8b56234d856eff9b373561354f8bb8eb5cf600387599a86e3c7b2d44d2bc0982
MD5 0fb1d1414ca83619573dc8336f63c99a
BLAKE2b-256 8118801c092492a24911aa5a45ac320e88c6961367168829d40a39b3c201475e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2141e935f5a423c12116e24c01d46b8a2723a41b70e03432e0fcb421dcd078bf
MD5 a58331278642e95d2fd166fa96ba1c74
BLAKE2b-256 086be753b5b8e49523e87fbd80813990db3063fc35e0beb3bce9842d34804bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e9f6458ff27f8887455c1a2a1f699ee6a07f26e1e7486bfd0420a71bed5a19ca
MD5 49c7f9c0bfb1e0ce5ba02df8ac562306
BLAKE2b-256 ba7a72011978911b636fb41ef4b67888f9fa49ed71faac50b2f63de42a96b745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4e851b590ff574c03c1e2ee3c8cb13efae6818c34ec5b61e4e31be1715ec3f3
MD5 db7dcdfea9885d8f17293d9271a5fce1
BLAKE2b-256 5550a0e18a93731a48cf1c26f1bdba486e386395c64c2be464240b81c8d089cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84c5e2efaa918884076a187fede492e56158438caeaa9842335210fe93403a28
MD5 d1b794c81289e0c76acd4574fd6c87b0
BLAKE2b-256 d8b66f1c4d4fdab319d5857302bfdba8ead3bb5409ce20ab233951c4588e7308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ee4187152484d9aced10d71e0d5bbe673a7eaeb13ab6f0fb5f6d650482a96bc
MD5 2a074fc1a5fff5416bc7a1c67493deda
BLAKE2b-256 6381a4139e6f23ebaf61d96c14468504f9bc151a52b29470493894b6c597b7a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4ec0f78a01498e6868e7aeb07dee28de04ab7edb9c4bb4c66d90900451fe43d
MD5 af02314612bd0aafb16d8b22a64b98ab
BLAKE2b-256 7605dc19c5ccaae2e00c39fa4c771ab3f25be3520d256deaf778fc51ebd11bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf1cae74587977788feb3ac3dabbe07f3ce76c913d19522ca36aa70ac7cea6a2
MD5 acdf505b460007f5ef96d238490b9ed9
BLAKE2b-256 0a11f07bf803aa9c6f684dcfef66b5e124b7dfbe74ba503575d70d29d9a727ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 447ac858c804ac0bfe16bb67251cd7d5c305bdb0d13666ccef6bef781d8ce26b
MD5 39f9f66d62a9c199fe333c07067979ac
BLAKE2b-256 a69560a307d341703487dc8879b14c34aa895350abcd19811d8e34eb1a9a6a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dd2f708f21c7d68908b5684f12a673667d701edcea4a1b4032a7ce049b38c0ea
MD5 e937b0a03d4be82f321a454b2eff9e13
BLAKE2b-256 a288f385e0a8d885e45735a1ca29e4ed4ff307415d2571195d43a14d101de89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9a7f0b7cc57a897d0fce76a827a11fe43ac9b4fd2a4dd9f8f42254c300996d2e
MD5 1553e399ce78bad91b91eb581743f04d
BLAKE2b-256 17d837c1b6da2648025f9ecd68f5e9b30b2fb25ee36ba5116fb74705d828e819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5c84c5fcad1ede8b35ae4e67f316854c059221d198409976076279b5c6e3b01
MD5 36d320e87b3f4a1b843496d33538d4a3
BLAKE2b-256 4c1b9203743741580283b59f928bc15cda2ec74735cebe9cfc4f73c2fcb15613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5fca8be06dafc4a8ba09429a4d356473aa8cf4cce7f3b5a4dee14d71a706241c
MD5 710e8ab6915ab7c62d36fef382ca4a13
BLAKE2b-256 bc7367edda0311ba64cfe2a6f3fc61c52d1ed7f778a9d6e3b70ddb80d6caffac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 941edc3898021e79e9151784c7a47286ffa70773269047374c7d85f39595feca
MD5 aa3bcdec8cf3ace2cb24e1802a7c4cf7
BLAKE2b-256 c29604ca21afeaa1d3e165c5d210fc1c3016c6db26893439fc5fc635bfa9ac94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66801e227e34b0c2b668af83645c9dd0065be4706d23213e2b80ba5b1270b83b
MD5 fd790ea675d646d08424dd598ff186cd
BLAKE2b-256 fc5e077e61def501eee5fa0f1c5e7b0adef4aaaf39be102d288d69dd0591d18a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69ea0c569b7d97a43b772330034f1f34092c5aedfdf299391b9eb83986a5fa61
MD5 8098e306f29dffb6a3d247b7c286ca73
BLAKE2b-256 b6dff019cfa6df1466e7b75834d4bb6ff4c8c5aa6fe49459c56458538329b7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19b9bab7e98aedf963b8963c859d37258bd298d4c496ea93d87213f58ab24ee6
MD5 3e5b10d16355fb285b7fc50ed9ff910a
BLAKE2b-256 d489d9b9ef220b1549edbcfeda87c4967d81b43f59df4bd357467cdb964642d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c40ce5449eb1143cc54beeb78575011c2e7a9939728ba3562ba57cb35af398a6
MD5 bcbae8a15f8495d392a12a4f32a1ce94
BLAKE2b-256 631c1413e75c43c83855512bed1755140756324157410f7efe4c789e00abbde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6f0fce7937719dd108d477f0d4e240fb5c9de5eb73cd3ae44cbdb00adb308573
MD5 c3a836d76ebf4ab40326bda6d59286f4
BLAKE2b-256 973525821784e2399cf096b0aa7c30be7e7268a210abef41047c48212942b122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7eb2bae17ec001de168129344724f3be0b1f95bec9cac7bc3532dbb024152b24
MD5 a2ff48cbdc1ce1d97ac4d58443507d37
BLAKE2b-256 397d6462ba277eed70dc1eb366073601c863cfeed4c7c7d90db337aeb7f18716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1b8b878709ba7adfac3476bfcc23c66ff731fa704ce97437a2538de1b0278837
MD5 771289a91ce87436b66d0e2a2ca5469f
BLAKE2b-256 6f702da2c91d8633bc816a44d15cac6135ad73ec78c14db33055809f113f2da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9eeb862df01ab305fbf801658474f271e2f9a40dca5a2a3b3a719aa0bd4a5a1f
MD5 1a0d5a297eefd4c7fa47b121849d46ef
BLAKE2b-256 326298099e536c3e61a34a495de437776dddfde9fc01f6aa73668172d4d7d80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dce2ec2c24da576cba0bd0bbe0649b6d7d7b6896dd53e66f0058c5b01437f259
MD5 380f7a450a2f4dee706791cd42fc76c3
BLAKE2b-256 9d8210839d9dd3056a23a7474b53834261f13d4d755f1550195dbc77d43774b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8bb1caa38444751dc7f0fd96fa68dca18cba609c67594a924d35120a3eb5d0b
MD5 db7c0e0c199b46e46fb574aaaf7fad4a
BLAKE2b-256 a73b2e3814732691ea1b90374cdd9ab968e2812bf1a3019dd43c3ab2ca6365e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1987bf46b7bf786ecbd6d70c42268a5bc087ec0fee8243fb91f2f5ff32fc2f66
MD5 53f9dc64a2fb99f1f3bf0d0c34433b4a
BLAKE2b-256 a317b2f4a30f708d0694f131ee33e11317af13ef6fe4356ef67b2ef4ab7f6c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e4e89f314115a3985209cbc3f4a811ec59e2d82a68cfed5972594f1ebccb38e
MD5 d393abc0a00db70c9fde7ce8e31c193b
BLAKE2b-256 d29480f525e1a88a950e21cfb7912507f3f16ab45ab4ef90512b587a89eb7b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e09c12ec41420d69cd453631c985cd985b5bf0be7b51a366e938d5bc2e7f8174
MD5 9b5a0d609d53d1e150a1abb34e9faa56
BLAKE2b-256 e59f96ab2d56f9105f3ca58fc441853f6a95c1ec5ce31ed63b3e95c731011d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6db6dd024881c5e86415b5e9e62e2d64e84e73fd8777e926a75dd020af1b6596
MD5 6a151cc65680e24a289297a8598258e2
BLAKE2b-256 a1a6b5ca494ff68ab3792dd526636058729f8d90d7fd7c13b6541ee5078ce9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b5c92302e1bbd454bb4689caa02b78c2770a07e6d9c68b9c7431005cd2229447
MD5 74ba39596676e68b47e6884ab52c4fbf
BLAKE2b-256 1b8392eca12011469418781890ac2e19cfe21b501921afda09ad54941f58564f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 414a46f5dd8f9f9dd5d0eb1fe9cf1f57203061acca625e98fe3f7807f2c2cd28
MD5 7e4b314917912561fdac407bb5b52d34
BLAKE2b-256 b43760d4b6bfa72fb7517e4adcf642a7039342c30972c26f39bd4bb535050eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 719fcc3faa27aaea6a54b8bfae24ab7777a5e0ef7271b852ca592ba98ee18d74
MD5 b889d0806dbee94fe1a2123c0afc71f2
BLAKE2b-256 a2b9908b8cc4c533a177bcdb0a276a6ceb1a4ef2629d52bc850922e677152c40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 690109d660772244274d9f98edb1a3130c92ea71f01f9ce174daa0364e0b2468
MD5 3f17607f480a94a045c98f31d8a357e8
BLAKE2b-256 981c592177a6235b570482e93bd2c2ce6f95b5c15599c85ef0b5598948e7f342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f4e1ee3f418af029cd7ad2b33295cef6c0532220a62720ea52e476788953ece9
MD5 92544c351a1fafba55af7739ba49f638
BLAKE2b-256 e1f89932633cc8720a6aafbaac4d5f88c5bf2840a153f9a7e72972b4962279dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3144ef8cc0bf51a3d117d89adfda2d251d96268103592e82617c47e5a2b653e2
MD5 10fe42fa94324b61164eb0dc3b6d2511
BLAKE2b-256 b163a297aae22563ed25e1c8e4d2017e119450d50662d87001bf574866c7f08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 128fb79c2d5cc11736bde68dd31900357cd29a27e5eae7c5c409dae469652487
MD5 78be1d81340c60ce7d08aef6101f3099
BLAKE2b-256 0fc57cc92d3852f91931c0812bb1efc875f9a994a604d0b69b226f3459b5da3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e70a1383b2e7076ff87d519513c247bc6d309c8830bdffe182032babad96c3b
MD5 4a4359320ab9224d8cb8f628cac42de6
BLAKE2b-256 38a16b1007433c211a033c0780c3c06ff13fb8e038399f10d881ad4fcd7af0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9b6b7a9d2a52eadc71f160ec8fba401bf31a5c8772fc1527f1f1768493de76f
MD5 39c6bff0d044a38ad58fd0177b77ff8b
BLAKE2b-256 2e95040cefae4e7c72cce41a2aa232ac4b4659b2042d4ca4be0951b156071a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6fb7672a40c128e0d70b1aa1ce557fa2bbd917b7f618fc7e7cc1472bec3bba8b
MD5 4e9d48e4a80d7467888cdf030385c769
BLAKE2b-256 93d07c5172a1c1173351775ae0140386c6ab916c7cbed1be023e2ad9a7a4d025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e830143261454497128a395e094f97124b24a4a327d7697dfad515bd8a11b805
MD5 c532634d733b6ce4d8b016501dfb0115
BLAKE2b-256 16d004574a9a6e99b7f9a4faf9d9a4c974051403328614afc2aebe965ba41f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 26945d7abadff7a18a08d890cf2f6ee76d3d1a1abd6e58dce2038cd2da7544d8
MD5 710761db864eff4c0cb0bb3ab1900478
BLAKE2b-256 84048a022dd84614420d25b5553b85e280ff4ccacaef93ff62cab0b2c40fd253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7919208e6c8e515a69dbec7fb382a495fcd7857095840ff6d79022bd75d53157
MD5 6e957996618b48ea73443f95d74d7c7b
BLAKE2b-256 fef2e6ad01c3a6b1a7ad9eb4dc1a4b9419f02bc5b79bc7a23d863e9dfd91475c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1be29bca4fb91b929ab1d7ea9a2d396ef762cae6ccd2a765453ed0256e1e2fcd
MD5 78f783664142ad6d7a51ae34107e5ea2
BLAKE2b-256 763c93bdbb51dffe12d5e4f957ab1a7a7110ad12872c623cba97c9adcf8824f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc233f140269862b31aca369b1385734f7ab41592e33007fb28fd0687b3a29c5
MD5 6dad4deffac47fd2445c75b85d91d401
BLAKE2b-256 7cafeb3fbc5afc6d4c39029b48ea778ed49487a274379cb761a4e23e48e72fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0109fb4177e972332719a88ced36c8464cb4e279e8eb76ba02a67e425579b2bf
MD5 6e55b41d481976ef070a95747dd66862
BLAKE2b-256 e995fbf04ba3697ce81966b17d7b28758156d8eb882bffe663839efef76a0fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea05f940c759cd467d91a4133066295fd887f5727025828bd9913b4abe03715e
MD5 af39da30558366dc01a759dea4d31fc6
BLAKE2b-256 d4976545ae9fd1c1c7ce65da120fc4b529b7a4ef6250bf1e0946c28c4186ce7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4c1d99b9c9b008f7fafb4b63e3973fbc593cf8d633c6da1ee78222f3ccffa68
MD5 5b2a9faa1d17848e8cd9b6e08d9d4967
BLAKE2b-256 bcf032ec54f66c3b032336e7381544e8706b527caf4b97a0dbed2ae66e0834d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d082f957f77d2f73baaebda86187fbeb9a7f599a3594d471a469d36000684cb9
MD5 3550579f8f717f3a2c9f21372c2aab82
BLAKE2b-256 289f3bd1b96c5805857968fd59d6e14cb525879e864b9058e42fbd61276eecc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ae5eacb4137fd0af576716dc09e8e5ebef3c1e2ba3ef2213ddc480c6f883fdf
MD5 7b08b4f86fd615c127675d79ae5a1243
BLAKE2b-256 447aad948b82a00c9ed83042fd111c8f195c0c7a4197f17a518b5efbc3258c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdf0e77334661ed8cf76a34f5ac82964f22cc954481d52f1278bca5f8ac36a3b
MD5 d10433e19790b08a12ed6bd937ed294c
BLAKE2b-256 6603bafa884b8d9604e2b6f52612a6c472dcc43e57454afd24fd045074de8185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82d5ac0102e92012b1e7074538877f5aa21d9082ccf7c6a2b5ff91573a1852e0
MD5 06dfaae3df34c4847e100d1edf1789e2
BLAKE2b-256 212d91958eca6de8ad35093b28fc8238deebe3e34a018d344b96c6b78c9b0c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7566f14b551c3b024da23600f929f94ca302ca2ec9e1557683972e15ce9a8ae9
MD5 0f0a68dcfda8e815abc9adf29a02eb9d
BLAKE2b-256 195a94b488d2cf559312c07916d67dc846cfd5ecdeec61941aac9b71c0109389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c04cbee26fb20525c631d83cbfca04447494fa838acde4bbf6858cce78a544e3
MD5 525cfb46fce9b8fe935ecd2265e58a61
BLAKE2b-256 8a4ec5b530f4b87b03d398bffba8ee4e1f235e16e7f4781118866f1cdbcff76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7a739d5bc484f24f2f5c38e97d44308aabac4fe6578b2b9727ec84d69d1b4852
MD5 53b857df0abe9481b3ed076c598cdbcd
BLAKE2b-256 4411925f8593f1cde9e9be2a2c3abda0223137480776fe6b450bdf8cd9a911b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3fb4d10d4dede93a1c34d47cc6d1aa55b749a32a356508dc0d5a36a9c9330aae
MD5 0c61b47854ea6f8879f4fb54d5222ce7
BLAKE2b-256 45da957d3394698fc665a177572ee568b1fbf366ac55d9460d0f1b8f4074adef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcb834b6e11d46639d2d71d1e34dd0cfda6c56eee5672cda784fc70b6d991c31
MD5 ca2662064b0883d083ae97deecf88145
BLAKE2b-256 157f1a0ac7567e7c333164e2baed183765a470de313b2a21c59d00ea66cb89f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cea7e1f53167f0b3412fc66117aa8c58b96b32d925dd970977ba4293dc1e2c8
MD5 a47e13b12b38f48f14aafb2e0920b1b0
BLAKE2b-256 56a11134cb9e9a25fde68bd03e1a9a46652a1b55c8c55ea9a2d2979e4d4683fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3b86232293f63e8214dfde425f41d1fbe0061004ea471ef62f09c024de61af4
MD5 70fc36bd70744f0b28fe28bc78d6ce86
BLAKE2b-256 3d4c184e478237477ea77d0951424f992b98ac68955f3e6f2c076ef40cca212d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc26cca193da7f336d1e03bafe7e09c97a90445ba7d24aa9f178a38bf872e77a
MD5 975ef4442291df3d5276a89c019e2329
BLAKE2b-256 33e3a32e9075ac53ac058d17f816583c4dc0e14c6d763c77546d299cf9282b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05fcc71803d54259f8edbb499b34da5e9ddfdb1df74191c11cc60eda6a75cf4a
MD5 4f3e4f649ee9286c3133dc2d6fa89c8e
BLAKE2b-256 3563a4f9c0b485a95bd0013018b2b18c0a32396b16a9302e16dd999356922e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca1ad6f7dcd0bcc3e3276125e2fd212b7f2d7ea6e4d0c640d0311c4860a7939c
MD5 6429a451ce88bcec223cd81add3a7ca4
BLAKE2b-256 9242e76546e6715574ce639fc278a6d60f03d24aa0fccf19650fb3fafa348e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bc82a445a06e4db62e308443b555e696989abb401539c627e508704c2f88877
MD5 9e77cb97d5c47f0cb45622cdfa7ed047
BLAKE2b-256 9c3975147ad9d3826ce030121f6d720459821b5f18a5057e2edd0012f62164f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87e79e1358b1e1ed2ef98fbc4ac07cbbf0325ea6c117f81567c26e2105baa57a
MD5 accdc4e196dbc8489c91d78990ea6c1b
BLAKE2b-256 9aa825b281fca358ff6562e42dfb9d4dd0f3abb640587d51b4055950d8f24ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3d3ee46dc8b79f40a978a53f5e760572901a2c14acfcb05665c153fd3f236d2d
MD5 9ab89b036a260b95c78c42adcf626d76
BLAKE2b-256 fd0de715113df40cb5048cc7e895e23dd7c3bca30839b1a43584c5d2db7a6d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b15587882166d9472b3c613bfadc47973cfe28fdb923c41a59a41232b712a36b
MD5 8ad11d83d0fa644004c3bf9e0885f92e
BLAKE2b-256 8c6b5f87789dad51c018a1c0ff86deb777c7cce08343c1f7f06518c2daca96d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1c2e493df203c5156fac7dc9bc3a3de5ad33209db181b3150d7fb860f65f6e81
MD5 78b41f6174ba6b87621e87d4997176e5
BLAKE2b-256 b98343ed1567b21b8a2be8fc0e3d5265516e4d05e87c19ae91bca4ed4b9c322d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1736dad04a5bb1061aa6547bff8e2cbc1c0600938a161dec97858b2cb7f82e9f
MD5 3fc51ebd761d976dff780b48230c9042
BLAKE2b-256 09732066d77d1c6ec718eedfa23ede4cad6aa158c66a0e7ea6137de40e50c412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88d85e44dc35b482af4c3caedbca70511cdca390e518a5ec8b205dce8d2fc376
MD5 c8dc370f730f0771ac84c6b5ac305d64
BLAKE2b-256 790a20740a59ce188b1b4b4c91fa3960ff9c38620e10003db1907a6153d7f87d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.0a1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 780d77003293036c8f58e3c5748e2983b8b38a6e39b85e9f82eb5f5375649da6
MD5 6c38fed97430295af8b90b44ef1ec9f3
BLAKE2b-256 03821e25d843c0359bed322f7b75342c34c9b994e38a5b79c56f4910f4ba76e7

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