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.3.tar.gz (19.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (697.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (720.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (764.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (650.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (486.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (511.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (552.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl (507.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (485.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (468.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl (717.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl (760.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl (646.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp314-cp314t-manylinux_2_28_s390x.whl (508.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp314-cp314t-manylinux_2_28_ppc64le.whl (549.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp314-cp314t-manylinux_2_28_armv7l.whl (481.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp314-cp314t-manylinux_2_28_aarch64.whl (464.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp314-cp314-win_amd64.whl (367.2 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl (694.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp314-cp314-musllinux_1_2_i686.whl (718.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl (762.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl (647.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl (483.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.3-cp314-cp314-manylinux_2_28_s390x.whl (509.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp314-cp314-manylinux_2_28_ppc64le.whl (549.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp314-cp314-manylinux_2_28_i686.whl (505.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.3-cp314-cp314-manylinux_2_28_armv7l.whl (482.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl (465.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp314-cp314-macosx_11_0_arm64.whl (445.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl (694.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl (717.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pythermite-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl (760.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl (646.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp313-cp313t-manylinux_2_28_s390x.whl (507.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp313-cp313t-manylinux_2_28_ppc64le.whl (548.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp313-cp313t-manylinux_2_28_armv7l.whl (481.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp313-cp313t-manylinux_2_28_aarch64.whl (464.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp313-cp313-win_amd64.whl (367.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl (694.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp313-cp313-musllinux_1_2_i686.whl (718.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl (762.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl (647.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl (483.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.3-cp313-cp313-manylinux_2_28_s390x.whl (509.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp313-cp313-manylinux_2_28_ppc64le.whl (549.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp313-cp313-manylinux_2_28_i686.whl (505.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.3-cp313-cp313-manylinux_2_28_armv7l.whl (482.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl (465.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp313-cp313-macosx_11_0_arm64.whl (445.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.3-cp312-cp312-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl (694.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp312-cp312-musllinux_1_2_i686.whl (718.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl (762.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl (647.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl (484.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.3-cp312-cp312-manylinux_2_28_s390x.whl (509.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp312-cp312-manylinux_2_28_ppc64le.whl (550.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp312-cp312-manylinux_2_28_i686.whl (505.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.3-cp312-cp312-manylinux_2_28_armv7l.whl (483.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl (465.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (445.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.3-cp311-cp311-win_amd64.whl (365.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl (696.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.3-cp311-cp311-musllinux_1_2_i686.whl (719.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl (764.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl (649.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl (485.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.3-cp311-cp311-manylinux_2_28_s390x.whl (510.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.3-cp311-cp311-manylinux_2_28_ppc64le.whl (552.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.3-cp311-cp311-manylinux_2_28_i686.whl (506.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.3-cp311-cp311-manylinux_2_28_armv7l.whl (484.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl (467.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (445.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.3.tar.gz
Algorithm Hash digest
SHA256 651617aee9923fd7e9cf15d3453f8479685f9b8a449446203d0b2f41e2beaa7d
MD5 676a1335ed92e58604193deb02bc52b8
BLAKE2b-256 488b6df85a368d0ba70238941911fecc8c6f4376982f9af2f48363c6ed846a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5176ace5bc3a99943a9f53e5ff201efe2708d1025c5016c07398e9c133b7440
MD5 87f8ed1d02c4fdd72f2ce5d7925fecfd
BLAKE2b-256 f7064718d11c04586828a7d41110602360bcdcab50702b79ffc44b8f0438baf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad53077afe21f2831662f1a8bd2bd01e5772d19ab0a87205503094a6b5ecb83e
MD5 ef40653c6efbb838d1eb278f8f1a35c1
BLAKE2b-256 cb59ea6c57c2a308e467e98f57bb09dda277f9883f55a01a453c1c6f510ff1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4d033e9faf2aabe8584065523acda3928ca3af255acf5db900b7191dc2d39e2
MD5 44775fb5aec3410c214fd9d9870c891a
BLAKE2b-256 49de0033581f2c5197c2f4032f78748a4adc68aee1294a11b37a2fdce2b7b602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5663b19d5314495574aac28e25f0f0869e6193a537bed01b394d61a0133349c7
MD5 3f4ee9ea51b153b474b0b394155e35cc
BLAKE2b-256 3d3231cf2901ade53bbdf8bec28b2b2dd060d506b5fabf61e546ff39550dbbf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc1906952375fcaa8816c95abac271ae36bfa54cb40dab6a7c2432b2a4d21cbb
MD5 ce51647eda72b7927b0cf67a0a28d21e
BLAKE2b-256 d9832d2f86629f7afce647e3bf6f1ad45405a2e4f5e6346f859c5484c9041a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 edc50a1bb8ed57b2d006951f1f1119924b241c2ae4747ec33319f3ada13e63b0
MD5 1ee4f85d8e4f76644490555efaee888f
BLAKE2b-256 eea03c0e84855e85c0cec117afda2558efd19ebe0357f9d4637ea61d14d0ca0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a2b2429e3092570857165355e88edc95ec8b71f131b297d41d8e793072b6214b
MD5 4f5cac61afc995b500bf1813a360e493
BLAKE2b-256 1d454330640ff081a91371b718c54daa422e689e88986e471af07610dc3af922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bd0021f9ebb263951eb176306824ccd53936101c608fe35fad96e109bc49827a
MD5 0025ffca3901f9b9b235d98d5e8f9d3c
BLAKE2b-256 81e1d92474e522d60f10f848b6162d1842214817620c1ec4736818b358bdcbf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c0e6a00c97fa38eed8b9a0667d9a87eac8d9e84745e35365ce8cc6dbd295bb41
MD5 96fa4b9c1d7924c795cd7ab5661a2912
BLAKE2b-256 8335ca16e639796f7115e780f15488068ed6216fa412027e3c56255ada1cc066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2e54eaa219023654a333ad5624f554f530f471d2966b3e34863e38a0637189a
MD5 a9b488cb77c936d5587e65cc2402d25a
BLAKE2b-256 208379016483885009fd3f4ce57d38472160e1e5aeec6fa97f9ba3b6c8c78a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de53f81eacf95ed35fb03c1687dd070a858bff0c3bdbd3bd89575d685169022f
MD5 a13e39eccddb9de504d27b62c3e611fb
BLAKE2b-256 a886ab6ee27d69803c56eb66b9e548bf53a75710d17a749379563d241daf7210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1309b6c7c8d02ce7888d8d097e90f46e29b15d2d6b6cd90a7d47d821cabaa0f
MD5 9d0d484a61fc2d01b6c7fd80bb507420
BLAKE2b-256 db22ed1123c966777ec6cf787b34a74459a6cac91995074a0754b5728755a06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48b989841249e9256a0bbb7c3a1460fb129716273723bc80287eaf7325433742
MD5 acd7ce4dc68437ff22ac18efb4b9adb7
BLAKE2b-256 585be2bac2039781b45526337cfe0ff4a0dd96b3f5a74519c367ab3307cddfab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb3e28acbede157e20f1c2063e1b6056166b6fdfe8e9a3dbe0cb17734ca3876d
MD5 2defcb596c3746142e2220c83fffc70d
BLAKE2b-256 a11c0946508a04a74d087216761b104de37732df315e914540fcba2845dbf84a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 787cab9dd6154b4f8b725d2717f1d41d5f520b1c5c18bdc29e2b4f5274b9bf3d
MD5 6d20eed6eefb24abd4b03c6b785f8264
BLAKE2b-256 c336f0585d60b5fe4126cbf146af73ce6c1a1c7227016de5bc57a9f86c72633a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 57519ce1398ecf2fb47dd14209caf568f80afa07d28e1edee4e868f47da0b05d
MD5 0546e7d03a535fcddb4231c68772a741
BLAKE2b-256 3618d93134aef7a91db5301190242bc850f686cfd5bbeed4f3e9771e910c95cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d0301547bbc63b1503f5490db2105a08c8225bf7086a0282a68eaed14e93cd0c
MD5 039302c31c0cdc7ece8d43d3a2c406ea
BLAKE2b-256 21d7765adac2ae2d16e23e2cf8fd0b5eb29a1f6b379edcfaa6c6f72aca7030d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c688f9bc129a86458cba10a70e000bbbd216d8c7b0b485f44ef546970fa861b
MD5 b582c93dfff3ef24cd0deab9923cdd19
BLAKE2b-256 d80fd288ab049cbc76636feec5dd6084fc5751bffa6a6d9a27a667223a73d05f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6fae41bc277a01f3581611f26317c56319837ee7cc6a03427d52e432332e21f3
MD5 4de686cf137cfa77d6edfb7d3958458f
BLAKE2b-256 f8a96b6fe0dc49843e63a5d2b8634a4845a9e179a10904aa4c9214c1e65cfb5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 603253abf1ba02163da2d0327908ea4853e1ec7c1c544ae480361d4d95c45d59
MD5 eb6b97a7a939d325ef78e3ba790fd643
BLAKE2b-256 ca5746ca0940b178cc1fa4bd5e33c1fd52a30aa0c47579d6acd23cc413d50223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0629f06cf62db01d964d3f41f18b66606fbdd3811d4542d1d7e52c2a844aefcc
MD5 90cc95b51695e57364265fcb6f970d6d
BLAKE2b-256 1c99356f3f41f1a3e005c40c5cad5d10f895760b16eda94b16c4146fcb1c151e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7d736a18ca82fe4385f470230baf79c3a9e296c3bb97f49c5489d1c7fe1d1fa
MD5 f9a5cfe2f3df42a245bfb062461b4b41
BLAKE2b-256 08de5ff8ebf2c680b0cc4679ccc1ff5cf4e72be57e3bb4dab013c04dd85cf355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47636eef64fc8d8f743be93021be1dd3ccaad8e35d54084a5e6223984e712d91
MD5 32e97cf192e96063542db417b96d484c
BLAKE2b-256 d884df77313f7e669e1a0b531ddc93f4b179b08b935608ac9682f0dbf2f3c33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03eda70a271115f94b36f9d0345a1bd8a8006158541662e23a809b2d65d5ca03
MD5 9beb313bad2b6e800f12a3bf8a34021a
BLAKE2b-256 4f8cd311b3d599459a9ad26c62a9ccd29ef345b336f73a493799a6596499663c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cf67faf55709c5ad12c6faadc8f27418f4e0c144db55b70f3d836db115f9a22f
MD5 f8ef3cb367b058b56db0901ae8304ddd
BLAKE2b-256 b4b5ee3de0799f99425f11cda38f4a2b6b85840bc244aeae7101f53ece14675c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 99b7a858e14c4ae6f090cd1ebd9ab6f92cf9d21f4de9064f305775f07e5f1c8e
MD5 8bcd167c35d52a16d54e87c124cdeeb8
BLAKE2b-256 c2e3afb913d3525fc3aabfbe3aff77c3494b7952f35d70cde0a24364d33574fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 be06f45215851e9c1b8dcad6e1795bfebc37ccd40782e97c0fa128e8c0c074c6
MD5 4526b23db453a366bc88fc9bde659840
BLAKE2b-256 b9531f79014b0975a80be908a6ff64768a9de886fc7c66c3e505a9b3f8d2cfb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6e4ec1ac475f1d906f590a493700458a95a5a1d6931bae61ba92e69760c92ac5
MD5 06ffd9d8b7c25f447d7c669a4893f66d
BLAKE2b-256 57f393ef6427ece27a817cc25907210151f43698807b4f4ac6ee50fb6ac1999d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdbdf6ab786a8c44b2ce2d12a12ed0e4715561e9e302ec4c7684d1c7407c5471
MD5 56341f0ea2815edd561e3fb8e6d4b92d
BLAKE2b-256 05e51272e8afa475fe7e1a500c4c4c9416119532e2293c2be7518eb2616946b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 298869d2903ab7cf96f6d1bd72358b2066dcd1818086b8b55ca586e03870b81e
MD5 619bf4881f029a5642b0c8bbe16bb27b
BLAKE2b-256 22312b630faa3c6dcf2dd3d1a38081c95c4774d545a4ece56251885f7e0d60ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bce4e7bc8a76fa9ba259804c4819fbac5b881f123011bd99954592c012f79980
MD5 f457567b3da36456ed68b53c58f89170
BLAKE2b-256 6e301a5a44aee04e2d62bffc20a2628320d62e24805f1c6a30c4079d2fccd792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f2f050d939dfdee666f72a2514b97ac6c0a6594e14994f42f1cab285fae5f38
MD5 c6cb245a274edebc29efa5f84eb7bd74
BLAKE2b-256 b443e0133b02130b5b4702d4b7853394044ad0f2fa169627394879ce257f30bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32b020a5305752b0e6deb299ea99cdb35e6a92a726674eae94177eb701a03bf6
MD5 6e532b924790298f236352ce98e171af
BLAKE2b-256 5c307112ef5cf3b7e02d7110ee3d3396f107f29ca9bf596affd9da8b024f2340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 959c3329bb9887f0220a878b0e71d5a55c0fead96b4af57b47ece73e87276473
MD5 ee61be006a3c5bf5d3a5d340aebfb97b
BLAKE2b-256 d7a2dcdbca3caca573f0322133acef456a6b3d8cc1473ed1713e9d6eaa812c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 90f10004e520f6adbba0feeaf8be09b35b93cb02d5ed0373a81fe77973ae5f2c
MD5 80924e3ea7d3f9b252284cde1d89b42c
BLAKE2b-256 afc06540154d86c5d9ca999e4196333902fa38dbd803a8e78afd66b6c120571c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0972908f0424f6d4717b47575a5a497c174ad7100c02edef5f985ef2541ca89c
MD5 845ddbe11efe500ebbc251bdb8c9fb61
BLAKE2b-256 f403e140cacd8a99733f7c42f98979109cb39ad2630a6418d88f4c25afb72517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9eb883b03dca006063865b6f3c2f88a8cb201ea0ad3c85966482ce7dc0317d9a
MD5 69e248860eb2934897c63f2eba16292d
BLAKE2b-256 5b02f240da1fe99700b283c3e29e2b7a50ad77e4f70937f512862776ef3f226e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9caf947cf7d92a10fdcc2db647776f466b4591473c90294a53664eeeed6899fe
MD5 0c837927dd535bf7bb4feb9e28c035ca
BLAKE2b-256 4a2ee8fcb02318a32574f2986cf7af5bd036a50893a3f5a390f5381dcd642b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 325524a3f6160ce4a49fca2d7750cf99fbdb742a1f606ecb5855a881ad4080c6
MD5 c358315e11b7fdd76e2654f634a0c72e
BLAKE2b-256 b7725ed90904880db39ed73ada6fc83caa381129846725b83d24742ee39bdab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e639e83b0ad5c59e073879e79cd9d5c075c598719dca5ffde61430e68d3cbac
MD5 41e9b23f5fe6720d73a3adf168bd5608
BLAKE2b-256 234bfcd2262023893885147c2bbf1dae6f3c2683a6d976d7b51bc7aad2e1a08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81ae7541ea995d690f71e33782d5bfa206a3525b768e63bf9aac0ac3ab34dcaf
MD5 8c82a127001ff5559fcbefd98fa7275e
BLAKE2b-256 24f5c2da7139ad5a318877625243a7370e2573259ee538cc23f5776d26e455e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a56d57d19f12b10434a3ee7cd498a6a629537d215368dc7bfefe9abc5cb03216
MD5 f8660d300f23f61461c7120810f742c9
BLAKE2b-256 91a32901d8a0ce870058f917eca8a02b5bfe852bab49379fa4d9907b0a686ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e7e216ff8ca5cc5c3a72373852550c15eaa8df010d657b07cf3709e174a567a
MD5 0963bfd64404584c655637734f820225
BLAKE2b-256 dd37680615ccde94b6e40ca5f79c069d820139438a2af0c2759b3ddab71d979d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2b53a63109fc42cfa5b8cf5af212d7ba00f94932dbde87a6c7fa5dde1bdddb4
MD5 f7069053c1117ef25a4229ac9fdbe7b1
BLAKE2b-256 a3b88df26d64abb73bd2fe0dbad44c7e467478c0ca5f9c530f72a28f25cbaf41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 129aaaabb238a2a626d1c3b8ae68d4f75a0196acc0c6ebb58c47b6f17edec3c4
MD5 b20af41cd9c8901d544d1fd445022345
BLAKE2b-256 1166ed4b7cd2c3d1ce959330d97416013ffc38077d87cb06107eb42ad93d271f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1ce205f89088773166e1099ee4de563d8e391af5b7bd7b731db1ec4f9a3e2b23
MD5 eadaf0239f7dab3d3533274d5e334ece
BLAKE2b-256 080d408fc20ab3b9e21aa8cdcc9d0c67e92f07105742b2ff459c869847d1da6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 74d658475fbb26c379b4e1c6cf5b23cae6aaed741f14531de3e75a453142a8fc
MD5 36659ff17397f6e53cca268f57119d7e
BLAKE2b-256 78ce38762e3c5c73c1f50ce7a444f2a66fda4da98b6dcd1103bb50ea454d8e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5b8b95d1f7d75679c9bd5fe3a8ebfbd846a6283b41a3e3a01a459a9b730417a7
MD5 6a15a3c780144fb822d242dc30e81bcd
BLAKE2b-256 1fbae2b4345cda7c2664edc51650e68d1d594adbf7cc9f418ffb6d220c354c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9ee6992d2483dee2f805a803e0bdee15b22521857891ae17d715242608aafef
MD5 8e3664a1de27c204ed297b63534334b5
BLAKE2b-256 8ecd435b21b0d3c66dee72a7319b620e78b9557f269bda75a0883cd0a00fbfb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1217180d82f8a44961905f1611f679fb23099649e4b8ce96d4db23b621e68d6
MD5 bcd4cca8e5b1281e7639a4eb3c344820
BLAKE2b-256 d66478fccdc924e5176a786b3ea570b808400c284e5b800243bc932f32fc98c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf7030a9f36c2fc6de4fb3a4b1bb39a6e767b3cce99f140f6f544868494556c0
MD5 24c8ede7e1b8f630fa6248cbe7178e5c
BLAKE2b-256 f0f24e03971a50c0060a758f3fa0717c66bbd55cb2c58261fa6976e6554ddad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b73529c72d06a8aa4e98d7a1ba7bcdf57a577aaa185afcf8948de1fe46d01c8
MD5 2c768e7c9ebf94a4b5a8c4341691b711
BLAKE2b-256 48084cabf4d12d68b06d41a07226d305d70d26ea14297ebdcbf4b91c6a449096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94ae3f672ed9d1f474bd53bf490570b969c3fbe9337746228874728d414e682c
MD5 75dbdf33e730efccee208973f892f0fd
BLAKE2b-256 3043b090e957b2f18d1ef878f64e4392f6baf9df6ecf5e8b89e659e3b10596bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7d3965cb8978070eaa1473d69e688e66e70e576321209875342893feec9213b
MD5 125bc16be64ea8400beb6ef415e3e60d
BLAKE2b-256 90e449da1af60a05453d344ea9e4b37eafdfb85454ecd7f03e63cc28f98f56dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d450aba79a9d22cd2bef624a36e367faf855d5fc6031fa781420145ab8591e7
MD5 32076179ac8d8e4f1a75dacb79752d3b
BLAKE2b-256 46aa1cbd9440939fa9cb6b61a539922acbd6c0e8074ba7d035ae4845dbc98a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 28027d5697fdef5f5bed5167aa36700065067c3a6e1f101cf8515e5c40f53c4a
MD5 9cf21dfe487c87b7a286edeec489d3a1
BLAKE2b-256 e07bf053a5f0094f56d0f65998f477854a57610d55e3931c43972924dee9798d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a58f4d10f9579ede54edfd718e97b4f7a3049df7deb78e45dbc113941d7ae6b2
MD5 86ed43190bd66e6993076e2662311c59
BLAKE2b-256 6f8968cec130109c948a9f36568dc1f90028a9c33633e81f39876a294ef2133d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 11c0db1ae7d6309e7a69695b6302902104fcb4071e7ae1e33cf1b082d072e369
MD5 dc840186e541edc4be328ed255dd76e7
BLAKE2b-256 235dee572b8ddd937d6ff9d92d7cfb85664fbe04352147aab5a42a81364352f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 81b4a110de92be0d20a18c8769669877fa14513832222f4eae7787e8a2c2ebb5
MD5 7997ec436977f51ddca324c7e4731155
BLAKE2b-256 a158a4dbf960da6188864866d3690a65f4fc8463ec22f832cb33da866443b530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ea8e028c83d22b6ec72f7e0c4c649f9b58c75f0dd2c313385d627d91ea6c7251
MD5 9afc7308568b071473a7849151ff07f9
BLAKE2b-256 2eb65c1a8b75fb70b8fe6fe809d803bc5e22ccfcccd633c89d8ff627c0e4c66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3ad96689e38b45dd6dd8a23327fe4fca26ddeee035d0d9d82869cde79a122ce
MD5 e0e5cc78d1c5ab6aa0aa652110b97be2
BLAKE2b-256 120c175b5f5101d22f3c814876fac05287be30886ebaa3a7f6f3407c423d2ae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7dc1b7540fc5ab2e02ac19cc8c4e18df3222c0850ca2c8c054c6246de1583d4
MD5 0408afa68eb75ce32910c69d2c95e0eb
BLAKE2b-256 de87a3e838024c26da2ae49d10b9ff23350f6c4c9feadc934c988ba89fee758e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 acb2dba6b11d1d9b586109144b2f709727e7f057673f46b51f106949d5e0b834
MD5 b07be89b70ce139b845d62eb87e47cb3
BLAKE2b-256 17c83f6d895ab8dad57e3c3dfc3c0ad586fcb74a4d90a156e2421964b64c606b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 267e4399ba5e41974cf21e41bd5e76aca94e1464ba3abd97741bb78348634b2c
MD5 7757824d26947cd0003fab0366f98912
BLAKE2b-256 5978b8b08bf4d6e4d5b34d249e3628e9d3ca544c4f04a0c820bcb69a4497153f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 178b992c239b9b7e26287147f7d41beff275120b07d4de178751778d0cf3a6e4
MD5 af87452596775dbe0d4b01080fd7daed
BLAKE2b-256 039f6bee2a1b16608a836c8ab13196822e1c478cb3d3d8b52efe0757f1585a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04cb1a7fe18e65f41025f0b5ffc8b8daa4c4b7159a64650b004e2916ee2819c6
MD5 43e6e0b094ab05c47f9519d278ed9f81
BLAKE2b-256 9efa1e5f13760a44ad00d8e1f1481f9bcaca117db0f57b991f4b21e59fc5a472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de54b40f7405c175f95be0120889072e9c82882b5878c1f5ae2d97c68a90be65
MD5 bdb24d22312c08ed84151c2ee00c627c
BLAKE2b-256 2345d6b3ffe6eff2ae2b57db04ab9bd60ea4aa0ff3ebb85a90b9caa21b3c052a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eadae1243268271d72badefaad641f719002968f905ef60a9c3f004fdd6e19d2
MD5 5006953e612f8334d8ced50112575fc1
BLAKE2b-256 12d9bb80b81c21db264e326dc9d16c0fd173de7572cc2cda19a4e45713115eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 80ffe24e79517a521344bcdc2769a9db0933c26f929df2ea8556598942f42c93
MD5 0b3eb252169d22419c68a057bedaa629
BLAKE2b-256 9b689d126346521ec5a138745ebbbd478b72c94c220180fdb2052916f27b9024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 916fb0f67fa2b0ba15b3e52e9e1940ae5743864e26c37539c6029cae12595ea9
MD5 a9e0d0d7588a88552a68adfbc0b3e926
BLAKE2b-256 75ddad63dcc813e6da0bdf971ce413e0ab638050a38c1da36e6cf2d54f257bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b13601c966c32ae3a14b1f8a33377fdc4a730b0e9dab7473cac6f6afb7944b1a
MD5 9d80111d3c7d7035f6dc6348cd3b3702
BLAKE2b-256 8fc9eb7b81be8f822d8274aec906fe38c7dd647c970087239d449fde4e5df9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dfd5e47f3ac81d60758ed9f9f70f43bbf490d17edff3bbba31572bf952ca5ce2
MD5 58c3e4e1880525c112369f68a930b700
BLAKE2b-256 aeb27698b64e526a42fd8ec437906386f32074de61ed3dddd1a27a231ee54e64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5afb5e23c3328471c85c142dd2e1ad1b71bc7c774a07c044a4ed13843ac9d10
MD5 a569d1a9212aa882750cb57d07115355
BLAKE2b-256 acedd73b24bebb8ddcc0aeba3099d58cfb5b64ddf9227e630c95b4205a3d7c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae0a8a057d178b11b0be4cf05ed458cb5e684b7d2ab8b261c157c3bacfe77dbe
MD5 b451b4b52440b120e7c9f560b49d7dac
BLAKE2b-256 6a95b839513b4bae6e80ee398d9b4feff2cab79a7200101c68d6cf406fb77f7e

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