<yaxp-cli ⚡> Yet Another XSD Parser
Project description
<yaxp ⚡> Yet Another XSD Parser
Introduction
Using roxmltree to parse XML files.
Converts xsd schema to:
- json
- arrow
- avro
- protobuf
- jsonschema
- json representation of spark schema
- duckdb (read_csv columns/types)
User Guide
Python
- create and activate a Python virtual environment (or use poetry, uv, etc.)
- install pyaxp
(venv) $ uv pip install pyaxp
Using Python 3.12.3 environment at venv
Resolved 1 package in 323ms
Prepared 1 package in 140ms
Installed 1 package in 2ms
+ pyaxp==0.1.6
(venv) $
Python 3.12.3 (main, Apr 15 2024, 17:43:11) [Clang 17.0.6 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>>
>>> from pyspark.sql import SparkSession
>>> from pyspark.sql.types import (
... StructType, StructField, StringType, TimestampType, DateType, DecimalType, IntegerType
... )
>>> from pyaxp import parse_xsd
>>>
>>> from datetime import datetime, date
>>> from decimal import Decimal
>>>
>>> data = [
... ("A1", "B1", "C1", "D1", datetime(2024, 2, 1, 10, 30, 0), date(2024, 2, 1), date(2024, 1, 31),
... "E1", "F1", "G1", "H1", Decimal("123456789012345678.1234567"), "I1", "J1", "K1", "L1",
... date(2024, 2, 1), "M1", "N1", Decimal("100"), 10),
...
... ("A2", "B2", "C2", None, datetime(2024, 2, 1, 11, 0, 0), None, date(2024, 1, 30),
... "E2", None, "G2", "H2", None, "I2", "J2", "K2", "L2",
... date(2024, 2, 2), "M2", "N2", Decimal("200"), 20),
...
... ("A3", "B3", "C3", "D3", datetime(2024, 2, 1, 12, 15, 0), date(2024, 2, 3), None,
... "E3", "F3", None, "H3", Decimal("98765432109876543.7654321"), "I3", None, "K3", "L3",
... date(2024, 2, 3), "M3", "N3", None, None)
... ]
>>>
>>>
>>> spark = SparkSession.builder.master("local").appName("Test Data").getOrCreate()
25/02/01 16:27:30 WARN Utils: Set SPARK_LOCAL_IP if you need to bind to another address
Setting default log level to "WARN".
To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel).
25/02/01 16:27:30 WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
>>> 25/02/01 16:27:42 WARN GarbageCollectionMetrics: To enable non-built-in garbage collector(s) List(G1 Concurrent GC), users should configure it(them) to spark.eventLog.gcMetrics.youngGenerationGarbageCollectors or spark.eventLog.gcMetrics.oldGenerationGarbageCollectors
>>> j = parse_xsd("example.xsd", "spark")
>>> spark_schema = StructType.fromJson(json.loads(j))
>>> df = spark.createDataFrame(data, schema=spark_schema)
>>>
>>> df.printSchema()
root
|-- Field1: string (nullable = false)
|-- Field2: string (nullable = false)
|-- Field3: string (nullable = false)
|-- Field4: string (nullable = true)
|-- Field5: timestamp (nullable = false)
|-- Field6: date (nullable = true)
|-- Field7: date (nullable = true)
|-- Field8: string (nullable = false)
|-- Field9: string (nullable = true)
|-- Field10: string (nullable = true)
|-- Field11: string (nullable = true)
|-- Field12: decimal(25,7) (nullable = true)
|-- Field13: string (nullable = true)
|-- Field14: string (nullable = true)
|-- Field15: string (nullable = false)
|-- Field16: string (nullable = true)
|-- Field17: date (nullable = false)
|-- Field18: string (nullable = true)
|-- Field19: string (nullable = true)
|-- Field20: decimal(10,0) (nullable = true)
|-- Field21: integer (nullable = true)
>>> df.schema
StructType([StructField('Field1', StringType(), False), StructField('Field2', StringType(), False), StructField('Field3', StringType(), False), StructField('Field4', StringType(), True), StructField('Field5', TimestampType(), False), StructField('Field6', DateType(), True), StructField('Field7', DateType(), True), StructField('Field8', StringType(), False), StructField('Field9', StringType(), True), StructField('Field10', StringType(), True), StructField('Field11', StringType(), True), StructField('Field12', DecimalType(25,7), True), StructField('Field13', StringType(), True), StructField('Field14', StringType(), True), StructField('Field15', StringType(), False), StructField('Field16', StringType(), True), StructField('Field17', DateType(), False), StructField('Field18', StringType(), True), StructField('Field19', StringType(), True), StructField('Field20', DecimalType(10,0), True), StructField('Field21', IntegerType(), True)])
>>> df.dtypes
[('Field1', 'string'), ('Field2', 'string'), ('Field3', 'string'), ('Field4', 'string'), ('Field5', 'timestamp'), ('Field6', 'date'), ('Field7', 'date'), ('Field8', 'string'), ('Field9', 'string'), ('Field10', 'string'), ('Field11', 'string'), ('Field12', 'decimal(25,7)'), ('Field13', 'string'), ('Field14', 'string'), ('Field15', 'string'), ('Field16', 'string'), ('Field17', 'date'), ('Field18', 'string'), ('Field19', 'string'), ('Field20', 'decimal(10,0)'), ('Field21', 'int')]
>>>
>>> df.show()
+------+------+------+------+-------------------+----------+----------+------+------+-------+-------+--------------------+-------+-------+-------+-------+----------+-------+-------+-------+-------+
|Field1|Field2|Field3|Field4| Field5| Field6| Field7|Field8|Field9|Field10|Field11| Field12|Field13|Field14|Field15|Field16| Field17|Field18|Field19|Field20|Field21|
+------+------+------+------+-------------------+----------+----------+------+------+-------+-------+--------------------+-------+-------+-------+-------+----------+-------+-------+-------+-------+
| A1| B1| C1| D1|2024-02-01 10:30:00|2024-02-01|2024-01-31| E1| F1| G1| H1|12345678901234567...| I1| J1| K1| L1|2024-02-01| M1| N1| 100| 10|
| A2| B2| C2| NULL|2024-02-01 11:00:00| NULL|2024-01-30| E2| NULL| G2| H2| NULL| I2| J2| K2| L2|2024-02-02| M2| N2| 200| 20|
| A3| B3| C3| D3|2024-02-01 12:15:00|2024-02-03| NULL| E3| F3| NULL| H3|98765432109876543...| I3| NULL| K3| L3|2024-02-03| M3| N3| NULL| NULL|
+------+------+------+------+-------------------+----------+----------+------+------+-------+-------+--------------------+-------+-------+-------+-------+----------+-------+-------+-------+-------+
>>>
with duckdb
$ python
Python 3.12.3 (main, Apr 15 2024, 17:43:11) [Clang 17.0.6 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import duckdb
>>> from pyaxp import parse_xsd
>>>
>>> j = parse_xsd("example.xsd", "duckdb")
>>> res = duckdb.sql(f"select * from read_csv('example-data.csv', columns={j})")
>>> res
┌─────────┬─────────┬─────────┬─────────┬─────────────────────┬────────────┬────────────┬─────────┬───┬─────────┬─────────┬─────────┬─────────┬────────────┬─────────┬─────────┬───────────────┬─────────┐
│ Field1 │ Field2 │ Field3 │ Field4 │ Field5 │ Field6 │ Field7 │ Field8 │ … │ Field13 │ Field14 │ Field15 │ Field16 │ Field17 │ Field18 │ Field19 │ Field20 │ Field21 │
│ varchar │ varchar │ varchar │ varchar │ timestamp │ date │ date │ varchar │ │ varchar │ varchar │ varchar │ varchar │ date │ varchar │ varchar │ decimal(25,7) │ int32 │
├─────────┼─────────┼─────────┼─────────┼─────────────────────┼────────────┼────────────┼─────────┼───┼─────────┼─────────┼─────────┼─────────┼────────────┼─────────┼─────────┼───────────────┼─────────┤
│ A1 │ B1 │ C1 │ D1 │ 2024-02-01 09:30:00 │ 2024-02-01 │ 2024-01-31 │ E1 │ … │ I1 │ J1 │ K1 │ L1 │ 2024-02-01 │ M1 │ N1 │ 100.0000000 │ 10 │
│ A2 │ B2 │ C2 │ NULL │ 2024-02-01 10:00:00 │ NULL │ 2024-01-30 │ E2 │ … │ I2 │ J2 │ K2 │ L2 │ 2024-02-02 │ M2 │ N2 │ 200.0000000 │ 20 │
│ A3 │ B3 │ C3 │ D3 │ 2024-02-01 11:15:00 │ 2024-02-03 │ NULL │ E3 │ … │ I3 │ NULL │ K3 │ L3 │ 2024-02-03 │ M3 │ N3 │ NULL │ NULL │
├─────────┴─────────┴─────────┴─────────┴─────────────────────┴────────────┴────────────┴─────────┴───┴─────────┴─────────┴─────────┴─────────┴────────────┴─────────┴─────────┴───────────────┴─────────┤
│ 3 rows 21 columns (17 shown) │
└────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
>>> j
{'Field1': 'VARCHAR(15)', 'Field2': 'VARCHAR(20)', 'Field3': 'VARCHAR(10)', 'Field4': 'VARCHAR(50)', 'Field5': 'TIMESTAMP', 'Field6': 'DATE', 'Field7': 'DATE', 'Field8': 'VARCHAR(10)', 'Field9': 'VARCHAR(3)', 'Field10': 'VARCHAR(30)', 'Field11': 'VARCHAR(10)', 'Field12': 'DECIMAL(25, 7)', 'Field13': 'VARCHAR(255)', 'Field14': 'VARCHAR(255)', 'Field15': 'VARCHAR(255)', 'Field16': 'VARCHAR(255)', 'Field17': 'DATE', 'Field18': 'VARCHAR(30)', 'Field19': 'VARCHAR(255)', 'Field20': 'DECIMAL(25, 7)', 'Field21': 'INTEGER'}
>>>
TODO
- Add pyo3/maturin support
- Add tests
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 pyaxp-0.1.7.tar.gz.
File metadata
- Download URL: pyaxp-0.1.7.tar.gz
- Upload date:
- Size: 29.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2af083bdff4a2ef72d54e9bfc0db6565c2745c89975760e31e061dceebb06f63
|
|
| MD5 |
8b6023cb0f0da3e81dc8855b70fd2c90
|
|
| BLAKE2b-256 |
34269ccc02d8094756849e86cfeae032dfd711a6feb36037d6f3f778bda82b28
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 531.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4619a420ee89c20429df9b490dabcd78188b02acde3dd550d44a549c325f4aa6
|
|
| MD5 |
0a4e1167437777707c69f6d6c4fc0f56
|
|
| BLAKE2b-256 |
cc010bc774e379e4d906a07ab154c62b22563b1a6f2b03d3a5ef951a989a9f8d
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 626.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83f0263f6ccb3a4bf142d3d7c887bbee4f6ef4af02ec12a1148512fd0d913946
|
|
| MD5 |
38a8d57e10cbe1caad437f57e3163df1
|
|
| BLAKE2b-256 |
2da9c1b5b809cd6d4e9052c7b8d1927ed80831f23aa7120e0f258ccb5d291493
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 536.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af5a333ab5c1955fd2c6c14013108754d32b93562596069b0b66c7787bec692e
|
|
| MD5 |
e571814d00c667c5722b2ae19683004f
|
|
| BLAKE2b-256 |
253895320ae4096d2302776f2d933008b8976a3405b32085c6969a9d3e47b8e4
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 367.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5168850928e9c46a075f827e02285e6809d6d22d24c6bc73d560da7c15b2b380
|
|
| MD5 |
8fabacfc6b26b5fecda302ca1a798b82
|
|
| BLAKE2b-256 |
f97a1f00f551f33c10798e9c5dcaaea4c17e1a49547beb07f13a34ed0731bc5e
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f2f7e1f40c8955c2619d6995dad915fe4003221288e93bfcf62c09b845928fb
|
|
| MD5 |
b37ec40d9ff1ad914a46e238e5b6999a
|
|
| BLAKE2b-256 |
60071beb28a25c3d7067434b6c9bd77a9c17b7e119f5e0d06a81cb6a1b133560
|
File details
Details for the file pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 365.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9b7df831be45ab0136c4a05fe02ce3ea69d142479a807165a9c9fae25146c66
|
|
| MD5 |
9491d02967de5af890d60c43f3cf5c46
|
|
| BLAKE2b-256 |
0c3705f4cffeb2de99560869559795247a03daaa27ebd8af05b6877e346d270c
|
File details
Details for the file pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 531.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6f32d8997f4beef79f7ada5325f9b9f88ed568ec44636ffe793e37bed75893f
|
|
| MD5 |
56dadf5685d0c9e3f60fbf7322bf71b3
|
|
| BLAKE2b-256 |
ea2fe0e7b368363384e09924824227ad12eecb58941d857165a82e7a8f30bed7
|
File details
Details for the file pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 626.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1333d1d41e726eab8532d129ace30f9cd10382ecb088189355a8a96977cacf6
|
|
| MD5 |
a37050a20a0fd0020f92b3d6c36ef6b5
|
|
| BLAKE2b-256 |
9a25289ab473d68509a2241983847e204af4fa9d25f2dc882490544c6fc03687
|
File details
Details for the file pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 536.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2a279a2f9975f156c3bb8701c9e0b0d37b415356d9832b70cdaab1ff8ddb1dc
|
|
| MD5 |
09a682b5fd6a45c305d127a7095b77f4
|
|
| BLAKE2b-256 |
018ad50c593b510eae06394dc2895e3f6c960407c525416c9ce14707ec132532
|
File details
Details for the file pyaxp-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 370.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9ddea0f11bb9ab05d95274cf623ce108dcf313b43ddb8ec7664defd1351c1ab
|
|
| MD5 |
36849387efd356854d3a1b3ce324bce8
|
|
| BLAKE2b-256 |
98b50f91f7aa9a3571ce1b812385cef3d33fe397d9f2d4ab89b74bceb38c2eac
|
File details
Details for the file pyaxp-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 365.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b93ca6679a663c937285ed2938ed74800019447bee5ad51196d9cfe1145ba24b
|
|
| MD5 |
3683fdda3623623ca64e5d6c8cee46e7
|
|
| BLAKE2b-256 |
f329b7e41d8711be8e2a48fec8c3447901762a14e90c5866b622a4612b37d950
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 529.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3897c55f6eaf279c56f3d73f25f75f35bb7fd603dff84be6538a136be56b5102
|
|
| MD5 |
3544b2f2a120c829d0927908b008a9d8
|
|
| BLAKE2b-256 |
8004ae5969015d8144b9b633f05426ea6a531e4d3f1d88191b187c7063bfc802
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 623.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d5dff259e13873813f16abee0c2c6455cb1c9847829b5e4f08883649658da24
|
|
| MD5 |
bc5b98786edfac4c1e11cb4122364b59
|
|
| BLAKE2b-256 |
bebbffa070bfbd441e8bc66dbfecf5b112c139439ede4dd753d1e4b7fab21b60
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 533.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d21c1bf5d3fa82faa82b2f9dacc005f71f6957bfe1c2972bd57c58b6e5f9bff0
|
|
| MD5 |
ec84ef11db592b7d90e13d3b1e9f5ba6
|
|
| BLAKE2b-256 |
d99def2adb4e0bf6a5e2e6bd6fc35555d5303be6114806ac6965498e74d42149
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 368.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b7b2b0680b2b15a15dc5dbe6b93ea8dc73f068920c822edf7d4ccc536c9f172
|
|
| MD5 |
6553143cf6e54dd61749f8623577a0cd
|
|
| BLAKE2b-256 |
b93775c5c90eca795eb54c97b9875b87ed35a4e4dfc6a4051bb9e0325f1419fa
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 363.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3373a5daa35084a0bc30c7ea4f8050861b83f4c019861c9525ce16563fc88a7f
|
|
| MD5 |
ffaafd21e6e12d087b4d8261565b6cf2
|
|
| BLAKE2b-256 |
dfddfa6dc29f35b32f92e114dc08c84cafa2c3d76d668c17bb94f17185fd2ec2
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 219.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f55473d1d2c32d6de2e77a96ca5211fed969317a1f2324ba8959499f12400240
|
|
| MD5 |
8ffa9bc88f849ab7a847298da189e714
|
|
| BLAKE2b-256 |
98aaef43c3e83f856dd0948e3a1c19014e6b6a74a8239d5bf588891b7553a26d
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 530.2 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2bdd8fc335dbe3eaf915187df8ecab2d77b35b296ff9a8d30d52efc6092439f
|
|
| MD5 |
c220f3f0bcd27be127b4bd498e7fc2d7
|
|
| BLAKE2b-256 |
589e7a7c2f41589055bb7d94c66224fa182bcc573ee1b817a62cecd66f55ef9c
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 624.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b41d1c7c5c1c955a0730862be89af6a2283b165e1dc27a99ff398a62ca3b3260
|
|
| MD5 |
6978db7c00eb9ff8a0227620295ca47f
|
|
| BLAKE2b-256 |
81d893c8973d612123ffce41dbb64d11120fcc0e14b08b3a98a40e4d5605b1ea
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 534.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1c6192315707e3a82fdcccb66a3415a699e395ce7da5fa25297b5dba21dc673
|
|
| MD5 |
0395f695c979c7c484f61f6e6b6d46f9
|
|
| BLAKE2b-256 |
d7efad625d172df4594e02a377f759e1b426b360085310dab3d73fa273deccca
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 365.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
659a00845df7f0e59afab11f38dd5c94bcdbb5078232066da2037f74de45d395
|
|
| MD5 |
e8536b7684cd8ad19636327e9007ac05
|
|
| BLAKE2b-256 |
1e2f8194bae5be848ca74523bf06d2a0e74446b7d294827fe9ffcdcb6bc395f1
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a0508121e467fe997a3b0d08bfdf0301f0d048542b2095197703fd006bc047d9
|
|
| MD5 |
08137b73524a027508527bae2c3c5742
|
|
| BLAKE2b-256 |
65594e41db5af0dcf730ed7b3977d33234f2d947809da44bd6724589d73fe645
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf7169d65ddc2af313e4e462c6e8e16f34f46fccf1ef8470067eb4a01b339601
|
|
| MD5 |
928b95a7a32d6070ee3be2c6008aa153
|
|
| BLAKE2b-256 |
e3eb238d2a3561a4576ed9b1385831ceee0df540226ef1c38d3ab4116b1c16a0
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 324.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1794601b971ef057945339d750b5e700e2377210331f28b919e31890457a19be
|
|
| MD5 |
6f47f3d63cc371853045ffb0734341b4
|
|
| BLAKE2b-256 |
5b5295f2ec0ae6067b53e7cdba7734cdb237a985b25399fe313e1e50a2ed9e57
|
File details
Details for the file pyaxp-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 332.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1e0645314c3066c37a4b9f16d553d9133d8beb33ecd6afeda863ce5ffe29f53
|
|
| MD5 |
45d08c462de3f5b49678316a9c0c545b
|
|
| BLAKE2b-256 |
c26b5f3db361d7020b52da7cb2018ea39c72c2c1ddf8ae6d10a1112fb8dc84b4
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 218.9 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fe12da4c89fcd8a7b220e44243b29e613471ea269f58b524ba1ccb148b97d57
|
|
| MD5 |
419f557097f17fdbbbe40b93dcab33b2
|
|
| BLAKE2b-256 |
144de7c05bf9a35490347322b122d94dea1e096cc3ae13a2748b11971839e90a
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 530.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4327e9cbc8d1395f18046029fefab7b874d7d2bfbc59d962578c06257c62008f
|
|
| MD5 |
7b8172d4aed8b98540e6e8d3c3dad981
|
|
| BLAKE2b-256 |
b5d18c8260fc40eb287de7673904a52e5e0d7214d4abbd2415fcc08571b171d2
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 624.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eaef246ba2635a4988ef0802fea034ca395cc3916aac822a0b9f78f2ba44680c
|
|
| MD5 |
1dae156368b92ef8816bfb92cfa04133
|
|
| BLAKE2b-256 |
ef2a5e7d4cedbe48234b5f34506c843f0993aa93703d131e62f9dec1d1a31c96
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 534.6 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38ac1f27de54159c911734421b06ac07ec9ce6ae277043521c023c61880a7993
|
|
| MD5 |
e6f31525802b52abcc78befdd8378593
|
|
| BLAKE2b-256 |
dbb55dd6633e70bf313ec433ba5b67a3ccb116915edcb7325dc7cbea2330be0e
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 365.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b399e17f5e149121fe921db4328ba7ae032101421e21296214d856c56edd77bd
|
|
| MD5 |
c35371e0132b3065f567037de1f27468
|
|
| BLAKE2b-256 |
48a249fa071ca416f17f55bd938ca97d79dccedfcf8a7311356a8b3ba90c39c5
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
609cb74ebc3793a9c48254e7a5525fe04a8c27b92d8ae966aa3e742a622adec7
|
|
| MD5 |
1b146a6973e9911ad8b62b35bcaf434b
|
|
| BLAKE2b-256 |
d2153c7fa31900f953d1a0a51766e581ee4ec3a7f323a209f5d86bc1e85e6869
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70597085b22d2e5761966921b50a9cd148eb3b19ab4c664ebd2e54fadd9e61d5
|
|
| MD5 |
c77e93458cc95a4c187632b99981cf4e
|
|
| BLAKE2b-256 |
042cace0ac5ccaa602a59456d0adfbd5c0288c60006caa7d55babf6111844cd5
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 324.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd75ffc1783aaa140a3a1c8d9b2f44cb3b9c0f634e234baf7f631a32a031ae7a
|
|
| MD5 |
1c782f08f39eb0265b79f42a4defa87e
|
|
| BLAKE2b-256 |
a235f9a83ad5712b257d83a030d596309beb566b904df65c7170e827afdd5948
|
File details
Details for the file pyaxp-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 332.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c881c81e01ad4184d51eaac52d8b476e7b7e048a91915bee9b430259af96d39b
|
|
| MD5 |
322719cb832309cbb43b326c49008920
|
|
| BLAKE2b-256 |
d776f438c1fe9aa3ba37035763538e1514b4340acad162bc8292113be06c1c9e
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 219.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf3598130b94950f5214c28a4e82a76a107a128cbb22cf5edb9da7614da5c7cb
|
|
| MD5 |
e65159cda4c2351a20ee0eef1cd8a2aa
|
|
| BLAKE2b-256 |
682e35e6efb8496f7b5ee6018260ebbd6f3b511653fad8861e53d6aa11742bc4
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 530.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8edf4524023651f3eb999c455ca60f931dc86667f0d2947db1c1a4e8b377a17e
|
|
| MD5 |
5692440e3ed4341305f08ae14b715d95
|
|
| BLAKE2b-256 |
885c25d34c949bad4a897a19e21c0fb2c48722d0defdf982e2b678c28ab6bf01
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 625.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
35ae9b675da5be291a5b712a712440c731eeaef029033194ae9dd72038b59fe8
|
|
| MD5 |
6476256daa694a8b27757d2ca2a04d81
|
|
| BLAKE2b-256 |
3e415384908674b24b25a6e33345ce8a64d9fa2cbede4be1f8b1384d534e6495
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 535.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
647b28e712e3fb12390dd332d8499eff3d3427902c2affae84db04f8ec49ea9e
|
|
| MD5 |
b05b367230a585203c8c3284ee5a4149
|
|
| BLAKE2b-256 |
e9e6779f7dbd58895b4d4af59e5656b8eb093609e357a68db6df94f5c9fcd2da
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 366.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dcc1b78c5fbf5fdbee1fa267c0b129712719a7a45cdb0306e9cb73f36a8448e
|
|
| MD5 |
15515c5a51a2052a7aabb43c773c0080
|
|
| BLAKE2b-256 |
14061ccee109a2393e1434d02ece7c23146d7abe4b506289d604ea0c8ce20da0
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
058011c1c2e4a2da844f9a428147ad991d2853e4f49dd50260eb1ec2a514439d
|
|
| MD5 |
9a67f9d8c62e0aed036554b45378116e
|
|
| BLAKE2b-256 |
eef461e06e3d3f21907522f4d486df53d3f4de781ae2aad33fd6ec3caa621926
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8e1c6e88b87b7a2511f89bd6df1866a416ea6794c6d7d1868f3151c035ee99b
|
|
| MD5 |
0f1833ae8c3e1f1d75acec93cd6a0e30
|
|
| BLAKE2b-256 |
591f4c3551d07e68c6a8d79ea787a77211938b8a1455147c8c8db049757e6e65
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 326.5 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0439d91fa732d351df991e41c87da218ae37efb8207a1b77fcc058e4ee6473d
|
|
| MD5 |
a1e17aa167b0bc1320a7acb394906889
|
|
| BLAKE2b-256 |
af2b55296aac66ed58fe0377afb02a6995d8b0f4d0defbf0854f2abb19285292
|
File details
Details for the file pyaxp-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 333.9 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a950e0c0e3ba472a32fac33bb3f0b2efec42ff372c004a084a2c998f6c55a56
|
|
| MD5 |
8d1face374d3e07669db17e51d126d61
|
|
| BLAKE2b-256 |
2d25ebc3b4ff2a9cc4c568d55a605acf687a4d163d4974f280edc7950c9edbb3
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 219.2 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9939004ba236fc297e99ce4d5dc1a04a12039fd733825581575ebc3bf40e48b5
|
|
| MD5 |
3cbcaaadea7aa6817d47751b40d4938c
|
|
| BLAKE2b-256 |
b47ce1a6642cd36511b6637e7def68c96d7ebfddf7644a404cb5336cd084ac12
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 530.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de74b505fd26b3d08e33a675e23bb36273098dce71a8a0aa2d787641687d09bd
|
|
| MD5 |
04089f8ae7c8f1116199564365808179
|
|
| BLAKE2b-256 |
52f45bed11bee7477e27ae07d351701330f1f6d43ff3c30ec279dd07c016236c
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 625.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32cdf8dcc9eab65acc920f7b735c52ad4502d2faf41a3d3b82456a17dbc91e1a
|
|
| MD5 |
3b6f3b993907015791d63f16396d44b0
|
|
| BLAKE2b-256 |
4baaea1a4979386cccdbbf426b533c0ac029c07cba3b44f42bd1abe6d54c5b36
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 535.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4228458e9a72d952b59d8f2af64f798ededa410e1b794dd72d71a127c49ee60
|
|
| MD5 |
e4e2870fa3530f767cd82c2c579a1793
|
|
| BLAKE2b-256 |
08330650e32aa06ce2dfe0e8bff8127d992477ddb59ba7cf73879b9eceebd36f
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 366.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60a5d94e7f71f76083bab60a3729cd29e8cdc473a4c549233a78e58ff6c72af0
|
|
| MD5 |
711660ed36de23b08c68b0f7b4d03754
|
|
| BLAKE2b-256 |
e61a0bc2ccffb258b2cadd0d4c755e7df616b2adc024d73e2c85575bc65918c2
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ec0bf7422f53fe5fe0d8511611a2e151b6a1ab51f8c2bc2cbf8f5cbcb24a827
|
|
| MD5 |
bade34313b2c4b50cc3eb5087c045535
|
|
| BLAKE2b-256 |
e61f2fd049b3bc11b64b213e99f8fbc37a67a14b8d939af28f7cc5fa34349f6d
|
File details
Details for the file pyaxp-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55cfdbf7521684bdb15851e2493f21c3eaa3eefc04e3692d8dc47f2efd7f9112
|
|
| MD5 |
8d7b882daad699839d68de1491fe77d9
|
|
| BLAKE2b-256 |
d17283c94f7d6f7ac6cb7ddd4cb84f20032ff7185853b63c87252341748f13e7
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 219.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5007d47c37817ab882db53f2eb62a809ed1b2db20f58c32b2252658a918024e5
|
|
| MD5 |
6d8548a369a8d92abb814e7aaa9518cc
|
|
| BLAKE2b-256 |
708546e2471acc189726710424944e92be93beadd0eb3ee5ee4f9f840fac85db
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 531.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13e4b46155be096abec2b56ac5fdcde1611eeca65e6d285447b73c4b8ee91421
|
|
| MD5 |
45ddaef21b6a9fec16a0e4ba801d77d3
|
|
| BLAKE2b-256 |
eab9d11e0a566ee1fd5322e81b90ddccc94bbef5f2b73eaf32efbcb9571ae387
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 625.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4cdbe3c17d12e12996327a9964f9252e20ade3de7c552bedb5a8655b2219060
|
|
| MD5 |
d85fde013a414b4d3dfd798f85644a54
|
|
| BLAKE2b-256 |
e754c0c781a9a1cb0357f050cf0cd2f48ba57b3264c92a1cd429e029bbaee378
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 535.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce39a1096a8d7f53c2fbe682cb6aef25a62bff3c7918c2706ecd9e81000a0c88
|
|
| MD5 |
60ec29f9181c5c9c3784df5d69652c04
|
|
| BLAKE2b-256 |
728d4c80dc383d481d3a4205a49ca8483ea244bf63092c4d438b5307d544d897
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 366.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bdd9092534b4bde3af80d71c8f2c1966f197d4e8f81bbc13f2ad7727b9c0e123
|
|
| MD5 |
b859f660050b505d9f118721f7dbb16d
|
|
| BLAKE2b-256 |
5a85c24793ed43d4c721d3eff7f1eec0881d6936f1edd00e950dcaf04f4fbf7b
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 369.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46354ce1b0543e53b2e45fc10cbdf9d19080bd5cf6b0dd8b5d4aa362b83dcf4e
|
|
| MD5 |
3c4092c5b983b125baed093c785816ea
|
|
| BLAKE2b-256 |
caf35e868dcd1ee0608f9b33a2d75f15db6195e9b970a6493daf3f35c6fcc810
|
File details
Details for the file pyaxp-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
780850b2866e27ec404c373e69c48ba92718ddda454d5077ea98a87929c47778
|
|
| MD5 |
1b66b25b6ff5718d0c98445ef4d8a435
|
|
| BLAKE2b-256 |
f844bc52a0a88b757fd4275db3d33a81737f360ae4eeebf71974b12b5bbfd413
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 219.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d57ac8133550d54539daaadf912930ad40c2ef1ebfa9b5e16f1f7d753ac43a56
|
|
| MD5 |
208e0766c163abd40b08fa803ece70c1
|
|
| BLAKE2b-256 |
88eb33ee4f9088dc247bcda626b4dff663aab18b5c8a3d49c7504c730f5320aa
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 531.0 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2010137e212f8843f68395874cdb93da0a8fdc2a9f71e1d24ae0a62c741cc835
|
|
| MD5 |
884e514f43871fb4efb9e54066d532f1
|
|
| BLAKE2b-256 |
8738f5e1a0b43e786e44fc75ce194e4a7f0c35c56227debbbb4133266479eb42
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 625.4 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57c057e094569a4c995821fcb0aecccc05a64c9731587535fee9062f2366a9b4
|
|
| MD5 |
75f11758089736bdd4693270a6ae526d
|
|
| BLAKE2b-256 |
e82ce0e91cc5cac02fc1f6cb6af472ffea03208bbc742e48c80b72a1e278ddcf
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 535.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1335732eac739508312406a63689c2404a92606c599e37ed85f182da22564d67
|
|
| MD5 |
b4c6f7a8adb20ff3b3cfa04793399598
|
|
| BLAKE2b-256 |
f84870366a9255331c958230c427f1526741c869bb599422bb19ffc97382c046
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 366.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f66cc60a06a6f64ca59cf20236d20ba28db2bcd053c2a73d2bfb9cc1954543e
|
|
| MD5 |
9eed63b59b43c9618741a2d310953475
|
|
| BLAKE2b-256 |
d582b4c45da0cfe0c62570f830196e580d2e529ab39123ea9ef66d71e94cf98b
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 368.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6564f764d411a90f0582e2bb1aefedb57831b58d19fdb7422ea4b65f94b1858c
|
|
| MD5 |
56bbf9a6b9aa14a4d12ad7616a0719fc
|
|
| BLAKE2b-256 |
ac95f3ebea864d6866357c76093d41c827cdf9ac84a1b79c5dd24bb0c05e23c1
|
File details
Details for the file pyaxp-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: pyaxp-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 364.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f98fd943fed2ddacf644a15495e8494fea8f459fda277a1706881e5a8f1848d
|
|
| MD5 |
118dadcca0243dc0bd66adff0bba2d40
|
|
| BLAKE2b-256 |
46eb3c60129dbce404b79ca8ddf891b2167055b46bfb15a946fde6679288ce67
|