Drop-in replacement for Python UUID in Rust
Project description
Python UUID Utils
Python UUID implementation using Rust's UUID library.
This will make uuid4
function around 10x faster.
This package can be a drop-in replacement to the standard library UUID which implements existing UUID versions like V4 in Rust and also adds draft UUID versions like V6.
Avaialble UUID versions:
uuid1
- Version 1 UUIDs using a timestamp and monotonic counter.uuid3
- Version 3 UUIDs based on the MD5 hash of some data.uuid4
- Version 4 UUIDs with random data.uuid5
- Version 5 UUIDs based on the SHA1 hash of some data.uuid6
- Version 6 UUIDs using a timestamp and monotonic counter.uuid7
- Version 7 UUIDs using a Unix timestamp ordered by time.uuid8
- Version 8 UUIDs using user-defined data.
Please note that UUID versions 6, 7 and 8 are still in draft RFC.
Installation
$ pip install uuid-utils
Example
>>> import uuid_utils as uuid
>>> # make a random UUID
>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')
>>> # make a random UUID using a Unix timestamp which is time-ordered.
>>> uuid.uuid7()
UUID('018afa4a-0d21-7e6c-b857-012bc678552b')
>>> # make a UUID using a SHA-1 hash of a namespace UUID and a name
>>> uuid.uuid5(uuid.NAMESPACE_DNS, 'python.org')
UUID('886313e1-3b8a-5372-9b90-0c9aee199e5d')
>>> # make a UUID using an MD5 hash of a namespace UUID and a name
>>> uuid.uuid3(uuid.NAMESPACE_DNS, 'python.org')
UUID('6fa459ea-ee8a-3ca4-894e-db77e160355e')
Compat module
In some cases you might need UUID
instances to be returned
from the standrad-library uuid
, not a custom UUID
class.
In that case you can use the uuid_utils.compat
which comes with a performance penalty
in comparison with the uuid_utils
default behaviour, but still faster than the standard-library.
>>> import uuid_utils.compat as uuid
>>> # make a random UUID
>>> uuid.uuid4()
UUID('ffe95fcc-b818-4aca-a350-e0a35b9de6ec')
Benchmarks
Benchmark | Min | Max | Mean | Min (+) | Max (+) | Mean (+) |
---|---|---|---|---|---|---|
UUID V1 | 0.058 | 0.059 | 0.058 | 0.005 (12.0x) | 0.005 (11.9x) | 0.005 (12.0x) |
UUID V3 | 0.063 | 0.064 | 0.063 | 0.008 (7.9x) | 0.008 (8.1x) | 0.008 (8.0x) |
UUID V4 | 0.041 | 0.041 | 0.041 | 0.004 (11.1x) | 0.004 (10.8x) | 0.004 (10.9x) |
UUID V5 | 0.064 | 0.066 | 0.065 | 0.008 (8.1x) | 0.008 (8.1x) | 0.008 (8.1x) |
UUID from hex | 0.024 | 0.025 | 0.024 | 0.004 (6.7x) | 0.004 (6.6x) | 0.004 (6.6x) |
UUID from bytes | 0.024 | 0.025 | 0.024 | 0.004 (6.7x) | 0.004 (6.6x) | 0.004 (6.7x) |
UUID from int | 0.024 | 0.025 | 0.024 | 0.004 (6.6x) | 0.004 (6.7x) | 0.004 (6.6x) |
UUID from fields | 0.028 | 0.028 | 0.028 | 0.009 (3.1x) | 0.009 (3.1x) | 0.009 (3.1x) |
How to develop locally
$ make build
$ make test
Or:
$ RUSTFLAGS="--cfg uuid_unstable" maturin develop --release
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 uuid_utils-0.7.0.tar.gz
.
File metadata
- Download URL: uuid_utils-0.7.0.tar.gz
- Upload date:
- Size: 17.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 015aa22711ffd57c5001c2477c6a40121db2794ae3be181a0bf79eef80e28943 |
|
MD5 | 46c190f8815f7fb0ab540b5a2587237a |
|
BLAKE2b-256 | d724e0f878ec6563bee5132823c941a4b037c281678ae84b71c7a7ba7957f314 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 175.2 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec25fadeeb34c41ef95a8b849a3e4dcc39e96eb39367323ba873bc1732d6516a |
|
MD5 | 7c5af326745341a78b23ddb5bdb6356f |
|
BLAKE2b-256 | 49352784b4cec6539cd215890b450dd8548701af05e69dda86e26ad625bdd009 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1e59447b45d5988572e450f43de5546e1d2f6643d2e0137d83b5fdad204fd05 |
|
MD5 | 446a8c4e884671b6eece5a18a5b4bfde |
|
BLAKE2b-256 | 5b2641beb53eacfbf07a827160234449e18e958846dbffeabed9bd073c54d169 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 655e505c4e7c321e7f60572fdd594bdfdd96556a9699f697045e3d0b4699f30a |
|
MD5 | 997285e53caa437f977d5a682e9ed51d |
|
BLAKE2b-256 | f097fb4edffe3268f9ef4c2c3fa6e5e527ddada07b08df805e149161ab6f7dbe |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06608c7d643149dee92ceebc73a84bb736d4394f200ecb794541a79e10bc482d |
|
MD5 | c2dc18817589b3f4ac746874624e3f5e |
|
BLAKE2b-256 | 2db4e7a5254595e3a4abe4fde75c63c2a1d30fbbcb1ca3bdaae9ad859ff07b5e |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b429a906f0dff1c35d55ca17c5f7fedf3149cb405808b43ba4f3a6d21732c31 |
|
MD5 | 54d5c8bad8eec349bcab086687796923 |
|
BLAKE2b-256 | 8cc1bc1ae51f1df194ea6a54768d3f1fabac21f18422cedaf55eb5850988186e |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77c7f5e54fad8d761e019122080b14fae9568dd09cbb908f349284efa8f9a792 |
|
MD5 | a77e77a0181274b46eb6b6bd7f51f434 |
|
BLAKE2b-256 | 71f4460d89f19747fe77257e3a9e9669efd1014ef1e8b9c632ae06aec86e532b |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3010bdaff5c2a78980849aa6b082e7a0013949c8e4d317934f4aaacf14a2d22 |
|
MD5 | 79ebd7a7b51a7298bc29fc5de8f9c973 |
|
BLAKE2b-256 | b239add5d753a29f26e68cd8563d173994a0a5c733cf36bcbe8e9a388d3ee3d6 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 285.6 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b6c56101e5dedf06c81c5f3e3dc9d542feb4a5443b01a100c14eef6ae7e9ec4 |
|
MD5 | a10ca5f44685f40dfb14c02180e92f78 |
|
BLAKE2b-256 | c512f425556be71b8835ecf92276269769cea5b62ce930cd1938da396a9878e2 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 561.6 kB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1229b9849a239714899040f8af9c7b3b7ad790483ac0bdf06982eb03383e7a93 |
|
MD5 | 6cdeb30872820863c8d6d1f540414b8f |
|
BLAKE2b-256 | f3167eb65366d6265ea272070b493ea0d2ef460bb100f593edab94c8dee39be8 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 175.1 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14b672b950e792545fde222cf08f9ba9e30ac69399c2ca34b91d4fa457ce1528 |
|
MD5 | bc0e9f2d8ea5290a6de784c6788eb1af |
|
BLAKE2b-256 | f96e7a87268e0337967d61e88e666a8e59d30aebfcbf47c8ee1e7b0202877764 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e99615eb01550e1f883b5b251a04e8afe053dd30fb6c1af823bd14841bd9290 |
|
MD5 | 37504b669521e0c43c8b29e78b8676af |
|
BLAKE2b-256 | 9d77c3884dd1f1e4a2a125486b864a852c686180712c28c29e4ac2032538f8f4 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c753f5b690a481d31f13668a57610a4ee9805d0bd4515ab74a3766bea3b0e66 |
|
MD5 | 11782fc8d1363b3507401a41698d87b1 |
|
BLAKE2b-256 | 819ec3a2dc1836978b7410a8daad8681fa604f44caa9ce061b7b7bd8188f5b46 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ad6957427be8f2e48d2f128b3382b3c8e33b4b26542d757e5957c9593773082 |
|
MD5 | cf4c481904f8e7da50f1d2e895cb8cc5 |
|
BLAKE2b-256 | 14ea7ce0378340ba7eadf5abc1c4f97e7e6c271ab517c473517f5ba8f4d65b9b |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e66bddd9a469645ede16f0abde5db4dd1a75bc9628ab0b68cad0b848de8494aa |
|
MD5 | 282f51ce638b0155e85748d99b1b5e23 |
|
BLAKE2b-256 | 6c901f4dca0f88db981a5abf6f587ebf81166b42cc2d134048618153382118b5 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7b555e485f17ab1ab0cb963ff48c6404b93dd491aef7f52a8ae8c52f7f51841 |
|
MD5 | 97fe0c12a3d8929f785146717e369439 |
|
BLAKE2b-256 | 498a5b3c4a52d4b3e194c7cd2b4191b7d5697c1bfaee1c660d30cbe58f87e4ae |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb241970c10cccd37ecac5b3759276ca499cb5b639b832167f91b0a98383e89d |
|
MD5 | dc751ab064336e02397989e49e8d2c05 |
|
BLAKE2b-256 | 39a2ed1b7e207099fa7d0a0880ad9b6045e10b8ad1694acd698edf1e0c6f3b15 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 285.6 kB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd0dac47317dcdefafe493428237019582ba8adb91c3ec80e033ee631c173f6d |
|
MD5 | ccf42b42e681b3de3b8658763e7501e2 |
|
BLAKE2b-256 | bd52e621bceb39e479dcc355117e6743135ef102191ceb7097e01da151b94f11 |
Provenance
File details
Details for the file uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 561.8 kB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15eb3621d24fb6aab7f8e7b315356171795ca0f226ba9c31490fb9c08712c201 |
|
MD5 | e73d2a68733cac8dbaaeb0564362d702 |
|
BLAKE2b-256 | 83071ce4e486df4dda24352824221b7cef8fe60fb44b383837121bfe4efecb4e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-none-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 173.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ca368440148049475ff94f62d5011c34cd7954fe36247698fc05658d04ad9a1 |
|
MD5 | d940b74f69b16a41c5f2902873d29ab1 |
|
BLAKE2b-256 | 0650d016e2b9ee27976a341ee8b6eb65870b23131d7617c1de143f8e38a52b02 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c145629c4e48cda275310955632a8231c031f5e9b2eb93b9ab8a081dc6ab6681 |
|
MD5 | 6b7530f1c265bed69c16993de7790404 |
|
BLAKE2b-256 | f82ea6e27f14da46f1eb824f3be8accd32822efb36c857509ec0ff3b1e76f86e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53f4c96e7fd1dab33dd56a885d9cffb5aaf21a9064115743e2cee1ff03cb359b |
|
MD5 | 3d3cdff68cc441a093e8710f53b1dff0 |
|
BLAKE2b-256 | bc0fc1678e26da30d8f05d41d5b682a215a21adf89a549f81308210a10c6d510 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e349d43a969f696dbc7acd002b64952b71674eaf948043a4c6dd1ab65d7c462 |
|
MD5 | b1fbef57308160f81941d6718386984a |
|
BLAKE2b-256 | 8b1a62b730ce14a6c763e81b2e32a1293079e0b120b4bcc8fbce694af5fef38f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6ab7a012a1514e498f3f537852257ad2ec9402d1cc165865108dc6d9496bbd4 |
|
MD5 | af3988b53b5b0db58d5e8b5a1a69dded |
|
BLAKE2b-256 | 8d367dbe4ff6a95dcdb4155f311321dc263ff970eb3afb43e021ec672ff46e96 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eafb4fe02270e22a3bdb03c2107604cf68589a965667cabb71789beed318497 |
|
MD5 | b63f4dc91579e8a2933c35cebbeecb29 |
|
BLAKE2b-256 | 2c35facf2cd3243cf4db61217ee9efd8c7deac1c16df8d15a0a4a5d74f5c898c |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 116c4b2ff774ce552324b196a3222302a2e78479a301fdb11c2aa1d294ab0f4d |
|
MD5 | 606a1208c6fd38b4b93e819354b30cfe |
|
BLAKE2b-256 | 39b6ed1be081062f5c46aa03aeb7521ac4f27c3cc51714b6402193cb1c34eaad |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de53537159212608eb15d4948d0e0098d2fa2b30d453f93d83fe737f0fd7188b |
|
MD5 | b57b3d0e90ca5e1dffcd2f91406ef90a |
|
BLAKE2b-256 | b3782f1cab3abebff875d98226305896de25532c52be6bc6600c72dc40603055 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 253fd6e8962008484e02fd4ff4a77ffbddd3867c0c3c24a6919eb4fefc3a2297 |
|
MD5 | 63839cca4d2522adb0217621bae608af |
|
BLAKE2b-256 | f2fa5e8fa7bb93019d45829e985f3e2bbf8e99fba314e2646c6ceef272f06452 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08d58f7de04f3c43a4da05eece58002f4028a7275775ad5013e010abd51d7238 |
|
MD5 | 3391a53316692eb0a25029180614609c |
|
BLAKE2b-256 | 232ee32ef6c6533c4196d2b28588afb4738a56b47daba2b68727f7b7735c9deb |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 283.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c29183a8baedb39fc89e3d98ed2427d49e97ff3680f6832bffe73568d594970d |
|
MD5 | 0d1a215eba8107022c835b67dc3e6dad |
|
BLAKE2b-256 | 1e3548d5d33a6c90e17f66f8491738ff1684c2a7edb7d59686ed9644f50bea5b |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 557.3 kB
- Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53e5d6703f6a38aa1ba59cf8ac0486ac9a847e816e638cf9d6a2a4da4e9f6247 |
|
MD5 | d4437545808c7fc86630b28e07497af5 |
|
BLAKE2b-256 | 641cf5e3405d2e2bfc3452aa1908f118d1209b85601b7d5a5dd470c8d7baf6da |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-none-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 174.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df8f82270295726d1f7d1e26026c29d33a2b40e6dcf8723cf7f5809909eaf6d6 |
|
MD5 | 67f9bf74d67b56c02335beff8b33035d |
|
BLAKE2b-256 | 178cea72d2443395e1175c4c8932a5aed6c98d8b1eeef195ae642aa036810c13 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-none-win32.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-none-win32.whl
- Upload date:
- Size: 168.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7c82f88158f0693cfbc769536d7c09a7cd3c58b22a1b2a041374db1ba03e2d3 |
|
MD5 | bfcd2c6cd9f9a6e7c93846bf9648ef62 |
|
BLAKE2b-256 | b74b93d2c823d6803e276cec10d26a63d1964765a034d3104c861e13c113c332 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6a35a2205318cff201e76cbc6ad428c58e4d9d9ce9c83fd600c5295538be60e |
|
MD5 | c05b8a84ecedeffb3dfb27840e507e61 |
|
BLAKE2b-256 | f92812df65a4900703461bfb839f37c88dc7dcb89a9b2a6a587baee35321f1ea |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d4e7cd2f45e9a3dd371abb8532c6fcbb9befa1551522336095b02369e9144a9 |
|
MD5 | 17bf551bf7031823fb4db62188550b71 |
|
BLAKE2b-256 | 2500b587d795036cf50920917308a67b0945f06cb9b33002b30e8b873dabf965 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaa55deae8fd4e7ff30a31f1661e953d70705efa3b09d0fc33576a8eaa589910 |
|
MD5 | 4ef5c6aa803ee35a218e58086439787a |
|
BLAKE2b-256 | caa37b10a03013f65d00afa47119017ff0293537d75070e714b732b7d80a0070 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdaa67667584aba2096292607e2f2e4485df1d1fb2594b2390227cf18df057f0 |
|
MD5 | a5732d98f9ba267680e354782e5240de |
|
BLAKE2b-256 | f2e52500ae826fbad716534fd99da106292419041ef7fc5efe5b46dad2d660e1 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c68ba81b63e23032beda93eeab084f76f141017a26cb895c65777cf3c6c3474 |
|
MD5 | 70d453681d8ac63f7901ae27648aebff |
|
BLAKE2b-256 | 03f691b8b8902f08a402f5fa35ad6250cddc98097c84128848237a3373e00481 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c99930f6d51efd15b6c2feb73b386bffccfc82c535eb7d8229e4fb6467f5c6c |
|
MD5 | b3951703d035c5ff15421d0442875c5a |
|
BLAKE2b-256 | 92443710f475925ca1d108baa868165875fe7920880ed3f04bf8b1360f71fd6f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd9d769f85bd24a558e8d1aee93400811e3f734199acc5410617f67b1041e0f4 |
|
MD5 | 06182b612b234a2f0d263c48d2876483 |
|
BLAKE2b-256 | 69388a1f28eb5dcaa0237cc77f6ae9aeb0a2141c8f50e54e09fe4ae68fe835a2 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bad486bcb3b1bd1f6a6e02d9627c51b993305bd2efd3eb4acd0aff529cd7d43 |
|
MD5 | db3860fdac8d0fe7abb1a8594d86d853 |
|
BLAKE2b-256 | 11da0e4ed0029e600ded1e1a071a5ecfd4f32ff69cd1c80cefb482ab7b73a431 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6506fedaacd814b50cb62745b058796612c0ddd818a35a70082ea76f8b484931 |
|
MD5 | 93f9b2fcc7c3cff6d1c03beae2cc108b |
|
BLAKE2b-256 | 067f01c9f61a25b951a21905e567cc54085ac23b6bbeb48d1e7df2dd3e00db0b |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 284.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cac7e2cf5b40ef297a998fc3ede146f171f99b18210e1237f01002c7e3fa6b0b |
|
MD5 | be7f6d8153e03f30698e4200db7da748 |
|
BLAKE2b-256 | 495d5c7ed368165af452c6b0b7e407f8010ca9b4cf5ff7f07018665940917e6e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 559.8 kB
- Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca41e673b807405c0c5aa97ff8959b80884734b1eb55428c7285de245aa3e101 |
|
MD5 | dbed851282503b6ce8c0ac28404e2474 |
|
BLAKE2b-256 | e37e6f3ee6502fcd6cc8c3347989e8fa95089a1acd81092f7490a6d552dc9d5c |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 174.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e30075e257184328356436a8a6b0e5a0c2b097c224a1e7f9d98a4c350ae5f21 |
|
MD5 | 170b23d72a0595888b0af0c6ed9ded3f |
|
BLAKE2b-256 | beffc3ed976c421dd1b8a42ed4193e0db7a56b0f0d5dc19f23f5e1645fb3330e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-none-win32.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-none-win32.whl
- Upload date:
- Size: 168.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb73e36a209c2b585e878748615c0410d2422908ad86fc12b5ae66fedd7e326d |
|
MD5 | 795d4dab27c21c7b4b3bc2d232316aba |
|
BLAKE2b-256 | 71fcc81f5184c2eec8c97b23b660878c3550289fb6f8164d2cb2ea4276f9bdae |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7ae618dbe27eb5c681a09bec4554d8da8264130a083657fcb80033bbf1c6114 |
|
MD5 | dba55579dd505b933afa407eb5684bd2 |
|
BLAKE2b-256 | c989684df0e0af22510585a2ab355f9e80ef5f2295cae0b97cc0b32c1653607e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b60c49becd9ff3844fe6e0e87319df9c84dd65bb86c36ad3514981f64e7a737a |
|
MD5 | 8baf14dfce7d121cbab90bd71394dc30 |
|
BLAKE2b-256 | 227a5944840fa376678e1b4f95ac880c872fe7499eeb8eb850a0768b2e062074 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03f710c032d903f273c720dfc080b68fead1ed543de8ad53c4c8dde64c6edd56 |
|
MD5 | 72ea373e11b8b4a1d4d142c281b38e14 |
|
BLAKE2b-256 | bac500d11ff80b2979f02bffa396380acec72f112b48da027611572cee9d7873 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a0f978aa8a51ca05142e4e81767d67de08b35ce7db28bc2e600d0c317472013 |
|
MD5 | acfed9079fa6436a83fe32b311774080 |
|
BLAKE2b-256 | 4c6cf46cf4c54c4f164402d5712512c73194f3abb78c08697bed35ce2077bb3e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49e0a42bd9c3825f10d38dcc49bafe5b6543b6c107e4b614e96abf8a7cd58a6f |
|
MD5 | 355c4ee06af0aeb09b7c29152fd7551c |
|
BLAKE2b-256 | 0f53655c94df7dd54652e9b81c2da99fd0d42c2e3beca3853a190395b2107a51 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cebc0e99853c6c12f42e509c27af6131ef36b29e6f381d53c6d81eb1bd21a5f4 |
|
MD5 | d3fda78748642b93f5bdd43dae2af18c |
|
BLAKE2b-256 | 77384df7dc1d45299350ef2a188813253e5003b41026eec536bb870d3087895b |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 183603176b65401492db51a16526360997c91e32bc1ffe20ee527337fc57f634 |
|
MD5 | fadbbeea2b420f291f94124bb9614308 |
|
BLAKE2b-256 | 86a08377ded33533241c8f53b54b8ddb5071fe1989c2251722a82f68022890df |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38af087e1804774f563ff5f9f043022274dfce110b721ca272f89c0de4ee44e1 |
|
MD5 | 476f16522446559af371b9bbab9709c1 |
|
BLAKE2b-256 | 6e15a9cabbe3f9e2c476920704eba17b88efbe1d2164beab9d5684902c95449d |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3d2d02868c73334e84d80a7ad60e6c7506c72c059508e9a38db453e4110a652 |
|
MD5 | 1cefb6e938fad0bcb9465db148da4f7c |
|
BLAKE2b-256 | ece989b211da5be958c3090acfb80521c81678dd9492517893d7f7f52a5703ea |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 284.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afb6d3cea6f8b1d9692a1c5d7a93aa6189f973509ea272f4c070399e88cea36b |
|
MD5 | 24ee3824bb717d8517536a1d2480cf60 |
|
BLAKE2b-256 | 49aac6ae59e47f88a55a93c7d653fb8234791258385ed585371f83def61b60c8 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 559.4 kB
- Tags: CPython 3.10, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1813869ffbf82ebe5fbe749cf0d5e580c605b0fd65d5e738e44439578280f993 |
|
MD5 | ef22643d943097b11265412f2db9e22e |
|
BLAKE2b-256 | d0d91a0e58cfe17763ad01210d2c02342ca34d9cb87a1e1f4faab0ec2731fc64 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 174.3 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1aa084a1b4842c49526ed1189122a96a8cdd73f66ef4219956279044bf6721f |
|
MD5 | c12bc18172c1a6b3bb9b1043d33bddbe |
|
BLAKE2b-256 | 94c85098f22e3871cd26ac96b67301e05975cf9a7d22faddf0d7249c0c4a263c |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-none-win32.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-none-win32.whl
- Upload date:
- Size: 169.3 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4fd826bc2c260716b53db90b2e4c8a0f752aae053fbfbd1860e6e450bcf6ae9 |
|
MD5 | f5d0f6ab337674d07b5fbcc8da7aedcc |
|
BLAKE2b-256 | 8bd20750c443a5951e489405499609b42b28978e291bbbb2d63233f11949737f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d937d37b696a2e3346171367a6ecf69519af4f2a5325e8e7f9a7cfb61597387 |
|
MD5 | 12a306944dbe2e09a625a7d323722200 |
|
BLAKE2b-256 | 3c63b9c92fbe99692b5cf6f94d87b85dde6eb8a8c072df9861e71169d6cc260d |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4ac00e7f3bbb578e20fadf81468f28b63d1b29930192d8285e9d01b2f75f270 |
|
MD5 | 1877a38aa32a668ff56f854841777ae2 |
|
BLAKE2b-256 | 8dd37e25bd732f5313c9f742c71035b5207b48ea06c4770880d2ec36a62411a9 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 407c15bbde425bc4df829771ef601260eda8617ac5adc6f1eb924d916674c34f |
|
MD5 | 4fbf8af857de0e4d7bb82afd5c77fec6 |
|
BLAKE2b-256 | 995e86682b3b1c12cf9669fdd7362653b2677a80f3f915dfe5f6e622c64b2ea2 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04f39fd90656770422cc7ec46467c2eb758e19d70c5844770bd67834ebae40ea |
|
MD5 | 8f3e872f1973741ec78e85091bf15ea4 |
|
BLAKE2b-256 | c5628ec83b4e96bae5d915b64cc80d51776b4c5742b4b7d3eb1e4910f654144f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da47c5c4348a5f88749ac8fd54715bdfa18c1317ebf709121721e9b5fb338c66 |
|
MD5 | 699140cdbc3af4b685253f2b12c3a915 |
|
BLAKE2b-256 | 37ecf2cba0874bb88b8b6719af885ea2f704f82907d295268ecb02a556f19012 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65c5d33fd056517d0ab1624168359371b012cc6e3a0fd6029d212d3973032e90 |
|
MD5 | 9145af292779166b7c3e39919ec06113 |
|
BLAKE2b-256 | 871289f08be3ce25d81e7c47816dbb92bef6862182ec55706d1ca85765ad3873 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 463b98c24c5f6f4d0b46174c1068c19007fe6414c38fbd58d5cb6c8d29cdd1ef |
|
MD5 | 77e7ec25cb6683cf2254e71633745bbd |
|
BLAKE2b-256 | 4796721f2c9fdd0d5b7f7a5404cffd88b78b6c7bf8e76be2d65b60e05ef7d53c |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59fc7ce3dddb5694f6ecd427d557a342f44075cdaf836cd99033fd0cc500e592 |
|
MD5 | ee61a63b23254d4f52b960fec601ce14 |
|
BLAKE2b-256 | ce8e9648e7882b3c6765039e7b6bce8a940cebc8b1cc4ace6441df96172b9eab |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a5817e38d497ae643c68044c5c84153fa47557df1f8c1661c17bd1e26bda1058 |
|
MD5 | 0078a993baf7f11eda2b3ee21af7b2b6 |
|
BLAKE2b-256 | d66638a07e7e82d6178d516412f02d7c647d5e8f32819a8e0fff50109a1fc917 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 284.9 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 997f4d4f505391b69373c852662b5fe0af8c17b71fe401fea7687261464b9aa5 |
|
MD5 | 51ef5a8458eb68819100e177c37b1484 |
|
BLAKE2b-256 | d890c35c37a57752a734441ca24523b93eaa30afde7af29907943cc27733a7bb |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 560.1 kB
- Tags: CPython 3.9, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 076fe5f6e5295a5d47b240ece6047d25ce15e8a114f60acc51b4025c3b973ed9 |
|
MD5 | 0fb6a90f0511ca639c40788968161a62 |
|
BLAKE2b-256 | 3b066dfd28668134993b2bb8c23d6c5f522b5da87b2f15a08f5d18c66690689f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-none-win_amd64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 174.4 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d31ebe0e6d5d1210da259de4d04ee31dfd5407296302bc2dfcca941e3e8f7bee |
|
MD5 | 0335b499266e009683100c6f327cc7e2 |
|
BLAKE2b-256 | cd7ff5c0de497fdf67a7d7490f9a8991035806d6f1339adb1c07ffd6e24aa591 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-none-win32.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-none-win32.whl
- Upload date:
- Size: 169.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d90d432c85bb2d9b3d67c8483b1134cf4363a39fa3273b8f05dcfde2bdddfc5d |
|
MD5 | dfe974346df5238d0b14c95618ac5056 |
|
BLAKE2b-256 | e55e67522bcf3f51447abca0099be938dbe8c8d401ce1fe7c6e17c7aecb1625e |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01f7c73860b3cef024f9f57515dae5d52a554c3d2480d8410174ec5b609e20f5 |
|
MD5 | ec7df97a3aa43fa1ab4a185b5cec0ad2 |
|
BLAKE2b-256 | 07e553462c93784ae91c5201571adc3bcd79842b68d63d72df61ce64e6970eb3 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 247af7258004f497ec927fcf463914df5447eb691d7e9c23528280c471d6e830 |
|
MD5 | c50962515eb94479269f39920f3f095f |
|
BLAKE2b-256 | 95855feca2f84ddda43d82f6cb4c2d57642c7565bee8b52d94665be18e3c6c06 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bf10bd5a898d72f50183718ca18bd61b8830c9134469b4d7b9f73f176f06c9f |
|
MD5 | eb253a9b4eec94f98d52b9168f97e005 |
|
BLAKE2b-256 | 4eeb57cecdb9277fa02002767b43d752cb3852a3bb1f937202f61819b3d5ab0f |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e6d70efc5e3449f0be3184a6925d0feb29fe40bdcd24ee2611a9021ee9b2580 |
|
MD5 | 7af2787695262cc788172b5cfe98eff1 |
|
BLAKE2b-256 | 74ec30ddd5b9a2a0a9986487c11fc671f8df383e4007c07a62aaad02c6c30c43 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab1509e21c74feb68b4a3e309bde8c64a8fce2e4552b79cb14058d6bc17a6129 |
|
MD5 | 101433a4a9a00ba40eba80fc160344e0 |
|
BLAKE2b-256 | 25b15d62157cbcffffc31ca94196271db1c19859a368374daf86a60c8e0dd613 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 884a72b5f87f7534b685382221d872058bb743294cdb0f2215056b6cc85350fb |
|
MD5 | 7d5851105e8d341224816c3d3462f893 |
|
BLAKE2b-256 | 050ecc86bb00756f55a0f2831f1b07de56487c8e52c992a182ead7c01b46f0f4 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 424abbbf7e8bdfe78ab552d838efeb9fd033cfe2208f00aadee2704169a1ebad |
|
MD5 | 2be29e2f5d27e3587fa020639355fe65 |
|
BLAKE2b-256 | 72cc921258f5e4dc3864a61e76c80703ca355593981efcb8e8305ff5548dda94 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 070254d2435e9f187e0e8c0626fc6ed108d308cdec669c6d1493dd117bfbedd1 |
|
MD5 | 4ce7e3847223322734614f600a080f90 |
|
BLAKE2b-256 | bcf183db83ad363cdf8f32587600ec6d35995936d9ebda5939e32090b50088dc |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-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.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 411e29b3a2de713c4a3f3edc653599fb17ef3f38b6a788fecef62c3f229b7b0e |
|
MD5 | 23a145c0c43928bc49395d7b7ccb81f1 |
|
BLAKE2b-256 | 6c6870573afa54dbbff9d8917d533e080616c3f1618cc57deefe278bdf73c328 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 285.3 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb2777eb2837fc88aceb09addb45bfc7bc8dd0058d19627867b459dac3101a4b |
|
MD5 | 7d9ba102caaed646e508c7e643caebef |
|
BLAKE2b-256 | c1e342d2b0fc08bdb5d5cbcd2109c85d00527de1781a6a259a4a3770bbc2a9d3 |
Provenance
File details
Details for the file uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: uuid_utils-0.7.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 561.1 kB
- Tags: CPython 3.8, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48ed8e59c6fdcc8f825e9fa58afc7f98ba37f744a401ff28a47e7042a761b373 |
|
MD5 | 47836b75582ac0cdfe446a2a3468319f |
|
BLAKE2b-256 | 60902dea64d3173e1d1b383a4225cbb595f0e7774a7f2b417660e8600a3306f0 |