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.5.tar.gz (19.4 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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (701.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (723.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (767.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (653.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (490.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (516.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (555.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl (509.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (487.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (472.5 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl (698.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pythermite-0.5.5-cp314-cp314t-musllinux_1_2_i686.whl (719.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

pythermite-0.5.5-cp314-cp314t-musllinux_1_2_armv7l.whl (763.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl (649.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl (487.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_s390x.whl (513.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_ppc64le.whl (551.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_i686.whl (506.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_armv7l.whl (484.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-cp314-cp314t-manylinux_2_28_aarch64.whl (467.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp314-cp314-win_amd64.whl (368.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pythermite-0.5.5-cp314-cp314-musllinux_1_2_x86_64.whl (698.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pythermite-0.5.5-cp314-cp314-musllinux_1_2_i686.whl (721.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

pythermite-0.5.5-cp314-cp314-musllinux_1_2_armv7l.whl (765.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-cp314-cp314-musllinux_1_2_aarch64.whl (650.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pythermite-0.5.5-cp314-cp314-manylinux_2_28_x86_64.whl (487.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pythermite-0.5.5-cp314-cp314-manylinux_2_28_s390x.whl (514.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pythermite-0.5.5-cp314-cp314-manylinux_2_28_ppc64le.whl (552.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-cp314-cp314-manylinux_2_28_i686.whl (507.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pythermite-0.5.5-cp314-cp314-manylinux_2_28_armv7l.whl (485.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-cp314-cp314-manylinux_2_28_aarch64.whl (469.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp314-cp314-macosx_11_0_arm64.whl (448.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pythermite-0.5.5-cp313-cp313-win_amd64.whl (368.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pythermite-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl (698.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pythermite-0.5.5-cp313-cp313-musllinux_1_2_i686.whl (720.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pythermite-0.5.5-cp313-cp313-musllinux_1_2_armv7l.whl (764.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-cp313-cp313-musllinux_1_2_aarch64.whl (650.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pythermite-0.5.5-cp313-cp313-manylinux_2_28_x86_64.whl (487.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pythermite-0.5.5-cp313-cp313-manylinux_2_28_s390x.whl (514.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pythermite-0.5.5-cp313-cp313-manylinux_2_28_ppc64le.whl (552.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-cp313-cp313-manylinux_2_28_i686.whl (507.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pythermite-0.5.5-cp313-cp313-manylinux_2_28_armv7l.whl (485.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-cp313-cp313-manylinux_2_28_aarch64.whl (469.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp313-cp313-macosx_11_0_arm64.whl (448.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pythermite-0.5.5-cp312-cp312-win_amd64.whl (368.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pythermite-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl (698.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pythermite-0.5.5-cp312-cp312-musllinux_1_2_i686.whl (721.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pythermite-0.5.5-cp312-cp312-musllinux_1_2_armv7l.whl (765.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-cp312-cp312-musllinux_1_2_aarch64.whl (651.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pythermite-0.5.5-cp312-cp312-manylinux_2_28_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pythermite-0.5.5-cp312-cp312-manylinux_2_28_s390x.whl (514.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pythermite-0.5.5-cp312-cp312-manylinux_2_28_ppc64le.whl (552.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-cp312-cp312-manylinux_2_28_i686.whl (508.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pythermite-0.5.5-cp312-cp312-manylinux_2_28_armv7l.whl (485.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-cp312-cp312-manylinux_2_28_aarch64.whl (469.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp312-cp312-macosx_11_0_arm64.whl (449.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pythermite-0.5.5-cp311-cp311-win_amd64.whl (367.2 kB view details)

Uploaded CPython 3.11Windows x86-64

pythermite-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl (699.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pythermite-0.5.5-cp311-cp311-musllinux_1_2_i686.whl (722.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pythermite-0.5.5-cp311-cp311-musllinux_1_2_armv7l.whl (766.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pythermite-0.5.5-cp311-cp311-musllinux_1_2_aarch64.whl (652.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pythermite-0.5.5-cp311-cp311-manylinux_2_28_x86_64.whl (488.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pythermite-0.5.5-cp311-cp311-manylinux_2_28_s390x.whl (516.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pythermite-0.5.5-cp311-cp311-manylinux_2_28_ppc64le.whl (555.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pythermite-0.5.5-cp311-cp311-manylinux_2_28_i686.whl (508.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pythermite-0.5.5-cp311-cp311-manylinux_2_28_armv7l.whl (487.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pythermite-0.5.5-cp311-cp311-manylinux_2_28_aarch64.whl (470.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pythermite-0.5.5-cp311-cp311-macosx_11_0_arm64.whl (448.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for pythermite-0.5.5.tar.gz
Algorithm Hash digest
SHA256 771d41f93c3a8100d1434161c018b42310e17f81491602621b5f35321dfd0a73
MD5 005b4144ddd2771bd04da87acca027fd
BLAKE2b-256 39a332761796f971203fd898db83ca71c8c3ba6b6192f434d649be5ff99c45a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66b58addabea894d5591a8a29256d31aef77951484983b543e2342e89f7f7caa
MD5 ff9fc751eb04efffe2365b96bba12fe6
BLAKE2b-256 42384809d2d9db3b5896b9ac99b78e2a40939242b440701a3ccf4b78fe1526d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a533cafacaf8b4dba2a58cd631571d9bf180c717519b2effcdf7457fab35c79f
MD5 5d333bce94351c8bed4c032a07cb018a
BLAKE2b-256 76572578fddc4a8f07b84fdd415935a30223a6bfc760199884fec5c0c76a00ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee12d6cfc7af909f7e9add6f75cac7dc214270e1b03a1f989efaac55f70bade3
MD5 7a9d46bd730315cef7efa5fa42a2f5ec
BLAKE2b-256 b899820e491a0bc5714764cd400328b773ab7fac2d0c036a8097fbb68a03df0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56171fa15299fd129dff3b6b548d277ef6fe7fa6fcc669ca57de33f821aebaeb
MD5 ca1c538c0fab8ef2b76e11ecd9817733
BLAKE2b-256 1969f04d3d0f38004ca82100805773a3828873ef18ad76436035192946db421e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9dd3757b8e467e75a6e107f6d7fe0bbf44ed9bc43d79b99d3663d214ae1528f
MD5 d0118c2485f08769966a1e7f79947d34
BLAKE2b-256 3c971f6836c46daa1e60aa900daa1a3bf6f16722c397c3f4249cee019c9eb68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 369d00d2fa15642fa72035f937c39f4cc706ed9915092b54a1e3cfbbfa572a46
MD5 ddf2e7c78f7586f1a2a73d75283f07fb
BLAKE2b-256 b9c2488e46d6417773c65f998f7a762bc1dcc625cc19fd5cbacaea2ffa54cd99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4ae0c88545df02775e5f90e6124645964fc2387c63ecdb409f2ed4afa94ff8e1
MD5 d1d15da97051f044ef8ae27d6ba2ea29
BLAKE2b-256 284c6c9c24e734e45683f94dc8a9e1bc20ac7e9f38f8233b1b191a4237da5988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4fa858b9f76fe8f4e36f85f99771500d9466d702c8e20e8d50040cd0f553b856
MD5 3b87dc525d20c018eb18bad29320a00b
BLAKE2b-256 90ea1f726d380f14f76a269c49321b05fb8de5231f5351665e9d0bbebb87c13c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0492dc1584f07db9a508a7d945b0efae0897e8f2e9e6c6be033109626c05384e
MD5 7ff8e9c89a58fa4f19ba4aaaa067ea72
BLAKE2b-256 9f6e6dcdae3a8b71fdbf487fa615722b315713803febafb09ac8ce6110ac96e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d6b2c44f2bbb6c78b7109db21a40d47cd59ff06bf2012a53e6500ad8d844f60
MD5 a84b14ead1905a3e68a4cbe8cca91540
BLAKE2b-256 5d4d0d0cc12a75927d7e3aff4febf771c5d04e3c61116bd447b7dd70eca82d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e85996f696ab9f2625897e585f60ae606e32ed45c330598e56ac55392f8bd9b
MD5 5b744595608bf7255560cd720a92ad66
BLAKE2b-256 ff9c13fc30bcea73d97807c198b48d50aefebafb3c1ecab0b037849f2d84c460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d39f7b03e42e6dff2f15574b0825e7db71f7b532a6eb485a07da083233c524e5
MD5 cb13760335d8721338acfab636cb1a25
BLAKE2b-256 923c05989b7b3aa106f7b97b31c095276855cb113bbf6f23596ca7b6ccf44b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd8f15e39de1475716d273790d6599d76af51713d5958a3482433e8af2f0c532
MD5 a09aaab6d0a7dbf4cd64cf118c434cb0
BLAKE2b-256 6c558c46898cd95a446e804229f046321c0485b52d0f0cfedcb43ca783a3e01c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06febdcf643254ea2b588644d7add1bf1d57088f7a9a422caebef49bb85e13e7
MD5 57db2ee24c045a667014af982e1ce670
BLAKE2b-256 75fa3dcf5a6333e4d2920c5ac5d7d6d9bb2c2664ce0f3beefaa6b1f94dd32421

See more details on using hashes here.

File details

Details for the file pythermite-0.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 878fdf1593229ac68be7ff00fcf6cb6426648519944f11d4745291bee22b13c6
MD5 902ba149fd846d96438f0ce29e8a2c72
BLAKE2b-256 1d95c2f1b9abacae996878ba7771ae0b517f55befcf62367857b06bf130b6579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 cbfbca3495bfeb6539e52f5fd7fcb6dad8dc4629879f21902179b9077fdb13b5
MD5 14a2d12c4df799c6753e0ba0df22eceb
BLAKE2b-256 75156594a1fb9eca6791c0fd53ecea28633b0d6d27b199921862150b39e9521d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e01ef2fa9335bfa76b488bb3bbe40f18fb157eb6c8cda3fc5c67825f59e6050
MD5 e2bdc0aac1b573e73c326660750e6ee4
BLAKE2b-256 ccbdaad94dfe28bfe2653f47d04e3089d9804ca47ab32595e9f374c78cc23cae

See more details on using hashes here.

File details

Details for the file pythermite-0.5.5-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 dfde9c8313bfe3b1b3ad98f7455e64a97c1a052e2a1d9c1dfc657cff0d1dab3c
MD5 6d43c1161a37de75bfcbba28c38a7ebf
BLAKE2b-256 b3c39ceffc2b87fbe74b348a1e762f113e470c4cd2e052b4eca4f6ef5ff24290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 df19c1ef73ba17339f0c59f0b97d3157b81bcc4397f65a3aca5acc1a2069f755
MD5 fb4bf85d2d5f2c7d4995eca7def7f9d2
BLAKE2b-256 d35f80e471b88ba3ceaa9d2b44d67fb9f0f86f014d1af810630fd4db4eaab535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48368432d4a294856ae42fa552b186246121aa0527978b4a4102883f2a171d69
MD5 ee5773a20721b97b3a322ed63df46d15
BLAKE2b-256 4a63b9e2096e1b084c92d42e279d6f611fe981f9261da60bbe6ca9fedc3cca55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e059dd0777eb718caba2386495603295a7a20b790c65c59c811bb54be9be50c
MD5 7a73c38bfbf4517bd2ee62129e2430d1
BLAKE2b-256 1dbe86506d7b02d62d1d5412dec99b8645ed30bc8d925c0e8ec76be36b0e47ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2caf4023b7c200bd97332aad1399f54793721c302a5609f3249fb3869e680495
MD5 da6adb4e958fb3bd5afe75cf7d7c23db
BLAKE2b-256 5ef54afb3994d263467a3dbef449d6710959b64f0c73c71846c7928001246ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a21c0d6477adc7517010a21d39e986d55ba4e2f7276f518371bae2c7441b827b
MD5 bc81928495923ece63b71445e04b9dde
BLAKE2b-256 1c0f9ebdfb169eb64d7ce2c147c07e0fe5911786380bf61801b52d02f3fd2e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf72a2a41d913a53a72bb07a498d400d9eceba084bb07c0fcd5023758e954585
MD5 7b43f9fda5a0d383f79e18e0a72601df
BLAKE2b-256 e6647f968edf5401384605a57935e323b6394e3765b013f486ff1303966128d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 338fc5256c394473720fd2a8b38365488d3058456dceb2bad514d4a57334db01
MD5 11414dd6627537c52b8be6860dc9968c
BLAKE2b-256 e71fa134aaeca0eb3b4f8dcf21640b1401ce5de5910b52305a25ee87e7125493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecd48e1246e2332f441c040c4bfc44b6089a8b596417f5007dc36e56991bbe5f
MD5 182b059c56e2ac3f02335f56c4173050
BLAKE2b-256 d392c59e08b0fec3790ba83b96d05de545abf807fd78928e8bd667de054dcec9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ae31966ebf94b15bf0d7770c8402f4ac2a15fd1fc77ebf3daf30c751f9cb7874
MD5 db1774c4ab7f431adfffb0d7d935ee82
BLAKE2b-256 e60a5af2d58c2ae590093dd9573d685d2ed8f5dee7eb8f4286c526a9f0001966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 837d606a428773ccc963978356584575f9634b7ec1ced3cc034453a64a6bac8a
MD5 0a1f112d2f46a983d585657393268345
BLAKE2b-256 83b60488da7cdef67189224468ca2a2d36c12dcdf670fe96b46ef5922a9088af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 754c02ff3b35f4202e1116ddb1fe607e7e4c79915a29525d9a41e602971b59d1
MD5 266a2b7c78c5f5759511c569694ed121
BLAKE2b-256 81d5579174b36f317c15a59d3f5ce76e0f36967bd7e035bc5956af688cc95ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 081e1f38779f7bb5719cfdc1af61e3787f204e9ca8b5f1dce0766ad145a4e724
MD5 a42d0fe4819e6b4d42b6ac52f3ed0fe9
BLAKE2b-256 a0d002b92b25d9e2cf1244f8d63b2c6e7da8a718ac33d7401ce48318b7b55f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aacdf7e3188df516106beb6aad65459e132ac05bcadaadfe561ce9162e9da1cc
MD5 0c161031c885828448aa217152f1cba8
BLAKE2b-256 62f671a2284c509fd4608dfec2b58881c786b1efa6ed4ba15e2bec57219eedf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c65250ad8318a139880c22ba24be99e05454edac89a48b89a52f81ff3785f02e
MD5 c8d474197094f311336e4098067db59a
BLAKE2b-256 41eb231cce185070ce00270e07d01723d93e939b0ad9f5f58271cd38215ef724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7391448b0c7e69cdfc7b151aa19da94f000619dad65f3dbe8ba31f7efc513506
MD5 210f0b1108a53a7ce8a410809b0c12a5
BLAKE2b-256 57c9f6bec0ea28be7fb53c1dc0c9b1bc385528ea90b1995b3fac45a9f4257e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e255e13b0a45a109798f26e89584e2baa0c220146e662da5d5df944579a672c2
MD5 84d42b2ddb89f5aeba263bc6f63fed68
BLAKE2b-256 e41e04e24a91a33bddea6ee870703d25ac23256473936efe814a9ed97af7189b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b03d030ff6bc46eb8a18bd0f051bb7483f1576284a85c7d08689e9c547ebd4f5
MD5 64f8f078ac459f1799d3326fb1dadce2
BLAKE2b-256 9d119880c40a626bc71c86ea5ea55ca122e6f6679c80037a8e2b24dad2f699e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f91f1dc1a53f8f2754d3da8beaa2e8bfac2002284072718c27da50fe6f0627d7
MD5 eab83ab661894f3181f30fd4a598b8c2
BLAKE2b-256 02419f44049bf3b8c27907411fc1755a84344615ceadae6867df1eca4f9ccbc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47c491ce573a71f83abca9def11b08ad62cfa2471fb1be911c32f9c96184e36d
MD5 f2d4de96fbe2373a6e94728dc22858f1
BLAKE2b-256 523541ff6eb050fa8a711bb4cab363d069c9129f6d77211342d37051dff8c8e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bf136e7682ae22f1840aec2dcf872f8acf4fce76cc6b0d1a2cd13e8c7e3b695
MD5 dfe374f88ed3d90cd921beed1b46ec45
BLAKE2b-256 ab0a81938c5337ee935b9e4c78a9e47221bd62e6cb2a6844fe506860fd9a4884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c2a5519ae2cb4ba201195da55634a4a922ac837e5a2db44410d9de6192936468
MD5 cbe4ce6a2865b1d19762da9519452145
BLAKE2b-256 126c33b0ef8b8c66283b34693e650e7389d079421b80cfa3b9cc4dde6e368edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 38bf94a8436ea7445a6193572f2bc2a0af0ddb8ef8faf16e8666508eebefc1b0
MD5 f5f6c8d300dba4cf6342a628f8283c9b
BLAKE2b-256 49eed3efa2175f43f7591fe85216652b08890c963cad8c8b7ebd1f9dc5dac16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 247d876841ad14eedd9c80adcbe477643d8dca4dad02838b0bb60477ec6023a6
MD5 c47dc700b04fcd2c45d878d0838a9641
BLAKE2b-256 519502a7a7f8d7d32f9758712dbf042a622fd5c794d693c5332e1e4e352aa683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 be14fa3045f280cff91efaa30737f0370b39a25971d39a7435722b3d09f01cbe
MD5 a2ca7ee6d6bd248cb91a02f14b8b0655
BLAKE2b-256 ae23cae261cca57e2121982eff265d353ecd128f0b248f4dbadfd84a00ccca5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f78a7151cc376a83c54b71e7d2ab8aaee310a04d49333a6c73a3e40407f3b62b
MD5 063c9d27dbdcc6236dd7754b2b3f4b87
BLAKE2b-256 4775fa526c2f3f93033898e85596cdc33e737e7076e5a25a4c419d20a0f92f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b4d74b6b1939a18d3be17ead3115b05952ef89068908658b2fcba09046a9c96
MD5 c3a3d10407c196da75933b0e4ce99ee4
BLAKE2b-256 ecf2db0f189d9e2c8669f1c835b56c37c49304bef4c605ad24ca27602817f3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd6c53bc1043317201e29c5f6dcacb3bacf7c7e80b4ae55d8c909c2e8b347aeb
MD5 62f49d17599187a6e01c25855b5ae4f3
BLAKE2b-256 2ba05a9e8b11f53771a66f994c7141ad7e074e1b2fc5d336c6aec9ebdeac9151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7223f1e53a746299987bc55f73845d24f754072e70c7afa0c147e64c953ef6e6
MD5 60b9890e38af4da767cc12831b339116
BLAKE2b-256 0a5aa73b23d6c76c9129601c7b405f4aa02f187629c744b64337ffae2a34bc55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 323250adabbce80c6e6dabd29affb9a252ce02fb1f86692c0a5013baa53fb8d1
MD5 e834dce318d8a0ec6e835920a43440a5
BLAKE2b-256 4bddee99228338862fc9aa3bfae7cd88f3dbb58f4b83bc18b6412bdc5e57154b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e99521d0498a412105ae3f008b9faad3199a2e5e386b9061e412dcc1cee021e2
MD5 4c930021575086bd73bd9e73abeffc93
BLAKE2b-256 e7e9df84e5e15a3f80595564009adeac652057b046300b8cc0e9aa9c5edd8b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cbabd39b05676c62b36e66117c7d5d21c934bef19b5ef47f9479a2e112c9e25
MD5 34b38020dbe6c92cf04eedce78419285
BLAKE2b-256 93953365021546bb53bd0da35d177b5a14a8290ebbb2d894eea7d0474ca0c8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 008860d6dd4262a1c6527f0e25d051a6500dbda7cd66309af0a42725756dcca8
MD5 27dd343eb588f114d5aab67b2e3bad08
BLAKE2b-256 f0bbca0f1240bd43a469bf9920fb21608d7f4331828e4e936f16f7ea8b7f8333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0d6a842340ceae3c6a1ba6bc5423542a1687fcb4b4a224776664580de50379f4
MD5 90cf6b10f44023d0bae4bd68d6c0bda8
BLAKE2b-256 953375ad91209ec2078894403d523944dfd9fc8ad8cbbad137902d677cbbb26c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d0e675fe166a1e4b2f11772e3b08d20b62a55664cdd56096e9d03a13ded0cd2f
MD5 4d1d8556130638cd106246f6a42b47e5
BLAKE2b-256 080d35e71693c443b57d4721346d88ca3d4e73406eac099e075747af6ab5a455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8cc545eb61243ce2b9f0fb17e94f12d42fadf83e084446d6ee674476e584c07e
MD5 9791ec039bfea418028299822a0d7822
BLAKE2b-256 29f4af7ee064ea6098b340f6a863262740d3be17977cfaab085967997b564093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 86523edfd7ee2d073c5c4eb8f2e0f2f205ad9a13e5eb42f8bdf5f0dafbdea2a9
MD5 b65ec3998095e22dbe84965e28cad73d
BLAKE2b-256 1f47d5f7de058d30118503e629dd6a7fce04fce4726e5e8df6315c251717300f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99a7d974ef6da5069fef31e3e4125d2d8fbad92b544d5e388585bf1755afed45
MD5 e0b5716783ee9078e4bd2780368cfd1a
BLAKE2b-256 3b7964636f9c54c90e4e03c3a89684f1cb238b3dfed3b554ec8dae587d291565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1222bed5c5f47534df55115416d74d924a025f3b094eb2f2a89695737f984f4
MD5 8a5f5ad33cade0d4b47c23016988f4fb
BLAKE2b-256 048cff1277eefbad02494fcdc235cd4a5f528c7270042ac8efc90a2a51db9e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 72650111f1a2b784c47113fa414f880df59f9c54d0c225fa2bcedcb9c44620a0
MD5 ef8e7d4441b745756f1c6ee2accd9c36
BLAKE2b-256 de4f6bfab48af55f8361b9cb865179c8aa318958e17f8ffc905482bf003df08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56802657629176773cd6b168512bb6a07a7136631090f98127fc86539569f937
MD5 ee912ebf7e2092423eca442a04f1c06a
BLAKE2b-256 d9ba3d2a66f27e1e6901b43ac279b7122cde472ece12d3932178dba9ea7f4270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd1ddfc3485693c5be615e6452892e0c6a89750316b46fb533877afa9d67215d
MD5 710772de5204f987213791601701f577
BLAKE2b-256 7a8a9076a051625a93cdbde96b343e3b6f8d9a1a96852947d3579b94b740aeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e41c50a80f832b35aed8b15bede2a919017306f9f9a0879d1c79468d67893fd6
MD5 e20c2e67651ba6a31e7b3b052446cc3c
BLAKE2b-256 790db329a401d9d757b6402e91771767bae36a6bde2aa21f95bc836e7077cd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5facd038a2fe02fb3ce73492fece522deb6996d52675e2c1a558a58a418468ec
MD5 22dd00b7d791083efb2a72c5d801973b
BLAKE2b-256 2d5f569c00b229a5a4efcae8704529e28d6df45e72a38501a854d4577219bb63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39dfc42d2e174e7990c4fbaa02eb91d17237da3b37a131eaa75166c51a328eb7
MD5 05a2d720b73583017b1ee0447094f03c
BLAKE2b-256 70368048080aba316d8fb4b4aa41fc8c8478c245342b0fda6ed10893f2167d66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d010f0e9fc2e3589e6128d34c5eddb734497dfa9e17215c699f99d54cb7501a7
MD5 2884f5bfd07a17afa2b54bf4041f6497
BLAKE2b-256 ddbbaf4d3e7910c59fc3ac6a06f08190002dcd7b94b3dd1034ef3d77a6399754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4ff6e1f6a09c781dcf83288c4b5bde5e5562ec6aef09bc766a0084d4a5cec3ac
MD5 1fdfb134e3c60f95a4698985a6833047
BLAKE2b-256 9c9d2d0620d9406350f54ea6a03942b710ffee986135c3fa10db02bbd4dc1687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c44fcd4347b3cb84eb1dfe9a9f24f09b2cada9cc5a9072ece984da092ef38a5b
MD5 0e2b39818b1e6c5c5808b943f9ecf529
BLAKE2b-256 250300ede01753709fb9cfd1890b9f5fa1c84e78b8a167c49c47761c57be7124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 18872613f9297533967bf708d2801e81a128c6c3a52b118dba1485d33737911c
MD5 e32dcc6ad5a040c5f006cda27730d77f
BLAKE2b-256 600542d4ceef93ae2ffc8f5fa17941d415107ce1635caa812f332059c3e68421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc115aa53b3369389db1231d1ac1fde7344b9e397e86210bd19ca288effc1cad
MD5 1c7171adcc68df7110a7450a0d0511c2
BLAKE2b-256 c10091c020dc9f65ffaa7be895fb9fcbc2d774d8ae902cee706be71fc28940ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pythermite-0.5.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c25b2d0f0d72b00e9ece2fbf5d03892ce0fef549f201c30dd1a6fb2c9c7ca10
MD5 fd0727ca4dd704848a6bb9b1c974a04c
BLAKE2b-256 1b07da13d74eee8410d400e081040b0d7cd91586533b4ad1a94aa94d8526a923

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