Python string unformatter.
Project description
unformat
Python string unformatter.
Simple string pattern matching using f-string-like syntax.
This module cannot do anything more than re
but is much easier to use.
Installation
pip install -U unformat
Usage
Unformatting returns a list
-like object.
from unformat import compile, unformat
unformat("{name}_{idx}.csv", "data_001.csv") # Values(name='data', idx='001')
unformat("{name}_{idx:int}.csv", "data_001.csv") # Values(name='data', idx=1)
unformat("{name}_{idx}.csv", "data001.csv") # Error!
name, idx = unformat("{name}_{idx}.csv", "data_001.csv") # `Values` is list-like
# object oriented
ptn = compile("{name}_{idx}.csv")
ptn.unformat("data_001.csv") # Values(name='data', idx='001')
Model-based unformatting is also supported.
from unformat import UnformatModel
class Version(UnformatModel):
pattern = "{major}.{minor}.{micro}" # not a field
major: int
minor: int
micro: int
version = Version.from_string("0.2.1") # Version(major=0, minor=2, micro=1)
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
File details
Details for the file unformat-0.1.3.tar.gz
.
File metadata
- Download URL: unformat-0.1.3.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5be82d67e03fc26daf2f33b30b19da48db730a2035b0dbe56e31e526595b1f2 |
|
MD5 | b6fb9a0c2278abd826b0f26c573f4e72 |
|
BLAKE2b-256 | 6f07f1436c5fa4bbf1b943053b6ddb2926ab400e99bd21161824efb9bba5c895 |
File details
Details for the file unformat-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 967f2ed5c1746089bda72e37432e58b14094d3cb0e3b5a7aac7201769cb63f88 |
|
MD5 | 6b1fce8cf7af02e5d4f03d89183366a0 |
|
BLAKE2b-256 | 976f623ece9a136f7394728e725d691243101ab3789de3d6ced62f87e2759c18 |
File details
Details for the file unformat-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f7ab35bc25888e01a5b35633ad133deb56563fa5fe083c919bbd25876c3d61e |
|
MD5 | ce6714eb16bd11ede4b28036e6d20625 |
|
BLAKE2b-256 | e7ed127060ef93c5029644bfcf38bd1e22b23d9459ff143fc6b2db8e848cf680 |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 215a3719f7d13e9d2e4f87282e3e1981d356aee230ab3895f61726f40cdd3b9f |
|
MD5 | 117268747ea3b8230d061a498a239b57 |
|
BLAKE2b-256 | 25a1e1f0954f099f7fd0858f74c2b4fc1472bf0b33f7844524652bf453dd17a5 |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 075a7256ff7a153079ed77fd0f3ffae3f68864b189fcc8d1479e85d8e8249aa4 |
|
MD5 | 16996c671c0b74267088a5babcf9eafd |
|
BLAKE2b-256 | cf195f9f4a0cf3b52d0acd7c15cf742215ad8aed882583ce52a0e7205194ab7c |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8a6feb60c30d969c244f5ba040d8760fd918d8e3ecd9909bc8a8dfbcb88d7f6 |
|
MD5 | 25840252a79bf993d2d9cf4e7ab04b57 |
|
BLAKE2b-256 | d464ba1d74a1070ca4e54d89551c5008f278167eda60a47ca515fc7bf3ee271c |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffe77b01352ad427413ed3aca8c4a84fb1d425f5044324fc50649ee685b1c941 |
|
MD5 | 41ba6c392819b6dd71dee1fcdb0cc258 |
|
BLAKE2b-256 | 20f420056da04c90438f3a71aa57631db3e46bb3fad2a6dc7887b751d9c29873 |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d578050db65fdf597a6e953c95b4ea000df0d1c2652f9e102a6ca8d1ce46a25d |
|
MD5 | e31c860be2403cba43631dcf432451ea |
|
BLAKE2b-256 | b96539b0afe6fb365b666bd5151f5813aa3bb71ac4b3d2755c51163ae0d3b0c1 |
File details
Details for the file unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ada246fb781261b287f307a57d3f44484b338ad82448266a79dfb986d98202 |
|
MD5 | af2f0f199eec3faac62e5ce213e29771 |
|
BLAKE2b-256 | 0bae13a317de14bc3bbf5b113de79c070691a94f48b270333a45cffe102cf613 |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31eb9cd8694a1c0737ca28e3f0e20d0ccde4c1ee5bfb30bf9eb515376cebadae |
|
MD5 | 9b7bf5f4086836c7454830533bda9308 |
|
BLAKE2b-256 | 38c2dc8ee195fc009d94119f66f7c4cb705869d564eaddce6c1d1bb9e28768a2 |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a923e523fc89f4c41b12afaa0e1ccd66e41d6bdad32ed7659a80349a305ae6c3 |
|
MD5 | 89811ade97bcdd2eab638ece5173c370 |
|
BLAKE2b-256 | 0ac2853d2e3c9c588c072fec3b02e02b6990eae6fe23b9012990e6ca0ab61561 |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c873c29a14c5b6ce85f94c6cb0f9278adb120b91eed8b7ec1b83f0e59b110e03 |
|
MD5 | d7c06bce3347100ee167887996650abe |
|
BLAKE2b-256 | 1a313ecc1e84fee5d7b01ffd96051e810cdcace50ffc19947a154add4e18d28c |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d082738997f3de6aa1f516a8c651c4067b019a0d5afb5a9985d34f60ca473b8d |
|
MD5 | 7d057d5ee0bfc3d56dff0d9d65485afe |
|
BLAKE2b-256 | 0a73fcbf7622a314faab61146b1bb96f6766510dd32a0759b33d71a0d58c6200 |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83303063836819229471827e4dd45a3b398d4af8d1b8b01b7ced4ed5018fff43 |
|
MD5 | 42e37350447d19e60e4af2feadb12d95 |
|
BLAKE2b-256 | 723ba48d1e0a8eb00035e2725f4aa059fe4b0c781ca8eb203aba9a7d85d6065e |
File details
Details for the file unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b875e6037226af564ea5442970ab94530191100785cd1f79df92b9d632bcfd6f |
|
MD5 | ca318f2a1a1218bdbec9e3cc9fd28a33 |
|
BLAKE2b-256 | 04d4b1a80d072efa1cd6795869fd4e10144514f19cdbf3d5b63341ae78f4c843 |
File details
Details for the file unformat-0.1.3-cp312-none-win_amd64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-none-win_amd64.whl
- Upload date:
- Size: 164.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0ddcced5ae763931b5323a44d343283be76033b3daaf9b512bafe194ccd3e6b0 |
|
MD5 | 1a97cb924ce86fab921d8b66cae6dd29 |
|
BLAKE2b-256 | d3f630fb2ed596752be0f05c265ecbd7ae9b9a61e2f2f5a914ccaac4294540d1 |
File details
Details for the file unformat-0.1.3-cp312-none-win32.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-none-win32.whl
- Upload date:
- Size: 158.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72889ced0f4f1c7eee415e76e9aec7e95e2966e7f5c9809f79f4423cb7b8dd21 |
|
MD5 | 734096c70cd370c48d6f95845c8315f2 |
|
BLAKE2b-256 | 1466877a0d6788a65a2bde413fb0cad8ec736ef48e1903292ab94f6756488e5f |
File details
Details for the file unformat-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6579d57d9f8f00890c8f2f04bcb06073980042885390eb632190ab25e839b9bf |
|
MD5 | 523c7a4d9b16c8219466a7231845a389 |
|
BLAKE2b-256 | b28d2053ca96a0058b4b76c2f6db093e94ecaa17fe71e29c9f59a2655e830803 |
File details
Details for the file unformat-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc91e6de1e5e5fe71001a149bfb2e47f856241568922221e24d80e9a212861cc |
|
MD5 | c9d37ffe944e82c0b380e95709ca712f |
|
BLAKE2b-256 | b5d8dabe9d30d62ab50deccdc86243ac78d598d5ca4ab82ecd4f8fcb8c5fbad9 |
File details
Details for the file unformat-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4648340b4f35cdac1945963f025d61901c0c8c6c31c68d80d1f1de2788000986 |
|
MD5 | c70f74ae59e8fba4eca3a0519b0d8476 |
|
BLAKE2b-256 | 7146edb0340a63d28fcf7e75f3ca573d99317dcc19b26e491e8548241a8569d5 |
File details
Details for the file unformat-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26a03c4cb02b243029ea32d30f11a4bbfd8a5e7195ee91b4632d9aac83acea0b |
|
MD5 | 97037041613a83170c4872f6c3880f91 |
|
BLAKE2b-256 | e1f8f389908abe2b709b4019507de5ce8b7c8e296ecd8d772f4e198aae5c6c58 |
File details
Details for the file unformat-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33d62397b4eabb9d31d66d20167301f064466199519f4ed17e2df047781676fe |
|
MD5 | 712d04e7df54fd48b826900658d975cf |
|
BLAKE2b-256 | 12ccc9596e29daccdff22384115c87d515abcb82a9c3b56d049591011862723d |
File details
Details for the file unformat-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 277.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1084e270ad287a9301ed12108301e9355f32b984920f465d79e073d3bf6f22d8 |
|
MD5 | 2b3bc73db1894d715b2e974ed6e65eb3 |
|
BLAKE2b-256 | 9dc7b2a91b330d455a667833eb9fcb9e07f56ce3ea89a231311d7104dd028892 |
File details
Details for the file unformat-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 283.9 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f06ee6d3343c90790b7228e69d5e8dfdb114e82f38fd6a7947170770dfc067fb |
|
MD5 | c6f8e9f599084c125b88364bdfd72cf4 |
|
BLAKE2b-256 | f5fbaf39e802bac55cc40b954a740a069e1774a823c7a3285ffc1f095af371ec |
File details
Details for the file unformat-0.1.3-cp311-none-win_amd64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-none-win_amd64.whl
- Upload date:
- Size: 162.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cf918453c81f4b2fbf2979cba748827446e377108285c3b3143307ee7b02d48 |
|
MD5 | dc2f3f7939006ac581d2009fd2708b45 |
|
BLAKE2b-256 | 9bc89ff73d07fb51a44b283a5ded46766bd07affee059e12a7dba43051edfbbc |
File details
Details for the file unformat-0.1.3-cp311-none-win32.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-none-win32.whl
- Upload date:
- Size: 157.7 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b8d3ced652f08d6a72f367a6f65b44f7c8c65e10f965cc0c9ced1d310ac63f1 |
|
MD5 | 73755159158b3d7876ba2e4b307e293d |
|
BLAKE2b-256 | fb5715b8a3f242b3329997208f4502b3e41ab06a6e60d521be5fb3149bb75c35 |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdc1c8ab53056e2598461fd9051784e0499efc5062ab70582c519545143a4a2d |
|
MD5 | 8ac9057a8209224ad19978a8d8760655 |
|
BLAKE2b-256 | 0a80b480e6dc1077968aafab4930c1eca280a2cb0cb8938b8363f446613d3b77 |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51279457f3d2204b2d7b0c7ccb96dcfd33a6774020c4cacc44e7ad771559f7f4 |
|
MD5 | 01faa493115fb0b99890dca92fbddaf2 |
|
BLAKE2b-256 | c0830fdaead580b841960c29e566460c412ab4f6bbac3cd05ba991597f5b3bc6 |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 381739c44d9855fd67ad9ab81ee30be15f0a82d8bd1d0fe574e30c38990bf0e5 |
|
MD5 | 943999e629de430c82b53c7949547b8b |
|
BLAKE2b-256 | 9e1d51b0732187280f2433e52546c908471ef1f3beeb6b96e0ccb420667b7dff |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d04cd6dc5f94f87dfcb4303f7b1733bd8903172046c532e5affd26a7148a817a |
|
MD5 | 9ae4e40f14cb156cd504020ea73ac1d3 |
|
BLAKE2b-256 | a58c4d67aaf300f61e793546a8701171db303672405c91cc46092bba3ed788a7 |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0eb7fc0d55501cee8af15464c4b10e8ad3b46059cf8d578380d4e81926dacd1 |
|
MD5 | c70103dce9b54b232d8b2572f0c3487f |
|
BLAKE2b-256 | 9637bbea066ff0492106d2db4087222302ae3914ff92597e243ca9d3f10d3495 |
File details
Details for the file unformat-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9ef84d5191606d9babcca015e679ac532e1056ee9026f84f7a7af6c00896748 |
|
MD5 | eb2c02a8ce70e49aa96b6a51f1c0e7f6 |
|
BLAKE2b-256 | 26daaa6b17219eb9e5e56b559fabaa6d06a69b7110b96e3ae8e81d4e401f52c7 |
File details
Details for the file unformat-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 277.4 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b7145e3d0b9a0fedeb36be238152bb252046b6f2e228ffef678086e8163aae4 |
|
MD5 | 01cf3fa6f049353b64b41f7c4be48129 |
|
BLAKE2b-256 | 79d137ddabffee2b72ee2a361dda3ca342c3a75c2955b7cc806e56b998f24ab4 |
File details
Details for the file unformat-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 284.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4997333d8a17723b343cdb42904e4d08801bb3be224786fd5f26028c8cd3e71 |
|
MD5 | fef1c7d5072a77f90b6b11cd71c8711b |
|
BLAKE2b-256 | 51916dfde083284707ae8e5611deefe17ecae173e18e695c4f24e20aa03bd389 |
File details
Details for the file unformat-0.1.3-cp310-none-win_amd64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-none-win_amd64.whl
- Upload date:
- Size: 163.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0cf82e2a185b7fe1be156416fc54eab29e70ec2dec4561c3fceb0a191736594a |
|
MD5 | 88963d4735a538f5283fb26b6a540c1f |
|
BLAKE2b-256 | af859650e88edf46b9dc8903afa1f64183e515b62280391a945b077d8eb7d240 |
File details
Details for the file unformat-0.1.3-cp310-none-win32.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-none-win32.whl
- Upload date:
- Size: 157.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e11fb35f4c49369210b7e3fdae15c2fa5527f969c997a087bb6794df05c8c4b |
|
MD5 | 99e78503df5a6eadf7f54629c8cb2c1d |
|
BLAKE2b-256 | cf2725b016dfd21fe149a516240cb8162e00db563a8f0b4d98427df9cc2839d4 |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f73e6bcf344283bcfb799a09d1e6248c4b1e70ea8e2ad73100757359a731880 |
|
MD5 | b26afe1108778e694ad4636e824d2c13 |
|
BLAKE2b-256 | eaf79a4a04c97f95668ec8c1f79e450dc744ba1e2a20f0a165eda0ebd18828bc |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8820c0b3ee9bd189b92d6b44964413c0aa94e802a3b4f45978e235e898d9e13d |
|
MD5 | 525a335e764e66be85e9c3258db25afe |
|
BLAKE2b-256 | 71b90984673618b5751c89d8a4d301daf616b661d56eebf45ce81cac726dc3e0 |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8cb6307098ba2e9e88524b6700b6ee6349e449bf2d162e4b833599e6c6e64d56 |
|
MD5 | 4a1eb34706a2abd4a5f1a87bb1702ef8 |
|
BLAKE2b-256 | 79f1dbe5835781ab6fab9b6e0389e51fcf545e021758ec1eb5dbe54b872ea331 |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b727ae1f45ab5b20c8575c428d8ef9ae62249baf881a3437f8be68f27f38b57 |
|
MD5 | 67e1f777f5707d58cbbe7878a3bec234 |
|
BLAKE2b-256 | b85b12af125dd0a00934626c2a32ab6d07596390256f51b4f08a36079e88b59e |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb479fef8014b525022cb2737ed624bf29c2bcbb80a9fd004454f75e670c4d31 |
|
MD5 | b26ddd6cc671f5ff1b6153a222aee988 |
|
BLAKE2b-256 | 5b87c699f00e111d00cab5899c3c31c8030a33358589d479f0b03a6a665bf89e |
File details
Details for the file unformat-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f579fc34ace5d2972d8e85a1f7162be9c1b2c1bc373d01b0f8af2c85977b8b6a |
|
MD5 | 6f23b668bcc617621ae2eb8a85e9c5d6 |
|
BLAKE2b-256 | fa164823d5735c2812bf48fcf33226386328672a3ee74b0972b6f63b9d45e95c |
File details
Details for the file unformat-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 278.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f85070b482294ac72badae743165d0a4c0a991c3687029a53677a4b076b598cb |
|
MD5 | b5449bb804a8b74bb12a964af8db86e5 |
|
BLAKE2b-256 | 1eac6b7fd3b34b1d4f3d9c2c35daf2e2cf2e1f2658cbda03a98a091bad088ed0 |
File details
Details for the file unformat-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 284.6 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3703b9bd0653de02535b7c3483768fbbb3c8c52b05319c9753f3d40d8f343917 |
|
MD5 | 8d1d87ae1e0c8be436c043628f60e927 |
|
BLAKE2b-256 | 79d0e50460ad4e872f4162127a03a1952f78f5c293d4a30c77b3182c8951e359 |
File details
Details for the file unformat-0.1.3-cp39-none-win_amd64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-none-win_amd64.whl
- Upload date:
- Size: 163.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21890711d27c7a200a920071f7e5ad4e5ba92033da8a921214027ccb50aae8a1 |
|
MD5 | ef8bf389d4120841aaa25ba93596ad3b |
|
BLAKE2b-256 | 11511786b872d0fd46efe0733b0acbb9948828049302fc37d7d77ad7fe9672a7 |
File details
Details for the file unformat-0.1.3-cp39-none-win32.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-none-win32.whl
- Upload date:
- Size: 157.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c87dbc9eab4f20e58650f93c12dc4ea3139e3e4a9ed2569cf1c6c31ee408375a |
|
MD5 | e14307e516143b8d355559e61f9f050a |
|
BLAKE2b-256 | ecf2319a4e34db8b3017d7e888b5decf46966bb2fe50395d2495efe7afa0ad2f |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99746a8e5a5dc46da6c54f98c785a22d2497dfb94f37892672c46f3595c94756 |
|
MD5 | 468c51f083f6705f09fad19ee9b93325 |
|
BLAKE2b-256 | c65ade116dfb0eaf6b93aa11e9cd32a17a8d0104862871761c7114f8b8741aa4 |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09d84603b0cd7ba5a266be5872fc318bd3150e18076b94b94a63fc078e3e54e4 |
|
MD5 | 00364fdfcf26266ad59446ee19693e3d |
|
BLAKE2b-256 | b9dfe216911ab0c63431a7dce3d49f3a2ce6ff44f0c6087300073220b87075a1 |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 923fe52a6a17a288f5051c5b151cd88b0e73df5db43a3447ccbb1825fabaac7a |
|
MD5 | 9d2a2087fad6b825bae5e89bbd3fc25c |
|
BLAKE2b-256 | 369056572eabe78b14d9c226e519d576a566bcd7e7d4232664346d43f7d04369 |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3737105dec57cf461e4e2b63c9a5a343fd79e3b4301cccf0004297f07b1d9721 |
|
MD5 | 1e2bc1e56f2e16eb7c05ed4845b47ff5 |
|
BLAKE2b-256 | fd19d88b523f0b422c371096978de08c2de763bcc8bc3edaac86f5a033afa67f |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a2652f9fa34b0f2addf3aeaa1a1bfb6c89ba14b20473b162d8fff4b5d06ddf2 |
|
MD5 | 29983671d7e4e753bdb95bf172e8850d |
|
BLAKE2b-256 | 5ae79e6966cfc54a5d2bcdcc55f9f69923ea138b59479ffcbfa8dc088934370a |
File details
Details for the file unformat-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | beebf4060e1e2e70f430f9e61dbad34d97cfd6ee28b66feba689b288dfb8d789 |
|
MD5 | 95e6f18d664983efc9e7e397cff24c8c |
|
BLAKE2b-256 | 1e014048057539afacabea11d1c0356d10fa5b23be719016975bf550422511cb |
File details
Details for the file unformat-0.1.3-cp38-none-win_amd64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-none-win_amd64.whl
- Upload date:
- Size: 163.5 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5a602bb2959052b0326fb36b825c3f071d582b6b1a7630e1ca1f8adb5548954 |
|
MD5 | 9d372e086c8073ec9ac886fa6907fdc1 |
|
BLAKE2b-256 | 0d9a49faa4fe5e2e11dc78aca5fd2441ef474e5180d4e41b7085827758c7b465 |
File details
Details for the file unformat-0.1.3-cp38-none-win32.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-none-win32.whl
- Upload date:
- Size: 156.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a54ab182d152ac4df6efe15082b00f188929d171e7a07830218ca667efab4b62 |
|
MD5 | 56733bf574eef4de18054a8067e7374f |
|
BLAKE2b-256 | 1d1b063a83b69254f87d34347c4b5edf750428fb74449e5682b390f7a3c216ce |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac78897fbb2a4386f0c250050d1b7c09e25cb8843a62c228b318ad33f81dfe6f |
|
MD5 | 896ba0fc747d8055feaa6990e9cd460a |
|
BLAKE2b-256 | 14654accffd30a25857af65818173051c398cfb2ae66280c374aa2c2dc21ad2a |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9a34341c12589463609100bc718cbd25cab079378debc8d479cc4803c56ed97 |
|
MD5 | c56d31caae548315cea3f5cfe6428783 |
|
BLAKE2b-256 | 42796e1803d31e2a36eff6b02894f41952f3d3006035e0c7980f435e04981890 |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4680f9ca1804816c7a4a0bb0648f051697e2c1fde08a33dc36f73ef898b1403c |
|
MD5 | c5e2a75d160d520f85e1ebd89412f183 |
|
BLAKE2b-256 | 065abe8c5180fca920caa05bc93da60831e8fd7da2c9fcb6951d85ffac9b3c71 |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da4b3f5e457546e77b0c98e2685dcffd9e96384fdeffca7b108dd06511a670f1 |
|
MD5 | 9aad806dfd1be0629ddd98d513b5fcb0 |
|
BLAKE2b-256 | 1b27aa68bc9abed98fa66c519d2809e9c3bde5e7b0f78bffe8b0b0cdda62e2da |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e45055424a089cdbd66b34733a9af6d127896989925d43408f1284d5acfb16b |
|
MD5 | 74fa99d3c11439c5c74828095dcc67fe |
|
BLAKE2b-256 | c1ede58d282e9fb11d0c68378e14923591f25c3541eb8f346406a808e54ab13d |
File details
Details for the file unformat-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: unformat-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66e2a2ecb6b675666af5c5d3cc9415a803349698898ef20b8694cc36993848a7 |
|
MD5 | ccf91022fe3d2816d21bd32ea4adebb9 |
|
BLAKE2b-256 | a952c70d6fbe0a9d2e3c36578dc9da597327e5efa4a72c0452a410c9da3db936 |