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.4.1.tar.gz (53.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.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (808.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (851.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (872.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (774.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (602.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (609.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (751.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl (648.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (597.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (587.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (806.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl (849.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl (865.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (770.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl (604.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl (744.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl (592.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl (582.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp314-cp314-win_amd64.whl (433.9 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (807.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp314-cp314-musllinux_1_2_i686.whl (851.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl (867.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (771.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl (609.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl (749.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp314-cp314-manylinux_2_28_i686.whl (648.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl (594.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl (584.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (529.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (805.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl (849.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl (865.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (770.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp313-cp313t-manylinux_2_28_s390x.whl (604.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp313-cp313t-manylinux_2_28_ppc64le.whl (744.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp313-cp313t-manylinux_2_28_armv7l.whl (592.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl (583.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp313-cp313-win_amd64.whl (430.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (805.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp313-cp313-musllinux_1_2_i686.whl (850.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl (867.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (771.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl (600.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl (607.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl (748.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp313-cp313-manylinux_2_28_i686.whl (645.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl (594.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl (583.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (530.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.4.1-cp312-cp312-win_amd64.whl (430.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (806.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp312-cp312-musllinux_1_2_i686.whl (850.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl (867.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (771.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl (600.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl (607.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl (749.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp312-cp312-manylinux_2_28_i686.whl (646.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl (594.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl (584.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (530.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.4.1-cp311-cp311-win_amd64.whl (432.4 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (804.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.4.1-cp311-cp311-musllinux_1_2_i686.whl (849.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl (866.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (770.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl (599.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl (607.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl (751.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.4.1-cp311-cp311-manylinux_2_28_i686.whl (646.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl (593.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl (582.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (534.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.4.1.tar.gz
Algorithm Hash digest
SHA256 2fd29187cce1b3524e3622a0482caa1c4076a3bc8eea64769ae7ca01995bbc5d
MD5 063a2e3321352d2b9d09b5f7e7613ac8
BLAKE2b-256 42b14ac62e208966adc776d2bdcc72780bb7e0957eee21fd18c6ac8df749d7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5465233f2f4d18732238e2a965ccd8c06cf1d0ba50282ccc394d88cfb2c9ab74
MD5 79792c21a15dabf400b796795cfc7cad
BLAKE2b-256 665011400c5be49c5809fb534f0c1480571a6160b457130f536f46045946c7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70307a2a9d9f80f6fbba156cf237d9ecf8f78e773f9de335c48b552118d6b09e
MD5 e9f676b31123d3e852a1fb43c6afa25c
BLAKE2b-256 f7097e953e9c7055c515f417a0efcf97d111be6555f0a32fce57097196f92bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4bb7e075519314d55ca890b30cbac9feb486910d862492d57f357fac8457485
MD5 74909f62a3d216aaa8a540d8115e1160
BLAKE2b-256 4125bd6713141792b60e56f6bd757f14f040206d6b8196edbbcdb9756bc0c561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fd63c933414a978c82f349975cf1c0b212db48f4bc2012e6d1badec5da3c2e5
MD5 ed29027cb5caadc69357f50cf4345d54
BLAKE2b-256 39e75289095dc998fa15cd2266554453fbe9184495eee286546558e93c5c5dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ad9e6362437ae33381e8e767d3f0ce72007993226d24b77968129036bbd714c
MD5 7c1f55485348cd7726924637a9cab862
BLAKE2b-256 2715bb049f424dad90211a9f736cc94f34fbe8b8fedda2a48dc491bfbe8a54d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98ab382c3990eedb59a44ad6645fe5d6a70f3f48aece6f2cdaa92ed755154fae
MD5 f7943ea813dfc2bf57e2dc49e06e3b23
BLAKE2b-256 d85f05d26d0e3be11fc43465c223ac9c0964813fa09754a65b6932ea8980cbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f1773b37f66b639d67c0e480aa1804c3ed3accad15d1b72cef64604fde3b6534
MD5 83b2ba1ae27d15e0fabae1414f25817e
BLAKE2b-256 97c85728f888241086bf9c1013518414a08ab67b6cb5b18f130e14ec98427495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 42d56d149b378ca8e6be86a743d7453c5bfac63d0a4b244a39eeea2cbb27f1a2
MD5 ce879b55b27279cd23693dcb81cb5179
BLAKE2b-256 3af7cf8088f50ec120185f3ccb5d222fc924e4ce13e1d687188de77885920a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 040466afb71dc64ba2b54640d6ae939c018a61d3427dec36318d5e427096333e
MD5 fd1403ea42c5587b3ecdab6c561e05c9
BLAKE2b-256 69b36fec2331a5f60a79123a8dacbe29bf49b9dd4ad2eb4423db3496e445ead3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a6103ec9e34821cc63ac9873b0bd54dd36618dcabd2ea91a1fdfae5c39ae659
MD5 672ec50d6a2a1b00d9534c2a352d2297
BLAKE2b-256 a2ea6844951ad7f9e634bd66a597b6d6f1982112ee8cdb538ade70a1448a8151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ff6f192c243c49a9fb5cd28ea07c5f0a57398d560ac3ca13a6bb6837af4b647
MD5 45790062d274e8bd53aeb86ffbd792ab
BLAKE2b-256 fd691724e949e40ab424514abf1ead823051ee0eede60d88dc498da7c97b954f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc20b2d45815ad6c8da1c956f592569a6d39feba23ce970f808701d6fe30b442
MD5 4e4d3cf2e98b9ccb6c2e40cd7a6e3f4e
BLAKE2b-256 19d933f71d860262e4f67316bf29ea6ef44e47deea17014734f4220b1d4b4674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 355d1703b1003e4dca62314924ce737153bb3e0cdb509f664484223f44634b1b
MD5 9322ab17e2afbf0d4d57890bb0b5e8cc
BLAKE2b-256 d57c640a1f8fb051423b74d62ae350d56d0e0b97ebe30900f4dcba88504d0186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51fe518f79ca8fbaefac59e5e058dc194b88963b2988d18c5eb1cef27c0f5d5d
MD5 08b710c64f0dfd39d83242d830e5f323
BLAKE2b-256 9bb1d93c62f2591bd9339e102454d802fe664c293a1198b5aed8d5d7d4ae7d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fcc56942e92248da33dc451f45add6fec719e1398c7d484734d75689fa5edafd
MD5 44ee8d399486c21f340bc06b47388938
BLAKE2b-256 d70db78b7419fd9181475aac569940686d4548adbf7d13164a6341860e06b919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e3dd54272a6e8e05454f1747829e8dafde5c3daa0aeece7ca97677f25b6a16df
MD5 358f2eb7c2f1497d98446a458faff4b6
BLAKE2b-256 cc0e8ae794e088ad8a1f137b745abc8dc30125b3604eee0bd101483c8f785906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b71ee75c76668de5539f05d84aea6911fd504d78aff377e5991dea8991caf900
MD5 f2e0ab192d281fc13e65e21f25f3b629
BLAKE2b-256 8c8e1509aa9a0dc6e0e60ac0a2fc75e4d4187fed5da580e381d284ccc9e05662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c44401878da725f7c080f802caeaea793f4790e98ca8b4c56c5667d48fb800f
MD5 f6f53d76886c8d837f66b84f2a75332f
BLAKE2b-256 ded97466b5012d760ea23214e4722ac83579ca60059911e8ecc32bebb0ed4cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 704455938036155ebcdd341d3162ee0a4b6459e3f3acaa4a6c7414e2e71b729b
MD5 8cb398be5623f378c0f3ce8232427d1f
BLAKE2b-256 0a24aa908ea8bf7afa5f9c6655529d76c18f08b41818afe3970f392631447982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 999ef138b18001a359ed3547665103f72d677899c9afeb42ef4c9b36b463238b
MD5 8a8489f853e533805f3463921fd6287c
BLAKE2b-256 6d70b6fc8b2f5ef3a7e6593050a5a910df2d139de5691af094341805587c88ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a36d6ed583f9d6e4ef44a1211a85a5f85beed62043c18d11e8336ba545969ddc
MD5 a651d7ff303f795e13f0eb6a9a855e93
BLAKE2b-256 b2888dad9b373620f309e7813c94c5b284c52b464eaad9c96179683f9184592d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6b8be66ee6951228709163578a999ef1e82d63d9aef0868fd54ffce0c1b24bc
MD5 8102590b395cfb6941e47f2966ab9473
BLAKE2b-256 5dd060e925bfeefd75e4f727819354f430e4aec4914b2f7ff2ac87bcf5ccfb94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1685b8c1c0435b899e9e863711805dd0ec19380d707f572b3a408c2972a250af
MD5 2c812e9100638ed9febe381e5a4d9b03
BLAKE2b-256 ba7609bba5548dd40b822fdc33451cd43a7e2b73aaa333fd2e40e33512599aa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80adde7c935798c602fd0249d6806bb2aef8c1b9cdeda5c17683fae071d97aec
MD5 dc6fad9be4bab4a3022370651fb1b85a
BLAKE2b-256 b3473991d842382bf1405dd0a716616570ad95c091e24eb213422e10ce12603b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a51eb211de4d283bae955e4fc58f9b0d7b2e85ec0b28bc17e02d73dee59eb710
MD5 e1e960f337f88a733b694d914c5a7fb5
BLAKE2b-256 63a4236026dd84daab54d3e45842443f329d854a8f38bd9d79fc889dec2f0809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 97ea7c3316c8b57fa61141bae2c370526936c0bff4451c73538e95348b102aed
MD5 5b952f9fa1574ad370211cda1ef21fd1
BLAKE2b-256 b864b0f435828105ab174c793f4b118ea356748eebe36f4a3e13932ac839cb67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 fbd10307d44eb888c06c7375ccb32ded25f801ce3f04d3822489141734ffac89
MD5 e977918ec767731e63e40a096601cf6c
BLAKE2b-256 3b3bc958ad141c56429836d27b920749455a8f33b3cfbd6b9af890d832745853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 76cc10a16dff98ce9b8275e0addc598e374d57d406dabbb78d011790b78434e9
MD5 43857b7e72900b0ddc5e47c8c6cb0e96
BLAKE2b-256 1fa4f154b145059cb2d49cc1e9c091b0d576bf7e382e27d6e81836e15e7873de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c417cbd61ef31d1b5e068c7d5fbcbb6c10b2e20c742b966b46f810122e55ac06
MD5 9685bcae943803afc515f6e17484e0f9
BLAKE2b-256 68d66586ef6286313e1f18bf41fe9570b2fdc8a7a37ff1fb6903e31859a1d0cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 447cc27fe3ae6eb9c6e4dc81555bc732c29f5dd7c2c8cb147bb70d9aa9dc8261
MD5 6d59ece2af03cc38e23db3efce833364
BLAKE2b-256 7e5994521b849177c9b10c2b5b9775026c211bdbc1b41f5e39bac26ec7ff434c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3a7c234325c78902dcf8abde7af6c095213d34089373eb8dea341b5a371e402
MD5 ba1ff0c0932230994bee8efeebdad541
BLAKE2b-256 0086f32fbc4d8d2952d1eefd812a14a28221b01dff19849c4291a47f947be9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae827ad131c364ee1fa48133838df8b7efc830eb3f81702ba4b97b9ce0909a6c
MD5 ac279e224c6615e55bae215acd549149
BLAKE2b-256 7d7c93399ca3d84d04f65c4cbd0247427d1be3426ebec3109ee9008f82fbce61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d678bc6b8d6bbb09d06a24096b4a9f4b8642a24008073a5b6ee379fb6766270
MD5 dc3f239a19bec065658b8de77e8aa4f2
BLAKE2b-256 1a139d85729aec4d98a01fa3b355349530411320c82d62a8358c4a7596f0338f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65eb015607eb0f9ae2f9f06414e731cfdbf91d69190284b7638bac1bfc9463ac
MD5 f28b457031241c133758a3c007a54bb9
BLAKE2b-256 9f5d40d314dda882f5e6fe29ec1a42aa44b04f8cbeef3230269ac2bcf4020585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 76b3b2755fbf74556324de25bb14d757e8037d20d184f530a48c36b2c0587a48
MD5 3f41e5252beb4a867e649518fe1bbd88
BLAKE2b-256 d6613f2e349f925ff0f4b718f76bdb652e5e2c5fb9baa55d0ba7625e7972a4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 612da213c98e58b5ed56a04a878d5d8676ba404860d18728f5b78a908d3adfa4
MD5 cc5f32d58b2da2fd4650cc0a3b73c369
BLAKE2b-256 8ca571369d24737f0178d36e4ec6392c0803163231ce7699e33bd37b814d962e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0582ea4c1cab619ea292a0c7572826ea188f5c1d2758e7f6dd77200e297014bb
MD5 dc0de50cfa95b448e10ccde657799335
BLAKE2b-256 8e80a33ef1f1dd7ca93275b15ebc1d27557ad9f4ff685d0fb30ee2d89fd11e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbe9ef35db4778cd660ddc6d2197d42ac89b54c5989597beb4ae47473e14aea2
MD5 f1be55867253c6f7cac58bad8cf160b2
BLAKE2b-256 27a6bbd7d8c3439c5ab49f57fe7ee9031453f61c24ec2002b60e5eab2a7ee8b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a705b2fd637a3c7c9ff273c8aec8d0120273112c83f990122e041152734d6d87
MD5 2c1d91e26a7ba3512b62ec8e3b071c48
BLAKE2b-256 3521f42bfa6ac432ef461746c89c8dfc9d9970d2f169a8a3880ced73c06a9d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ade46fffc5c0569c01cd500781846470aa5af0bf225a0e3ceddc8902980ec738
MD5 65e8c3273eec83d9e996c288f4d8258b
BLAKE2b-256 75b7d4a231f55abee3230a2d34d563e72446221485991605d5de355e04433b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c76ca22ddb4b187b3eb66c1de569fb5e9456c9722f67c9e1ae73d7f603e207e
MD5 0822779762ec61832dd9ff0083189608
BLAKE2b-256 224d7076246bfbde3e1cd8341478a33593e796f7587bc60a1326e0c723f9ad49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59bb7526dfa0a7a4255bd6ef910ce4bc45574079cefb7e3498cd895fe590591f
MD5 4c1d813dc38bc53478fc5603a2290cba
BLAKE2b-256 e300ba17a8b48572bd966d14d6674f8c2c19017785d228942a5c0a30a8b360b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25eb8f67c7c58c9a92677ecc09d61fb118c64c45943250859c2513055d7dd2ea
MD5 273cff5274ef2a4885e2731fbf6e006e
BLAKE2b-256 270be64c01ebe018de2748fa312e83cf6fbf2b57ab3861d1b02e9d58ea364751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8e693199384994821ac7e95366deee82eae438eb633453f10735c7e314c5c0b
MD5 960e60a74b9b8e0c0b9a563456eec4f4
BLAKE2b-256 cfc6c66a43303eb2026fc6cdfc819d4e6673a46e0d0b94b8d0246821f73611f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 73d392df29320aeba982c1eecb0c27bbe81bca9db956364d21f549da18c2cc5a
MD5 d2d64f83e97aa67e3dba7f09cfc2b093
BLAKE2b-256 e377c2aaa18d59eb5f1058cd320153dbb640c1de2835ca86bd6b6f822529254c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f7de291d5739405e5f6689f6b98ddbc12bc98ddae453bfcd2ff4cf4e254ae23f
MD5 dee8c0f93aa78c256f1e444013a6cf8e
BLAKE2b-256 f1cec8d4c016db213aed85997e85d7423b50776d9e479fe9f07f455e6d1f0d53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8697de2e1663c31fb3bc9d8512db6f51a8d68f46cb7478849f10d0d8df2eeb0e
MD5 8b98399561bee07f981744cdc758f8cf
BLAKE2b-256 5b3157168dfa0beff3fe7a5fcf1982f4451bd3321643daf06bffd2da1764fbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 29f7eba39450101a013879d9f0a981ce38e950a8df0721295cde192d3c3d3fa6
MD5 8c7e4051ad94c2c1b6dc85ccecf48269
BLAKE2b-256 dee2db2b8af79e51ad4e5631538f1764cf7c343e0616cf753d7535785837b6d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ee0468b11a4bed91429a2ee0d996549003380e931ff6f81b953365995528204
MD5 d25dbf9d7bc6707533cd5433f1d98175
BLAKE2b-256 f1caec5dc9a9924e71cd86de201b71a84b77b296ad7a08e8ebb9bd45edf51a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4150c992f47012931ab830716cb2447f28e3cce7141555a09c475604605b6dc9
MD5 3ef4ce2a5f76f84deef889b4a89f09cd
BLAKE2b-256 4a16348be9b84928e1aa6db0b6e911a3eff55572633728795b5f63389d33d153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e57c97ac83fedcf92bf63e984909ae40308f314abab1cfd3fcfbeddea1cbe197
MD5 c67fa5178871d80df97ffdd02766b6a8
BLAKE2b-256 e9a791dcbce803eefe899297d68d9a5691ba89d9ec1d9194409a373f15d9f894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2476c30ecaa62c36a5fd1af64fe97a2e13b977e370e668f7adcd59e4feb6a2b0
MD5 29ebd213feed7a3f39424af814c7b774
BLAKE2b-256 bf23c4c1e62d6cba2eb4e3289868b089d4b4768981b2628a4e39d1d13c52f939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1af2da4b0fb6945255bb70f746119b5c0350cd931df7733d9cab41197d1d5d3c
MD5 996e8bf5675cd79a825976bb4dc14ce3
BLAKE2b-256 eeb170358c27ed889ecb3fac752725ea13a2ac4bd680bd69ad05b66bee780fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 566d2ddf2e114a8fa6168e1950127674ff90b41375fb4fb18b1be2daca05d401
MD5 e0931ea0cb2ceb13905f254a1b5db99e
BLAKE2b-256 9afa2d95d742ef1fb91266c4b2c7a30b26b7e0a0818a99cc347f17c53d0a7ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 739b94340dd0803b1e5e8dab73d78d6e75722e877c5c2d84dd71ef574468cb4f
MD5 cc949eb3e768dc65ab01d6c2406a99ba
BLAKE2b-256 f06ef15cc4f0cc6692cfb43196a24f488f4e1ecad1b2cd0c038326722a5866ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7f41f5fcdda5c15566cee50f02b4487a886bc92f28faf3217450582a009867a
MD5 85bf081d42c17ee48ab4c3ee91dbe099
BLAKE2b-256 ed6baa76563e1227cb8aa8476c9b0532dba1554a883b9631898273dbeba9b5c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 39e954a633d35a8bd65c636cb2d3f1606db137294ae9eed5543eaed62c69a7b1
MD5 6d4c187101acb8d1d7297878ac75d434
BLAKE2b-256 7608822bbd45b785f7b4e10db09b717bb1c0ec56d7a498c2e8fb4576139ef17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b20552d34a575d08bcc8d14df2945b71bf7560fdd5ccf2d4b3d00006fd0974b6
MD5 ab67ef1ba76c858ba49ec7030cd5a01d
BLAKE2b-256 631ac0105e5472370172dc897b6548b587e132f2ffa65c0cbc0b1cc3e308190e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dd5ebb93499e74edee8d8765f72001bc4727df432098924cbd54f5abf924d671
MD5 7924f9ff04bac5e991b5ac363a1d6507
BLAKE2b-256 073382fff5d32b1c41ed3f7b63003fe9882469dbef593659e59b0c53bfdac55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b52331e00eb8078c950b43d431d276582fd6aea03f97134aec50339650b337ba
MD5 30097b28b89254b8982adb9ddacb552c
BLAKE2b-256 941f8af98e33b6b9132ab14361791321bff62e2009fdaf970074f758a06e5d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a063216a8e06905721da7b681804e54da885856986598773685b797bcf0a402
MD5 23708b1c15cff59bec1d34b3cf87a6a3
BLAKE2b-256 7ec7cb8521a5616ca1a1e8ac93f30309ba96939d25bb652e68f50071fa790df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4ef55e4ce637dea0d5b48c5ba3610c0684278eda55670b6576d806ecbcd7fb
MD5 d441c481de57756de3cecd0ce5100c70
BLAKE2b-256 5ecd8d82e0c324b153e84e7dd7b08ee9bc55de9f790ea6dc628ab3688721952e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 761cee13920585f025578c7568b36f8272ab1db82a99a032c6603b508b53c03a
MD5 7d22e63143032af0ccb1db823a8e15ee
BLAKE2b-256 887fd29a0314e5190342fd7406e23ce2f8cfb2e4a870c4db0f5a803e6a51dccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b09d0e1b67630b1df5207cc5b782abee0f5b9b91bbb928aa6cc96af615fde863
MD5 82d559c8f1e3b4a3baf6b4f0ba49577c
BLAKE2b-256 4b488b510aa95c5f5e8298dd19afb3cac08e6eb728d2530084cab0a2dd52df40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a554ca614dbe49c0841121d263c6461a8ba6cb985ae7a530c0855a7d6430ca32
MD5 ba14e9ee67855b20cdd086da8ece6892
BLAKE2b-256 a189dd83ff6b49ec9a7a63ae42cdd3ab13c15ecfa23ad190d4b35a3e16682fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab09313b79dad1495b0935acab63028e9b8815a67885b6cd10ea249609bcfa41
MD5 38e3c4cb832d6ab8c7f7ccda5bc0a74a
BLAKE2b-256 16aea846f439dc0e67c131cdb9d4965a97f11095ae230b05264011544df155a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e5af2cb9d5eb22101f3f4a59eebeed958736c5cf9a99f1a41d0455906d971ae
MD5 efbec3352fbd7015e46221474e30c1a0
BLAKE2b-256 a7051fdab1130d0fa894a8a71814dc7922f637858661d75feae113fec1fecd7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bec91263e2dd48eaf210e199d3fff8b3a52547ade59a65bb153d8f2ae012829e
MD5 d83edb86b908b62a66d5b76b82bc3d62
BLAKE2b-256 6211d6052345cc0816a2b8b498d794248b5cca76b35c7dd4f06290a05c767af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2e8de51a543039b20697707a7181fa450f69b4d93dd5ad5b71d73fff6424b39d
MD5 bee4543cf422edd31c0d5b720173cd7c
BLAKE2b-256 5c507dde68c009aea2c5f9f980ee25b21861e66e7c33d41446173517a64dd191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ead15775fcf8dd804840ea58290d761f1d2cf6dae37e9dd5a8d2a97d1ac671c5
MD5 ffd72ef538b2543634bd7fa038551c1d
BLAKE2b-256 db7584861b44f4544c2a3271f3b433eef90e899eb8e496ef508e1c582b356c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e0e05436bc4d18434c3b1b77dae46fe2de7b4a4062e33c0569dd510e17f1d1d4
MD5 aa53d3b3cd4524b8105c05a662c0ef9e
BLAKE2b-256 1334083efbd6891176c3cac0dcea10aed593f2dadfaf00d908e97ac1371a38f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d051ddaa66d42756c589797887fe78455e4641cf447539c808e148d1c7335ccd
MD5 177c8d83e395f3a937b2561fdeee54df
BLAKE2b-256 8312e92659e885e918c3e68efb6a44617bb1b1470d0fcfa4dfa9919ccf6e1dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4827696d53da6babb903618ddc4331c7b4ae1cf78c446ecc4c0c812dd3f44353
MD5 cdc3291bed5763e9c40efd79835c654e
BLAKE2b-256 2c38723e47793203878d065f0d4c67239588d0aaf2515df26586535c498d7657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5c82a8be9100046601b98ceb11e993f3159e6c35d7b81f1068721d0180d20b
MD5 5b3bab5ee2e3e9c3fe46ce349d0aaec8
BLAKE2b-256 b74d1994305462337676515f4867ec6f67fd26cb1c6b7cc18b078c0ec4d57846

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