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 areIndexabletypes. Updates made to the object immediately reflect on theIndex. -
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pythermite-0.5.0a2.tar.gz.
File metadata
- Download URL: pythermite-0.5.0a2.tar.gz
- Upload date:
- Size: 61.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb8952ebb4658ef1d2064f835805a00735d407bcb7f4377c25823dca31751651
|
|
| MD5 |
3815743412effc85f0bb9db51ef39419
|
|
| BLAKE2b-256 |
5658bb71a232ee21b5766954431a9227d428176cdc6c1469137f059843971aee
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 753.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4efcc55585f081d1d5a349676bce390137d1a73b95951c3b1e25e760fb96b4c
|
|
| MD5 |
8b88fe2cfdee5c96be00d46758aecff2
|
|
| BLAKE2b-256 |
f1fc8969a8b4c2bf3e060aa5a3f4d8890f3a3418f32e43fd7f063e2c76ea9442
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 776.1 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c7f50154d56f7decf694a1adbfe15550eca49f7516f7b9f9d5282282f04a455
|
|
| MD5 |
b8518337177d65817dd97b081ee44a4f
|
|
| BLAKE2b-256 |
65e08db2a17b7e74673962cb598dfddcad923b406215ff698ebb4962d67af0d6
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 814.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a28f29811eae1b619f7b94e51ab4de50457c3ea5bd8eb2f44b00f451a7b405c4
|
|
| MD5 |
9b2ab1dc61d49268f119f9ff0425a556
|
|
| BLAKE2b-256 |
43a6ad5900d1881d096a375c3bb313cca568619d1a30a16c0c21ff188ff26e1e
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 701.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88785377ff732af067266f8514a5d869d80be5f7d8e46b2ca6a2de16d7662814
|
|
| MD5 |
d1edd09f0c9875805e27a1f8796d2cf1
|
|
| BLAKE2b-256 |
ef49808fe892541ec2c692dae31835a57f67b17603d04ec2b1434be457bd46da
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 541.8 kB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7dc0de0d6c36b26d6a487230d2b01a6f817902ed814236c152c9e341a6e722d
|
|
| MD5 |
53d5ca0c2ffde69608d720cfc641dd8c
|
|
| BLAKE2b-256 |
9fab3a63579615b43ecb075d8b91c7e8b2077f731fee9a8f580ce065cdcc09c4
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
- Upload date:
- Size: 575.8 kB
- Tags: PyPy, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9db983a319d0cfe999dc96bd0ed0c1b6b1ea4ca55ad1b311adc71a9960367ca1
|
|
| MD5 |
2416060e036b0c2c7a808953b7e91239
|
|
| BLAKE2b-256 |
32d3c6aecde1787448252e55589c376709059eee4edd4b3ace7533bcba8e689b
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 606.4 kB
- Tags: PyPy, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
422bd160b33fb7618598eaa0e2297b9eaf498a7bd0f837e16caf052d0515e258
|
|
| MD5 |
49bb3d40c450aa145c32e7eb56a62878
|
|
| BLAKE2b-256 |
4b63b9c660b0bca11fdf850dfd095c1f097911f73f65e6254e3ace341fdc3cb2
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_i686.whl
- Upload date:
- Size: 563.1 kB
- Tags: PyPy, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f879987403b1d3eeab5ee4acdae88d6344f7200858fa46ba76df2f2bc20bbba1
|
|
| MD5 |
f6fec1287bcdcd2d0490891932da077a
|
|
| BLAKE2b-256 |
c56341e17c8595a3bba13c7396eef2f76111f7573666a1262a16cc26800aa206
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 540.6 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f0b0d75511218f02c10ca799c03fec9f840d61cb5de26369d010652640d4972
|
|
| MD5 |
efe3ac79ef4d0788a451ab23e587ff84
|
|
| BLAKE2b-256 |
06cb97934df43850cb6063eabda8d441da4eba2bc1375d79eb60e076c05010b9
|
File details
Details for the file pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 521.2 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35b7c6325b436ed619747d815e278ab2f141075bc1dff4d26bfaf406e52ed0d8
|
|
| MD5 |
80687688e3f99b88717eb3700f31c296
|
|
| BLAKE2b-256 |
063e5c420b170e974e318d61bad6d52c49651d36692ab9e2ea5309d917eafbd7
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 751.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4c0b42ce17d8b881791fb3ccb1c79a20e678bec90885e58fbd4beecd5ae3af3
|
|
| MD5 |
42357fea93326c33df3f24a064d70215
|
|
| BLAKE2b-256 |
c83e973cba765e70758df673f82831025585c56a0f0350a4c1657ea203bd4dfe
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 773.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85c9f0e5accf5e9a6e3ad2f76f7cf5f53ff38dabe4c39ab5c94084384f110904
|
|
| MD5 |
26e489783e07a282b324cc366b5ebb9e
|
|
| BLAKE2b-256 |
d6254ee80410c0888f1d19961e5c39717e39935a39d0a1f0e163f5379d1c462f
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 809.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4baa51722065395dfcffab9b832d6b1834fbbf0e9641180c6fc446db6f06348a
|
|
| MD5 |
fc2034d4f9a41a76a0e71c14eec08f5b
|
|
| BLAKE2b-256 |
386cb6b45663dab912734d73071978ba3d15e2b5386af069733bc8ff3e3be318
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 698.6 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3bab519c0eb3fe23cd1926bfaa0fd1d46e339ef1e6a8f03a5ba238d1204de12
|
|
| MD5 |
45e55325b1165e0e766162c25c22b66a
|
|
| BLAKE2b-256 |
0fc33662810d2aaaea16c64b600141ba0fe0cb80528babbf5359dcdb884c3b28
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 573.1 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3c4b94a90111147890d749200372513be879faf844ba379af88fbd5170a11d2
|
|
| MD5 |
05a8d98426030bc6319f95abd808cba4
|
|
| BLAKE2b-256 |
48242547d6c966ebd708775c4911dc22dffd4be369dbf9782de61ecff15c72ea
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 603.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a58538b3b87d3cdeade7a8ca4b0bcacd0c21aadcb900b1b3714d40ffa2a0abf3
|
|
| MD5 |
a468d8cd796fd316c2e9721f571113d2
|
|
| BLAKE2b-256 |
d6d0e2ec9f295523346494d89b8e8b313be1c12dffd7576f84d9927ca688f227
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 536.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73d8637414babed3c3f65c13cd78206e75ae759e3693c38e2df51f3cfb977819
|
|
| MD5 |
e3947194c25a16fa5e9e15ec68e29c33
|
|
| BLAKE2b-256 |
4a1d8a3575b77be1b2644851f619bbcb54d5273ae690fdffb06284f6e1e5a0d3
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 518.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
997b72799011973d6ee8fd4749e278222a2f1b4b32e8961dc30f524a9ade793a
|
|
| MD5 |
e85862fa735429cef23f7db6716d1741
|
|
| BLAKE2b-256 |
eab23f3ddcfd4f104e93e8e65b3e96a6865f5adfda50605bb38415e67fe85008
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 422.5 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8de68e331d6434755d5a24eacbce9b4447349a26412859dd4295bb65af109365
|
|
| MD5 |
10bc413d15746e31efef1a490f1a08e6
|
|
| BLAKE2b-256 |
51531369abfc0f89e96ee143763c20c03db4f767c9c1ac83eee939162c49b6b8
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 752.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e28a765e35afa0b56da47cdb09eb4fd691a02febe499f888c1af3027d22a9c3
|
|
| MD5 |
ad8d3527b8d23782c0168a94fa193feb
|
|
| BLAKE2b-256 |
8643126b70a29ad7a57466249a67174c53d8d326fde93a248678c591a288092b
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 775.2 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f76755dbc44b92647a8641bb2b7308d2e5c7716d8be952922fae64eb1641675
|
|
| MD5 |
9ed39486c1a37e93b781f04d22424aa6
|
|
| BLAKE2b-256 |
b276fb8e45f1c6ddbe9b1cc26812ddde6d01519918312508a32e9a374f4353b4
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 811.7 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acc5b6d545e2ed559b3be2c9d495744292b97516d3abf4756bc7fcd587ac2d7c
|
|
| MD5 |
cb28cb28ff0a5974cfa1958fd64d59cb
|
|
| BLAKE2b-256 |
ee73e66dfe8d120a62a6c111101a12e68c08188839cfc32db4edbe3649735634
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 700.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67977c47fe1e89d5bc1d55d83d44dda09b0f3881ebb13b5068ca1b1f2a615e0a
|
|
| MD5 |
a7c3637b45efdc70b62b0a888bf83214
|
|
| BLAKE2b-256 |
82b0d7b159b83b29a7a6a3c3370569dd7a8cfd2c467e56109fb87589bb281e9e
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 540.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ad4f2475c59955a74961685c5f1170a91e179095c4ff6417b155485c5021ccc
|
|
| MD5 |
e96e2aefbb34d3cccfd8b0ebb5c27608
|
|
| BLAKE2b-256 |
05087d375bedd731ce3ecdb280b33673a180fa81740689a14c5e049e9467c634
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_s390x.whl
- Upload date:
- Size: 574.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7415935748ebd1aa92b2d6501d8690d401a3a2215a3e5672d22537c6e0f83969
|
|
| MD5 |
cb242065f89bf90827e828f32fd8131a
|
|
| BLAKE2b-256 |
3b3b335c3ff18a0347cce6d00e0e9a0e5b130cbfbf3028d239c699a35639213e
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 604.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a15528b007965f10f055def20e4a8e16dbb96cd94e5a30523bc5fbf8c82e5911
|
|
| MD5 |
b028eb515b881a30ba1a61497cd2080f
|
|
| BLAKE2b-256 |
9153f8e0a017670a2c264b84c707e2b1dc73842188c1b0bf7d826174b61551f2
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_i686.whl
- Upload date:
- Size: 562.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4756aeb64c3dcd1e5e88564cc5a758ea443baaacd55e8e4ae08359a6e87fd47
|
|
| MD5 |
eb22ced8cae87fa7489ad20555b3e73e
|
|
| BLAKE2b-256 |
788915b8d1408628c0face6c1b2f0b2ab2c633bb5b67cf3b686bfb7f0cf7c885
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 537.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2804a566d1ecb15dd22a387c2648931a9bb96eddbdc003d98ee6d074431d94bb
|
|
| MD5 |
ca432719f1aa76c76d6987aff62aa6f7
|
|
| BLAKE2b-256 |
973f5b58d55af5d192e371db66d03807601d9cf32c7512652675a14d74870326
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 520.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd6c675b2afa229331d75743e17a8cfcecd43b3d2f066adc20c246a0448be309
|
|
| MD5 |
270cded1f48df3d2c6bf19b88b7c70bc
|
|
| BLAKE2b-256 |
bbe52a4924b9d0060c88a2d698074c8ce682c070e3798a7289439b228dd7500d
|
File details
Details for the file pythermite-0.5.0a2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 497.0 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f19cf56b0b4f34fe23db04b721221b3a9450a5ecf80f69b4845c99a3c8496903
|
|
| MD5 |
36434e56760338828c9b08a6173ff680
|
|
| BLAKE2b-256 |
83325f4d0bc018ad01136a75cfd65b0f21323aa51632f44da3691b3823c308b4
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 750.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41b224e03500a1958269ca05b329fc5d2bb0f0fa7d625e193a78a0fd27347ebb
|
|
| MD5 |
c3ec0a0f27c425eb68cd3e3cf434ed75
|
|
| BLAKE2b-256 |
3ed609fa01fdd635f8f06b9e6c89cb6efa5e8a178e56dc399ffab8779d938684
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 773.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9c3ef7732043d894ea265eb198cc3eae721252425d7749f81ecaae50dedccd4
|
|
| MD5 |
c7611136c15aef5e56df748d476198c1
|
|
| BLAKE2b-256 |
2acb517d864379e6167960d9b27aab4cd98690c87b353f3885d2fc49d8c13a0c
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 808.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fd62858406abd2d8ca05585b02592153d409ac0bd8fc4f0bafaabc753690024
|
|
| MD5 |
412c96e86c2c13cb80bdc3d686581ffe
|
|
| BLAKE2b-256 |
69e084e98ef0cb62e4de591f5914c8eea8f435280f6318e443538e2cea65a663
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 698.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83ce1feaa68e7249a5d68102cc1b45bb991d3daff075dd9175a8d986ba1fe72a
|
|
| MD5 |
099ea49f0207002c42fb69979021adda
|
|
| BLAKE2b-256 |
8832a0d86837ee6b25b9f57c2c0674f7fc924089cde3ed6540454f7599c7c799
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_s390x.whl
- Upload date:
- Size: 573.1 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b7047904b38722c5deff54f0573721b2ab51579935ae53f9f0f850aaa2109c2
|
|
| MD5 |
ee6abffcb4d7a8c7e1f8e2942da3989e
|
|
| BLAKE2b-256 |
fbc342d37d047ea1c1bcff18a95d550e4eb52623f650fbd10da175452662103f
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 603.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
965c5ecc5acfdc1aafc53363bb61e1bb0e1e7bd8b8a37f08ef77cafce393e852
|
|
| MD5 |
42bb2ae8c9512d2016f742132a16b2ad
|
|
| BLAKE2b-256 |
e66bd67ff2a373f18b225e9aca5b54fc832630d509a878f608f85b524e6b0ec3
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 535.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ded6794ce2fa97d00a9a955506094d505985f6e725dd29b09c1dbeb952cc115
|
|
| MD5 |
0e47cd2b50f1c1a54bc607ecfe4a25f2
|
|
| BLAKE2b-256 |
c1e8f17a0938a73057f9f25fdf1d711a80686f11e2d33663a7341e9200900bb6
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 518.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
037d3de76cefbc78c598b54efac924a766a7de49916c66ca076bc0734356bd01
|
|
| MD5 |
fa9beb21a6ae1fb1495cfff2a5888954
|
|
| BLAKE2b-256 |
ac3077e71c33703b184d1b96e0fff0cff5adf6cd6ac97ebcb4af5837ebbbd634
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 422.5 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5fbca4c9510991ef6b4989569c9679b72d603de37ab735e85afdb5b1490b8e
|
|
| MD5 |
1b0fd09c794c4613c6690a23598078ee
|
|
| BLAKE2b-256 |
0baadbf9de9abb17b24fe7ffba7296b315a326794ca167bb96b46c5b84e48bbc
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 752.0 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7044a257a6f22c1f91be320439bf928bbe97e2efcaf983f3f306dd11095a9dc
|
|
| MD5 |
652847e7d60eb132471baa083bbe97ae
|
|
| BLAKE2b-256 |
2aaedd6b2f517711160d84716dbea761d5e3210fc2e10c9ef3d92f11123fe30a
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 775.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
598babc7ae4efbe66c76e5c16cb01d3ce67d1d4d3fc527a7b9ffd0d654968bd7
|
|
| MD5 |
dd12959d2ef0a3b92201e7e6878e80fd
|
|
| BLAKE2b-256 |
1916a53ba929826cec7e62f42b29e3ed05a110c4f6c732234117817f28329bb0
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 811.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
457c72bc2df0cdd98ba929072f349eeca5833cac986a97f955da9bba9bf18843
|
|
| MD5 |
355d61a0e8ee72b051ff4256ef4e4c1b
|
|
| BLAKE2b-256 |
02fa7914cce3cbd54e5d38f3d2d86a43d5253d1df2d88c52cdc0743a78e07494
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 700.1 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8846495f5be1d87ca54143de2c09d381ef61977df4e6345016995653e331cfd4
|
|
| MD5 |
3b7f7c78d853d33319df80d1e02ccea8
|
|
| BLAKE2b-256 |
b38e50863cf68cd0318eba29fe844b95923c70ef57b7bd488574344896ae5d7b
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 540.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b2beb6879166ec04d1b818c8b5290b5a8334dab2eb267e339583dff0e434f47
|
|
| MD5 |
34f6f156880f2ed51dfbe6bc41eaeed6
|
|
| BLAKE2b-256 |
65c8090f6b20563a7560585dd3339821b9c7e6ddee634a73eb69ccf017a727b8
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_s390x.whl
- Upload date:
- Size: 574.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fec6903f9af09b3819260c0878f91accab32db4ae43cfecaf9c49b3e1119867
|
|
| MD5 |
cc6578f3c0f6976aa627139a61554018
|
|
| BLAKE2b-256 |
960f2ad6853b6fa34c237208643599f88dcb92c650fd92b78461897662c85e02
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 604.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1b589ecb46b5c29f1d820cca79db78575688b18f6d8a27c60b83c2333f81105
|
|
| MD5 |
b5ca525fa0b3ab3d55616e190843c156
|
|
| BLAKE2b-256 |
29eeaf2f67cfd5d3d1b943cc4d9aecc0aa5856f2a62ef015f0dcde9d32d31f14
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_i686.whl
- Upload date:
- Size: 561.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23dc6fdeb0a05c865d3df63227304eb5ec5e0187d3f27b200fdc1e0b3ffc804e
|
|
| MD5 |
fc543c4e963affcab9f224adeae93ea9
|
|
| BLAKE2b-256 |
02e387ca05a205678e9f9412c3650c974965ba5b5e40d02a6312decceaf757fb
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 537.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb4c085ce759469ae669ca2949c888a4323ccb8303004b768c616cf1d8538736
|
|
| MD5 |
42605dfe5ce159d083f46a507e829389
|
|
| BLAKE2b-256 |
ea1601c91ae00884235c7b25f1839397829be54b08c5f4ec89654b84c83a29f3
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 520.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d30ae259f763936a25f64552d491212f7204ef86e32dc5d9c81ff319d354527
|
|
| MD5 |
f75095f2ab054f45c4b0d0a31af9ac5b
|
|
| BLAKE2b-256 |
15e83bbf8348ff0cc17bc3391128ea65f4accbe7b245785b5759b0bb2bf5abf7
|
File details
Details for the file pythermite-0.5.0a2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 496.7 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a8a4bbaeb43c97cd11ec2636af90b8e9fa121bbb10d5bfbacb6e3762108fbbc
|
|
| MD5 |
82058e75b704545918d2263e6ff89c41
|
|
| BLAKE2b-256 |
bbaebb1ad4398921503c7d7491dad1c2caedabf2dea228a041ccce3a3bc18f5e
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 422.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a9575cadec06b07ee79852cd958ab1c1f1d7add9c2e6b061fbaa491065c3811
|
|
| MD5 |
9fcacf82eeef6347f230e363e3369eeb
|
|
| BLAKE2b-256 |
6ba8807347d5cfcd7d471c79739b9ea30a7b163e629a75390be055d2cc84b6f0
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 752.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02a5fca5b1607bd18d5d7eb774525bc7618291b76d2ef1f091893a424b66c167
|
|
| MD5 |
427372c7b2eb92268f638cb28c06d21e
|
|
| BLAKE2b-256 |
2b3009104d9c01c8c1985205a1200a8317a9eaaf666e271db42166d23035de9e
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 775.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a64ce4799500b921e8a32763bbac7e255aded8efedfa09e0f1caf2dd11c91c42
|
|
| MD5 |
88fddfea1ad94cd790d6984297d9c235
|
|
| BLAKE2b-256 |
ad5f3f3066b43a3cea3357b338ed4da7e293896b99125c2e4645bb1adf79bec0
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 812.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72fd5ce8bc5a48c859997cc145a20fcce6a632ad26e3aca200994b61125f5f2d
|
|
| MD5 |
25c8e8effbc73695a161146f08ac1800
|
|
| BLAKE2b-256 |
0e850b225f5dc157661e4bab5673f6059ad4c11f2ecd78c662c705fd35c101b2
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 700.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc1980059d220e02d7d4f325e67a57bded4298417bd46fbbbf83dcbdc360b35f
|
|
| MD5 |
c8a73b7d7618cb0d4d10929d3a3c5c46
|
|
| BLAKE2b-256 |
8d38f7c30e4db711ab60d758e791a07c1143d98731efc853079ef253f43be9ce
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 540.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c2ace7443d74974ef85135e0508317776c7605424690da5d67d03d50279fdc1
|
|
| MD5 |
e2d3d47acd5fb9a7f14d22dc2347c8c7
|
|
| BLAKE2b-256 |
3bccc175b1f748e24e7641edf811e4f480d8751e9c5fce63515a3d0e6feaa3b6
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_s390x.whl
- Upload date:
- Size: 575.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2191a3e8655ebef1a8a3add78bd13c6da33d479429ff95a3983ccad5d8d920fc
|
|
| MD5 |
d6347b3c10a964f4be10bb0a8deb2b80
|
|
| BLAKE2b-256 |
4d953f381b8c3f12f0225e37d9ebbc178f10f5eea0bdbeea9c108bb50623a02c
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 604.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d11bb45686c786c374c484c48915e6023c5d06961c40aaef4b425b1731f2840
|
|
| MD5 |
5710ae8e1dea7b6bb8ac19e5f633e1f0
|
|
| BLAKE2b-256 |
bf3a2e05cf27e95a8c7b75f0dfcac97c314ff182422736c3b585452e17c2cee6
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_i686.whl
- Upload date:
- Size: 562.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7b95491166d1c0393d613af12e8dc121f2246de9d12d7f203559155ed4d44df
|
|
| MD5 |
bc75d8dc5bebf0166043f116a555cf6e
|
|
| BLAKE2b-256 |
c5d4b8b8138029a17c9f07bd9c27b6318255c11c86aa0932238eab153c81f828
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 538.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef35000f57bc685908bff8f35286e321fec79831bbac57d1576b11ef2d430341
|
|
| MD5 |
0fdd71c4c890cceed15912c0c2a74d56
|
|
| BLAKE2b-256 |
9bd3c15a89e9b1e0e6e3b04d4cd56d1c5df08f90a11125940f1bac4387185013
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 520.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3651cdbbc9c281cc1172198b4260d76178c882da2e33b2a8ed94521b0f439a0
|
|
| MD5 |
a01b5724287bb255e81af05f5647a8c9
|
|
| BLAKE2b-256 |
fbf9cb51c521ae76c2beaf252ec0c484101508406599eaeef78cbd7d11a9212e
|
File details
Details for the file pythermite-0.5.0a2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 497.0 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
707387a939ee34e86aaf955275d1e628d351c3962071857980715cced0b3a4f0
|
|
| MD5 |
edf221c5b347b2a89f76fbc0e786a690
|
|
| BLAKE2b-256 |
8898302f4f77c9942310e8de1b3ccb50b07e3b4a0374772ba313c0df6ac080b7
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 421.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8da269288dd28d21109b56c801e9699bbd60ccc69512ed20bf8d7350e94aa36e
|
|
| MD5 |
fdf63b293d794aadfee084a720472dfa
|
|
| BLAKE2b-256 |
09167bbd613094e53b437a66d98227e6bf6b2e64bd775757baad2857856b79b3
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 752.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ff4eb1d612486161169a62917d3f29679b534cec8d66e2b1312e4a8725d8f40
|
|
| MD5 |
df8c831131d40e282124a22f2ce1ed66
|
|
| BLAKE2b-256 |
276bb9be39c0b6de544b4305150c84eca3bca4d4239196b645940a4985e821f9
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 775.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8faa8b355ab7868b1255a412d8a32065a46ffcd13708bc4218cf3d7f7a0b6af
|
|
| MD5 |
56f111f6b86fd17c57f392150fa90e9c
|
|
| BLAKE2b-256 |
b07d4cbaaca48e949425e1205e45225d69e4694a8221ba8644f7dbe1ea7f3bd6
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 813.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
451084eae2612044dd73a03f2cd364da5890682392a585332b97bfb5adebbdb5
|
|
| MD5 |
b0c04529707beaffbc2d1201844ea814
|
|
| BLAKE2b-256 |
4e590e682d8b6301c0ad7ee386168b2160e831891da22ac7d29fa8dd42659043
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 700.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7244f2adc56a3f16fc3ad5857acf03c6d035749fb27c8501bb9a7e5cf097823
|
|
| MD5 |
3d50970bbf44f9861094ff9026e4ca47
|
|
| BLAKE2b-256 |
fd78ce43732a79456fadc4bfb562e1dcd8944026d1062d5e5c4b7e86312f3a05
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 540.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfc4968a14d2232fc0367ea84285253d95b16114b000314eda7b77647c9b1a6c
|
|
| MD5 |
ce18ac96358a665e12b3227c140c41b6
|
|
| BLAKE2b-256 |
02cd93f3dccb2ab0e71f95cbe59adf909998bc18ecf2b5297fcbed3fdda6d8a7
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_s390x.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_s390x.whl
- Upload date:
- Size: 575.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bab5c755d0f203e84dafa118094fd487decbff5af53cbfa5a26857d71db4769
|
|
| MD5 |
8b20e963117e19e7b4c3fd99ab9d5cb5
|
|
| BLAKE2b-256 |
1ba6af1457bd97dc4a5244fd2276e0d6602d89c8a252afeaa19d11c2911b82c0
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 605.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f845df3d6c9a1f4168f9105a4f30122c77776f32cd500cf638594ce82426e984
|
|
| MD5 |
ad87d38caa104429c0a5618fcbf32d04
|
|
| BLAKE2b-256 |
846435803307216a9d98230ee6edbbc23438d065e1c80912c339fd283672c993
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_i686.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_i686.whl
- Upload date:
- Size: 562.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48d0774e2f85edc10184e9639c99e50d1de2fd39efa943c08dd236c19d21cc68
|
|
| MD5 |
e9473664a78c5e6664008285ce627a8c
|
|
| BLAKE2b-256 |
096426543707e1a54893efd5c6baa7d8054c18393a53e9c8f7deafc4c1cd7dba
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_armv7l.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_armv7l.whl
- Upload date:
- Size: 539.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c208d724af743bf983a52b3856eb4bf1012ca6f9fa279855cf6565f959740451
|
|
| MD5 |
b565b070967d9ba4a48d55d77639319e
|
|
| BLAKE2b-256 |
c71009b4a2f9df59b97dc29b446122ff15b096e82e0f548fd93d583bef3020bd
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 520.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3494b8329e3d06411263bd16e0b8667d9d63723b4ed2144b33b0ae76a659ddd4
|
|
| MD5 |
50f021da515e45770007f503131fd15d
|
|
| BLAKE2b-256 |
0e6663d5b93f9810c19b19e74780dee02eab2db22a271927c88f887a6fc19553
|
File details
Details for the file pythermite-0.5.0a2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pythermite-0.5.0a2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 496.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c29b2906e2b6ed67b5ebb5f787589fa628b8b5db75b7be1e700ccc438c87f4a
|
|
| MD5 |
f0abe14d97430d2e9013f05fb1cb90a7
|
|
| BLAKE2b-256 |
5b94ae988d7e27a713324882aed444cb4784782c938449f0b68afad3710891af
|