utiles = (utils + tiles) * rust
Project description
utiles
utiles = utils + tiles
A mostly drop-in replacement for mercantile written w/ rust, plus several other util(e)ities.
Installation
pip install utiles
Why?
I use mercantile regularly and wished it were a bit more ergonomic, had type annotations, and was faster, but overall it's a great library.
I used this as an excuse to learn some rust, and learned a ton!
Do I/you REALLY need a rust-port of mercantile?
I don't know, decide for yourself. utiles
is certainly faster than mercantile
for some things (see benchmarks below)
Is it really a drop in replacement for mercantile?
Not quite, but it's close. utiles doesn't throw the same exceptions as mercantile, instead it throws ValueError
's and
TypeError
's.
There might be other differences, but I have been using it instead of mercantile for a bit now and it works pretty decent, tho I am open to suggestions!
Usage
import utiles as ut
ut.bounds(1, 1, 1)
# Out: LngLatBbox(west=0, south=-85.0511287798066, east=180, north=0)
t = ut.Tile(1, 2, 3)
x, y, z = t
(x, y, z)
# Out: (1, 2, 3)
t
# Out: Tile(x=1, y=2, z=3)
t.parent()
# Out: Tile(x=0, y=1, z=2)
t.children()
# Out:
# [Tile(x=2, y=4, z=4),
# Tile(x=3, y=4, z=4),
# Tile(x=3, y=5, z=4),
# Tile(x=2, y=5, z=4)]
t.bounds()
# Out: LngLatBbox(west=-135, south=40.97989806962013, east=-90, north=66.51326044311186)
t.ul()
# Out: LngLat(lng=-135, lat=66.51326044311186)
t.asdict()
# Out: {'x': 1, 'z': 3, 'y': 2}
t.center()
# Out: LngLat(lng=-112.5, lat=53.74657925636599)
~t # tms flip
# Out: Tile(x=1, y=5, z=3)
t.valid()
# Out: True
ut.Tile(1000, 1231234124, 2).valid()
# Out: False
t.pmtileid()
# Out: 34
from_pmtile_id = ut.Tile.from_pmtileid(34)
ut.Tile.from_pmtileid(34)
# Out: Tile(x=1, y=2, z=3)
t.json_arr()
# Out: '[1, 2, 3]'
t.json_obj()
# Out: '{"x":1,"y":2,"z":3}'
t.fmt_zxy()
# Out: '3/1/2'
t.fmt_zxy_ext('.png')
# Out: '3/1/2..png'
t.fmt_zxy_ext('png')
# Out: '3/1/2.png'
t == (1, 2, 3)
# Out: True
t == (1, 2, 2234234)
# Out: False
t == (1, 2, 22)
# Out: False
Some benchmarks (WIP)
---------------------------------------------------------------------------------------------------- benchmark 'quadkey': 12 tests -----------------------------------------------------------------------------------------------------
Name (time in ns) Min Max Mean StdDev Median IQR Outliers OPS (Kops/s) Rounds Iterations
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_quadkey_bench[utiles-(0, 0, 0)] 199.9942 (1.0) 47,100.0021 (8.78) 284.7909 (1.0) 315.1058 (6.70) 299.9950 (1.06) 100.0008 (>1000.0) 966;1164 3,511.3476 (1.0) 38911 1
test_quadkey_bench[utiles-(1, 1, 1)] 252.6316 (1.26) 5,363.1581 (1.0) 293.9171 (1.03) 47.0478 (1.0) 284.2108 (1.0) 10.5264 (>1000.0)2884;35689 3,402.3204 (0.97) 196079 19
test_quadkey_bench[utiles-(1, 0, 1)] 299.9950 (1.50) 86,300.0023 (16.09) 397.2831 (1.39) 383.5726 (8.15) 399.9958 (1.41) 0.0073 (1.0) 1451;22409 2,517.0967 (0.72) 99010 1
test_quadkey_bench[mercantile-(0, 0, 0)] 599.9973 (3.00) 28,200.0037 (5.26) 821.2744 (2.88) 301.0209 (6.40) 799.9988 (2.81) 0.0073 (1.0) 658;21559 1,217.6198 (0.35) 69445 1
test_quadkey_bench[utiles-(1, 40, 7)] 599.9973 (3.00) 136,899.9947 (25.53) 758.0325 (2.66) 676.4311 (14.38) 699.9981 (2.46) 0.0073 (1.0) 565;29079 1,319.2047 (0.38) 108696 1
test_quadkey_bench[utiles-(486, 332, 10)] 749.9999 (3.75) 8,055.0002 (1.50) 838.5705 (2.94) 137.5439 (2.92) 824.9997 (2.90) 23.7496 (>1000.0) 1445;4742 1,192.5056 (0.34) 63695 20
test_quadkey_bench[mercantile-(1, 0, 1)] 799.9988 (4.00) 104,300.0011 (19.45) 1,015.6996 (3.57) 539.0831 (11.46) 1,000.0003 (3.52) 0.0073 (1.0) 1217;51791 984.5431 (0.28) 119048 1
test_quadkey_bench[mercantile-(1, 1, 1)] 799.9988 (4.00) 75,999.9966 (14.17) 1,047.5805 (3.68) 419.8019 (8.92) 1,000.0003 (3.52) 100.0008 (>1000.0) 3366;4074 954.5806 (0.27) 166667 1
test_quadkey_bench[utiles-(486, 332, 20)] 1,299.9953 (6.50) 83,399.9948 (15.55) 1,545.1801 (5.43) 461.2615 (9.80) 1,499.9969 (5.28) 100.0008 (>1000.0)8793;17328 647.1738 (0.18) 163935 1
test_quadkey_bench[mercantile-(1, 40, 7)] 1,599.9976 (8.00) 110,599.9982 (20.62) 1,789.4247 (6.28) 711.1950 (15.12) 1,799.9992 (6.33) 100.0008 (>1000.0) 1599;2703 558.8388 (0.16) 116280 1
test_quadkey_bench[mercantile-(486, 332, 10)] 1,999.9934 (10.00) 117,000.0032 (21.82) 2,353.1110 (8.26) 768.5591 (16.34) 2,300.0030 (8.09) 200.0015 (>1000.0) 1917;2168 424.9693 (0.12) 117648 1
test_quadkey_bench[mercantile-(486, 332, 20)] 3,199.9953 (16.00) 66,100.0013 (12.32) 3,601.3369 (12.65) 567.1348 (12.05) 3,599.9983 (12.67) 100.0080 (>1000.0) 1479;4347 277.6747 (0.08) 97088 1
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------- benchmark 'tiles': 2 tests ---------------------------------------------------------------------------------------------
Name (time in us) Min Max Mean StdDev Median IQR Outliers OPS Rounds Iterations
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_tiles_gen_bench[utiles] 239.3000 (1.0) 1,597.3000 (1.0) 308.5684 (1.0) 130.3316 (1.0) 267.2000 (1.0) 16.5000 (1.0) 312;559 3,240.7721 (1.0) 3232 1
test_tiles_gen_bench[mercantile] 1,349.9000 (5.64) 7,159.2000 (4.48) 1,798.2186 (5.83) 779.7610 (5.98) 1,526.7000 (5.71) 149.6250 (9.07) 66;111 556.1059 (0.17) 601 1
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------- benchmark 'ul': 12 tests ------------------------------------------------------------------------------------------------------
Name (time in ns) Min Max Mean StdDev Median IQR Outliers OPS (Kops/s) Rounds Iterations
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_ul_bench[utiles-(1, 1, 1)] 204.3478 (1.0) 7,160.8697 (1.0) 263.7100 (1.0) 125.3400 (1.00) 221.7392 (1.0) 26.0868 (1.30) 17101;28014 3,792.0436 (1.0) 169492 23
test_ul_bench[utiles-(1, 0, 1)] 229.9999 (1.13) 10,579.9998 (1.48) 273.2589 (1.04) 124.7846 (1.0) 250.0001 (1.13) 20.0002 (1.0) 9266;14360 3,659.5327 (0.97) 188680 20
test_ul_bench[utiles-(1, 40, 7)] 229.9999 (1.13) 42,870.0001 (5.99) 311.4689 (1.18) 188.2129 (1.51) 255.0001 (1.15) 35.0003 (1.75) 16764;39465 3,210.5932 (0.85) 200000 20
test_ul_bench[utiles-(486, 332, 20)] 229.9999 (1.13) 65,699.9997 (9.17) 318.4368 (1.21) 243.5307 (1.95) 259.9998 (1.17) 35.0003 (1.75) 11008;36596 3,140.3404 (0.83) 178572 20
test_ul_bench[utiles-(0, 0, 0)] 299.9950 (1.47) 33,899.9962 (4.73) 349.3773 (1.32) 205.0577 (1.64) 300.0023 (1.35) 100.0008 (5.00) 618;618 2,862.2349 (0.75) 70423 1
test_ul_bench[utiles-(486, 332, 10)] 299.9950 (1.47) 57,999.9978 (8.10) 403.1283 (1.53) 400.2343 (3.21) 399.9958 (1.80) 100.0008 (5.00) 2013;20449 2,480.5998 (0.65) 192308 1
test_ul_bench[mercantile-(0, 0, 0)] 999.9931 (4.89) 206,099.9977 (28.78) 1,296.5665 (4.92) 1,201.7776 (9.63) 1,200.0019 (5.41) 100.0008 (5.00) 387;2129 771.2678 (0.20) 45872 1
test_ul_bench[mercantile-(1, 0, 1)] 999.9931 (4.89) 166,500.0018 (23.25) 1,288.3700 (4.89) 712.6090 (5.71) 1,299.9953 (5.86) 100.0008 (5.00) 2119;3450 776.1746 (0.20) 147059 1
test_ul_bench[mercantile-(1, 1, 1)] 1,000.0003 (4.89) 102,799.9970 (14.36) 1,253.0401 (4.75) 570.2565 (4.57) 1,200.0019 (5.41) 100.0008 (5.00) 2957;3697 798.0590 (0.21) 144928 1
test_ul_bench[mercantile-(1, 40, 7)] 1,000.0003 (4.89) 89,599.9983 (12.51) 1,263.1955 (4.79) 586.9464 (4.70) 1,200.0019 (5.41) 100.0008 (5.00) 1775;2965 791.6431 (0.21) 166667 1
test_ul_bench[mercantile-(486, 332, 10)] 1,099.9938 (5.38) 90,200.0029 (12.60) 1,327.0801 (5.03) 536.7494 (4.30) 1,299.9953 (5.86) 100.0008 (5.00) 6813;7956 753.5340 (0.20) 135136 1
test_ul_bench[mercantile-(486, 332, 20)] 1,099.9938 (5.38) 107,300.0021 (14.98) 1,264.2361 (4.79) 594.6154 (4.77) 1,200.0019 (5.41) 100.0008 (5.00) 1522;2265 790.9915 (0.21) 123457 1
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Contributing
- Please do! Would love some feedback!
- Be kind!
- I will happily accept PRs, and add you to the currently (5/26/2023) non-existent contributors list.
TODO:
- [] benchmark against mercantile
- Maybe:
- [] Split library into
utiles
(rust lib) andutiles-python
(python/pip package)? - [] Mbtiles support??
- [] Reading/writing mvt files?
- [] Re-write cli in rust with clap?
- [] Split library into
MISC
zoom info
zoom | ntiles | total | rowcol_range | max_rowcol |
---|---|---|---|---|
0 | 1 | 1 | 0 | 1 |
1 | 4 | 5 | 1 | 2 |
2 | 16 | 21 | 3 | 4 |
3 | 64 | 85 | 7 | 8 |
4 | 256 | 341 | 15 | 16 |
5 | 1_024 | 1_365 | 31 | 32 |
6 | 4_096 | 5_461 | 63 | 64 |
7 | 16_384 | 21_845 | 127 | 128 |
8 | 65_536 | 87_381 | 255 | 256 |
9 | 262_144 | 349_525 | 511 | 512 |
10 | 1_048_576 | 1_398_101 | 1_023 | 1_024 |
11 | 4_194_304 | 5_592_405 | 2_047 | 2_048 |
12 | 16_777_216 | 22_369_621 | 4_095 | 4_096 |
13 | 67_108_864 | 89_478_485 | 8_191 | 8_192 |
14 | 268_435_456 | 357_913_941 | 16_383 | 16_384 |
15 | 1_073_741_824 | 1_431_655_765 | 32_767 | 32_768 |
16 | 4_294_967_296 | 5_726_623_061 | 65_535 | 65_536 |
17 | 17_179_869_184 | 22_906_492_245 | 131_071 | 131_072 |
18 | 68_719_476_736 | 91_625_968_981 | 262_143 | 262_144 |
19 | 274_877_906_944 | 366_503_875_925 | 524_287 | 524_288 |
20 | 1_099_511_627_776 | 1_466_015_503_701 | 1_048_575 | 1_048_576 |
21 | 4_398_046_511_104 | 5_864_062_014_805 | 2_097_151 | 2_097_152 |
22 | 17_592_186_044_416 | 23_456_248_059_221 | 4_194_303 | 4_194_304 |
23 | 70_368_744_177_664 | 93_824_992_236_885 | 8_388_607 | 8_388_608 |
24 | 281_474_976_710_656 | 375_299_968_947_541 | 16_777_215 | 16_777_216 |
25 | 1_125_899_906_842_624 | 1_501_199_875_790_165 | 33_554_431 | 33_554_432 |
26 | 4_503_599_627_370_496 | 6_004_799_503_160_661 | 67_108_863 | 67_108_864 |
27 | 18_014_398_509_481_984 | 24_019_198_012_642_645 | 134_217_727 | 134_217_728 |
28 | 72_057_594_037_927_936 | 96_076_792_050_570_581 | 268_435_455 | 268_435_456 |
29 | 288_230_376_151_711_744 | 384_307_168_202_282_325 | 536_870_911 | 536_870_912 |
30 | 1_152_921_504_606_846_976 | 1_537_228_672_809_129_301 | 1_073_741_823 | 1_073_741_824 |
31 | 4_611_686_018_427_387_904 | 6_148_914_691_236_517_205 | 2_147_483_647 | 2_147_483_648 |
Zoom levels
zoom ntiles total rowcol_range max_rowcol
0 0 1 1 0 1
1 1 4 5 1 2
2 2 16 21 3 4
3 3 64 85 7 8
4 4 256 341 15 16
5 5 1024 1365 31 32
6 6 4096 5461 63 64
7 7 16384 21845 127 128
8 8 65536 87381 255 256
9 9 262144 349525 511 512
10 10 1048576 1398101 1023 1024
11 11 4194304 5592405 2047 2048
12 12 16777216 22369621 4095 4096
13 13 67108864 89478485 8191 8192
14 14 268435456 357913941 16383 16384
15 15 1073741824 1431655765 32767 32768
16 16 4294967296 5726623061 65535 65536
17 17 17179869184 22906492245 131071 131072
18 18 68719476736 91625968981 262143 262144
19 19 274877906944 366503875925 524287 524288
20 20 1099511627776 1466015503701 1048575 1048576
21 21 4398046511104 5864062014805 2097151 2097152
22 22 17592186044416 23456248059221 4194303 4194304
23 23 70368744177664 93824992236885 8388607 8388608
24 24 281474976710656 375299968947541 16777215 16777216
25 25 1125899906842624 1501199875790165 33554431 33554432
26 26 4503599627370496 6004799503160661 67108863 67108864
27 27 18014398509481984 24019198012642645 134217727 134217728
28 28 72057594037927936 96076792050570581 268435455 268435456
29 29 288230376151711744 384307168202282325 536870911 536870912
30 30 1152921504606846976 1537228672809129301 1073741823 1073741824
31 31 4611686018427387904 6148914691236517205 2147483647 2147483648
json
[
{
"max_rowcol": 1,
"ntiles": 1,
"rowcol_range": 0,
"total": 1,
"zoom": 0
},
{
"max_rowcol": 2,
"ntiles": 4,
"rowcol_range": 1,
"total": 5,
"zoom": 1
},
{
"max_rowcol": 4,
"ntiles": 16,
"rowcol_range": 3,
"total": 21,
"zoom": 2
},
{
"max_rowcol": 8,
"ntiles": 64,
"rowcol_range": 7,
"total": 85,
"zoom": 3
},
{
"max_rowcol": 16,
"ntiles": 256,
"rowcol_range": 15,
"total": 341,
"zoom": 4
},
{
"max_rowcol": 32,
"ntiles": 1024,
"rowcol_range": 31,
"total": 1365,
"zoom": 5
},
{
"max_rowcol": 64,
"ntiles": 4096,
"rowcol_range": 63,
"total": 5461,
"zoom": 6
},
{
"max_rowcol": 128,
"ntiles": 16384,
"rowcol_range": 127,
"total": 21845,
"zoom": 7
},
{
"max_rowcol": 256,
"ntiles": 65536,
"rowcol_range": 255,
"total": 87381,
"zoom": 8
},
{
"max_rowcol": 512,
"ntiles": 262144,
"rowcol_range": 511,
"total": 349525,
"zoom": 9
},
{
"max_rowcol": 1024,
"ntiles": 1048576,
"rowcol_range": 1023,
"total": 1398101,
"zoom": 10
},
{
"max_rowcol": 2048,
"ntiles": 4194304,
"rowcol_range": 2047,
"total": 5592405,
"zoom": 11
},
{
"max_rowcol": 4096,
"ntiles": 16777216,
"rowcol_range": 4095,
"total": 22369621,
"zoom": 12
},
{
"max_rowcol": 8192,
"ntiles": 67108864,
"rowcol_range": 8191,
"total": 89478485,
"zoom": 13
},
{
"max_rowcol": 16384,
"ntiles": 268435456,
"rowcol_range": 16383,
"total": 357913941,
"zoom": 14
},
{
"max_rowcol": 32768,
"ntiles": 1073741824,
"rowcol_range": 32767,
"total": 1431655765,
"zoom": 15
},
{
"max_rowcol": 65536,
"ntiles": 4294967296,
"rowcol_range": 65535,
"total": 5726623061,
"zoom": 16
},
{
"max_rowcol": 131072,
"ntiles": 17179869184,
"rowcol_range": 131071,
"total": 22906492245,
"zoom": 17
},
{
"max_rowcol": 262144,
"ntiles": 68719476736,
"rowcol_range": 262143,
"total": 91625968981,
"zoom": 18
},
{
"max_rowcol": 524288,
"ntiles": 274877906944,
"rowcol_range": 524287,
"total": 366503875925,
"zoom": 19
},
{
"max_rowcol": 1048576,
"ntiles": 1099511627776,
"rowcol_range": 1048575,
"total": 1466015503701,
"zoom": 20
},
{
"max_rowcol": 2097152,
"ntiles": 4398046511104,
"rowcol_range": 2097151,
"total": 5864062014805,
"zoom": 21
},
{
"max_rowcol": 4194304,
"ntiles": 17592186044416,
"rowcol_range": 4194303,
"total": 23456248059221,
"zoom": 22
},
{
"max_rowcol": 8388608,
"ntiles": 70368744177664,
"rowcol_range": 8388607,
"total": 93824992236885,
"zoom": 23
},
{
"max_rowcol": 16777216,
"ntiles": 281474976710656,
"rowcol_range": 16777215,
"total": 375299968947541,
"zoom": 24
},
{
"max_rowcol": 33554432,
"ntiles": 1125899906842624,
"rowcol_range": 33554431,
"total": 1501199875790165,
"zoom": 25
},
{
"max_rowcol": 67108864,
"ntiles": 4503599627370496,
"rowcol_range": 67108863,
"total": 6004799503160661,
"zoom": 26
},
{
"max_rowcol": 134217728,
"ntiles": 18014398509481984,
"rowcol_range": 134217727,
"total": 24019198012642645,
"zoom": 27
},
{
"max_rowcol": 268435456,
"ntiles": 72057594037927936,
"rowcol_range": 268435455,
"total": 96076792050570581,
"zoom": 28
},
{
"max_rowcol": 536870912,
"ntiles": 288230376151711744,
"rowcol_range": 536870911,
"total": 384307168202282325,
"zoom": 29
},
{
"max_rowcol": 1073741824,
"ntiles": 1152921504606846976,
"rowcol_range": 1073741823,
"total": 1537228672809129301,
"zoom": 30
},
{
"max_rowcol": 2147483648,
"ntiles": 4611686018427387904,
"rowcol_range": 2147483647,
"total": 6148914691236517205,
"zoom": 31
}
]
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 utiles-0.0.2.tar.gz
.
File metadata
- Download URL: utiles-0.0.2.tar.gz
- Upload date:
- Size: 49.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a079055008a516ce0aa8f2f35d2b6ef65958ad1b52899bf4d6e1a09248d7c271 |
|
MD5 | e7a3aeced213732b8331ce9108373174 |
|
BLAKE2b-256 | 33166fab22eabe55b71105177243cfd0552cb830ef9111c9a208f6e11074c903 |
Provenance
File details
Details for the file utiles-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 358.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 189c1af6b95f80cc1f1d6b1909103366de215eac745df431681cb86279eeef0a |
|
MD5 | 85eb1573daa54da6444638a2e23f4c46 |
|
BLAKE2b-256 | 0f158b5980e654f7bec5adc35872ecb21ca1febdc2f88ff8e33e4273fd172f43 |
Provenance
File details
Details for the file utiles-0.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 389.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2566262f54f5c5a00c6006d4d010ed10cfcb2786bf68dea5424235211f949bc1 |
|
MD5 | efd753fbb9d080caa7363b9ff29b147a |
|
BLAKE2b-256 | adc195d9e81427373d1fbb6af72f42d6cf273185c73f85d96f65d48e02de67eb |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 358.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63493fd337d8bfd6f5609b55e4493d9952e8a1b9321306e7e913d1b467676978 |
|
MD5 | 49ef9cba991561b09b4c7235ee640f56 |
|
BLAKE2b-256 | e6e8b16faf15f319735f2d8d0a701f83a6c0634d205cacc371d77e67b9ba7277 |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5be7789d7fcc8de33182f8959478c555df7dc44ecd031cc3d8d771ce1e192d8c |
|
MD5 | 0f755cff373334e83915e3a59042f93a |
|
BLAKE2b-256 | c506a3b177572abc2ad9629c46f43549b016ae902924877e552fe4f09fc3bf44 |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9f047ec6d5b25f4fa4e891f40f58c333a2f3b78d0d28b4d8004356dfc921e7a |
|
MD5 | 83f92260760a9b2cca7dd83016ed7624 |
|
BLAKE2b-256 | 8b21fe3aa2962b30bf436a2515b424c27b07df7b391be61c53e8a30802e9f02d |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 329.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01d25b47931fde7311f18d6e9af2f405daed2fa35510cdecec40ed73d68b77e5 |
|
MD5 | 8569d89935cf5622d470040352e7d836 |
|
BLAKE2b-256 | 8b1dff734a4f26930e33adc9fc130144feedb4dbb6e7503a54cf3dc986bb4ea9 |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69154ffbc6304997c74d82086a94662ae5b9b79efbd2c2f2c1cc4ac95984f6ef |
|
MD5 | 96b5e96d07f66def8e385710c4ecbf2b |
|
BLAKE2b-256 | 630d8b6d90cc030019f67b0312c7eb7e8ed9b14eaffe1e7f7955aa83ea4648c3 |
Provenance
File details
Details for the file utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 389.2 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 29276737e65830c3ea8345d7b3243ff5ae4c1ea9dfe904fbaf00290b3077bdad |
|
MD5 | 4ac175f12e3295dc981d2de117b5565d |
|
BLAKE2b-256 | ca0329c49328841b026997297df0305e91bdafc9f0f97c749d4914a322089656 |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 359.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a81e796cc17090f035d62b2b2d239984957aef368f40a2a2c4a8d35a8a64e1f3 |
|
MD5 | fc1cd81e9600e1292dcaf34f7a5ed591 |
|
BLAKE2b-256 | 57ae9fe0970f442dd605e7e0b834e516e0dfe961894414483f0f6c216c566e63 |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ede2451088115ad50b9b5ba6507c2b7f5c9babaccf81332ef890232ea37264d |
|
MD5 | 1b8982bfb6243d585b60a683841c3f25 |
|
BLAKE2b-256 | c6f454dc46ea0fc7aa600a4750b218a51252559cd18ca472de307a1eec750109 |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ad9c4a970bcab693aa6e61c9b4fdf5741192e774f3f5b8766118d029bc9c561 |
|
MD5 | 2ceef58a64ce0dd4cde67672811af226 |
|
BLAKE2b-256 | 2868eb239d4064b2414c7a4340102a2e6c3dc2468e4615eaf17f22dfbf52b49b |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ac7bc20786da85b25d4ca55c1a0ea59f438434e4150e151cd5d1717195a3548 |
|
MD5 | d747029eb96609b110d2564423ee7fc3 |
|
BLAKE2b-256 | bf71f4d6f77ed3a6741492aa41a99828e7ce63b3a4fe700ad0d664da46fd01c9 |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 419be9ce5dc7eb75327e05af3fd684e30625c80836f543aa9a6fb8382f8a47e2 |
|
MD5 | a00e16e1f893e1e5bfba42ab6fea8477 |
|
BLAKE2b-256 | 8c6c799f284dcdc617f66234107bd826ef475c625f70fc0dbe28418cd8e86738 |
Provenance
File details
Details for the file utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 390.3 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3808d12e70c334d74cf7ef96dbf4629885268f3c25482ab34f246ef8965759bb |
|
MD5 | bc046a925c40d3894b74e468ba1edf56 |
|
BLAKE2b-256 | ff0cf6232e73a6f572ace9317e012a8c12cf2c39c11b2849aa89b382f1207c86 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 361.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e33181edd38ca2bbe91edbe9e21bbb14ac63fbd6522fbceb245d38c41f4aa0f |
|
MD5 | f960abd44b78d836223da6155ee80146 |
|
BLAKE2b-256 | 4d14daa5995a3c86dfb051704f2a424c3362dd9fb80bd0909093da45f79d98c0 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 458.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8baca3a8ee07cd4b7b0141da7f0c5a44cf2eb081e2763834872482ea5719cd5f |
|
MD5 | 2e84a6aaba52ef9dccac429f4b4d831d |
|
BLAKE2b-256 | bc3611a131bc7a54e5fd56b6905ab7798bbb005d49171a24f4f6a3deb2095e28 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 446.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6464ba3b8aee5bafcd1735478901ffff4cc38fd99665c63048b8a85765536269 |
|
MD5 | acb461eaeb97601b09861b0b5e80634a |
|
BLAKE2b-256 | 528fa718f97a491b48db0b688689b1a0462de7ffd7e9640d0328c9b71f5761f1 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 334.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ec741fff53ff763f94073caceb400c41637641507fe0de18afe5fe2a257ddca |
|
MD5 | 20fdf2dd8b6e81c4db54d2ad2476d603 |
|
BLAKE2b-256 | 71895d1b82c2d66a0bfd52c79704b149ce5d2c609da55505134d01354a447ce1 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 339.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a8ab3e5fea9461ec3fccf49f0a7a8d6abd12c73a0f1b848457f444cd01d21d3 |
|
MD5 | a040b2fba5272957e592cc2206f5a976 |
|
BLAKE2b-256 | 2a2357bdbae795a1853a209ec8fd209128643206aeb6987a014058c785cb08b7 |
Provenance
File details
Details for the file utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 392.7 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40b0a400f75fe435590b15e2e98f6c16c8d1d872b910a2d6f4c45adcb982a655 |
|
MD5 | 42a0fc0370460fbecc17aae59084a4f8 |
|
BLAKE2b-256 | 685bf04d697fe3d876c9d505098428eccb08e45caec2e266eaf849f18c5f559e |
Provenance
File details
Details for the file utiles-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 357.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a554bf1817a95934f91f7fc019e29113e7016456aad70508cab523fad89ae9f2 |
|
MD5 | 863310f1d17b213ba314ffd1e71ced3f |
|
BLAKE2b-256 | add9826e7cd5bff59fdd973249a05219b9df07c08be5c56c4f960f73799e28d6 |
Provenance
File details
Details for the file utiles-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96a6d50eeefa5590f859dd03cbcc4563d964a464151a5d7dcedf8e6991da8719 |
|
MD5 | 8975abdfff541f5a1c96e9ddce1ed60d |
|
BLAKE2b-256 | bcb6e36ee71322002cca9e2a39faa4a27f65703f8f75ee4f3f72fe4548a17b2e |
Provenance
File details
Details for the file utiles-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b9aa4641a4b7fc45ca3b666adbb008c4bb588dc409aeb06a9a2f740d27d8a20 |
|
MD5 | 6c61c126aa3a948dafc254a31f011af2 |
|
BLAKE2b-256 | cc8e141f9d34e5a3ea0d6e86a06cd9044ae7e8757080d0edf32500e917f7e23c |
Provenance
File details
Details for the file utiles-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13a32c33389343f11f368064bde9e60d41391bba4aa196c8bf57e27d6636dd61 |
|
MD5 | 36b442a5bec2d7fb0c30b99867cff5a5 |
|
BLAKE2b-256 | 8a952a2b3ab891949d5628a08e7d34fce22ee4425bc55ffa4b4bf8bbbbe50b77 |
Provenance
File details
Details for the file utiles-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bdbc06bfa54a5e009bb18f54f52e143fdc9705b7a59c6c5ebbfb4474b6bcc6a |
|
MD5 | 5024d3851b0f62f72ebe9a2f8c579014 |
|
BLAKE2b-256 | a993f02053bed317291a9e0d3680d94a0d67de4ed4539c41b9b498f6892a84d8 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 272.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e705dd50a4318c8b9ddae552dbce41fa3ff4b80b620214e71044e8695dbfaf8c |
|
MD5 | a566eddf1360530a0ea7aec7f99cbade |
|
BLAKE2b-256 | 3d5e5f0a71c4bf855de7a056ceff0bbd1e9d933bece7edd26f91666ca0626449 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-none-win32.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-none-win32.whl
- Upload date:
- Size: 260.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8314faa7968da2a4f383c65634d8232b2a29f0ad51c84b2284c0e71a5a613edb |
|
MD5 | 548e915fffffe56409aabd3ef1e988ba |
|
BLAKE2b-256 | 06775d851aa6e916689421d4c7a6d5b0badb8a871d3a97354ecd6be3107eb87c |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 357.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5fdac06fcd4f6fca0c664de17932269f453496204534ec6bea1c370d9ea20b0 |
|
MD5 | e7e2a594a8ecfad3548befd5ffcab79d |
|
BLAKE2b-256 | 77cf7a69f56d5dd2f2dc6098989aec94315e5d7fd55b388adb045a1cb379bda7 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 453.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f63141a4b3338db3915c1e55e7caae336a8bce89e7d70106c1b757728eb59ce |
|
MD5 | c39a81df16fbfffd2313bd6e550b56e2 |
|
BLAKE2b-256 | 09c11743a7550a846e6d86681ee1e18955fa138785c328e3c63510b62cd79c29 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07c38627f196371caba512f8978ca3ceffc41cde1bc6276339186584f9db8438 |
|
MD5 | f2478cc62ebd4096d98423d3bd4094e0 |
|
BLAKE2b-256 | 985e2e4dd92115f84bbecadf19d2bbf25c4936f89b26824c223ba003ac976420 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9caa41c2deb6f61c7e8095e20933cd853e105af759b9cc65aab828d3715b1ba7 |
|
MD5 | e7379d592cd9135cf42b1996ba943751 |
|
BLAKE2b-256 | 3c07ca0428992927f00c893220374c6d324916720c92497cbc4920fd3e59ee55 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd011b5bc895dde559fba5264b280907c3255628c1cfbf762c71b81f4ee7c454 |
|
MD5 | 9b827a82f129ae0a7a9ea008bcc3a0c6 |
|
BLAKE2b-256 | b5b28e1cb075f4990b6f3431d89fc6026c5bc8afebd71157ecea239cba3b7199 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac5528d34a9ffe34a9925407a59f81fec140d699d9327911870cd3bdae77efe0 |
|
MD5 | f5505997678ef8b3caf26cd467547b11 |
|
BLAKE2b-256 | fc0658581e10161ad1cb3d7204a9edebf18bf234d2f4d786da88546253187199 |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 316.3 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70fe671919e148f3a29b8293b34138b685c35d1517591cbc017a37e4f7466e57 |
|
MD5 | 51388f494aafa6abcca5a38f25e1e269 |
|
BLAKE2b-256 | a8fb21682e72aeec3bece919cf00c6d10bbd6ef2e6271d51b937bfb7f3ec6b7b |
Provenance
File details
Details for the file utiles-0.0.2-cp311-cp311-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 334.6 kB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | baa936b318ea50ea71b42823e4802e85116944e19ba38e818af3141c9247b5ea |
|
MD5 | 4aecec1dea21405bbc84875331aa9147 |
|
BLAKE2b-256 | 9450388613b443b260b9de4c06a643df78f25ff3ad215c6e82691048cfb493c9 |
Provenance
File details
Details for the file utiles-0.0.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 272.0 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6c6769ac9918b2556d1c3a87c8e9236a2d8259692d4c19d3cecfa893de549e5 |
|
MD5 | f086c14003d128f7bf43272e4940b53b |
|
BLAKE2b-256 | 8536119cf5fd118998b84cc24e0438849b64c7adb1c868b100e862b192267727 |
Provenance
File details
Details for the file utiles-0.0.2-cp310-none-win32.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-none-win32.whl
- Upload date:
- Size: 260.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12f261259c9b8abe180b24bcbe6a90e55d0c7b7a85e8638d98b039e9e5be58c4 |
|
MD5 | 0f41fd67abb614b05e20022ccb6a35c8 |
|
BLAKE2b-256 | 34b5220a64b52dd6ce7024b901ad4aed60b3f457c2802d048c53804bad76fb1b |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 357.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5bf8eb7292fff90f931e4b0960b0b8a0a3e1f34d10d0000401956af86ee198a |
|
MD5 | 2ae5e906d0903d095dfb8c76efbf5536 |
|
BLAKE2b-256 | 1ea458c0817318ea6e130d51a45e42f9f1352dfaede772c669d2d14d5625c244 |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 453.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d16fb24390c7712b2c1b925da851de68e1ab5232248b68cc7a2c4ff91d45809 |
|
MD5 | 8847dd91f1460c3eb688713987c11845 |
|
BLAKE2b-256 | fa49edfcc10c7475372c8db9b46b580131da8fa6fbe0b2e78127d00f139f0b7c |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57f1879ae21d9c768a4691d855f612a7f0faefe9d1941dac0e4356c9a8936920 |
|
MD5 | d33c525f8e449b6cebddda53bb5f4d94 |
|
BLAKE2b-256 | ad3258d3aac731b8c5a256ea55a2e50a87c207b916b4727f14b77df40a6a4381 |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d97f84396facc254f976fdc369f768181394f5c38aab227da5a8c57ee942f83 |
|
MD5 | bdd73afde62fc679635be8110bb01731 |
|
BLAKE2b-256 | dd7b2fd824c7ccd44da78265f9b0806a71f4a5d4d5836b059a3aa6ab86911f0f |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c5bab2eaefbdea0a99c8264891effcff8489f995733cc9c1aaf8e3caf875597 |
|
MD5 | 9973163b34980cd06e97699798e8c73c |
|
BLAKE2b-256 | 630e79ba938581c4fa12f9e4d3be840d508fabf8f2529308bc3e3d87a96dec5a |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4d30f48b4e6110a92c35a220038e71110b4b516d350b76d76987b680914f0e8 |
|
MD5 | d463dd5ab8a21d20c885ee04df96fb7c |
|
BLAKE2b-256 | 53976d7664a1814903787671f023c8a3629451d49b843261395515a26ed164ad |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 316.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbdb2cc289b97fa561a28addb547aa35fe31d3691071644ecf44c57e6ae7b17c |
|
MD5 | 12051d0547eeb30609866a6eb52a762d |
|
BLAKE2b-256 | 841c7e22ef86863317abe40bc787b776987bc81da38ee16e4f6596683968b4de |
Provenance
File details
Details for the file utiles-0.0.2-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 334.6 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ddd10a02962255364669d7282c11b3d34c6e65fc0c2b1e4b93ad1433ef49f8c |
|
MD5 | 66c42f55697f999ed3a8d4f710c1606f |
|
BLAKE2b-256 | 0ef51f6f00156556f3a56fe44e1e7f05d4d53daeb14f7cd5cb1b680b6a4433fd |
Provenance
File details
Details for the file utiles-0.0.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 272.2 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85eff73b06239b8a729f302a07cd70666727e049782ae7632ec8d76832d657a4 |
|
MD5 | 42c2bfe950cf81a4ac6d8d981a3dd7d1 |
|
BLAKE2b-256 | edd690d7a50ef58a42523490f584918cc1724b14f914de0c720a472804ab3cce |
Provenance
File details
Details for the file utiles-0.0.2-cp39-none-win32.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-none-win32.whl
- Upload date:
- Size: 260.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5fb90e4c14116b6124daa641f4ee34fb31dd9f20a31601ed4a10c5b9a03aeb93 |
|
MD5 | 5e4bd073cf415cbf2fefa627d416888e |
|
BLAKE2b-256 | 0c9a7591b2e240be7351ebfa78c5f4e55c4df4eb7a943f43e259ea5e46f3e55b |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 358.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7acfe2e9084e98985754d5b08e81e8b44ae677b9041b07a4aca193de0d49b4d4 |
|
MD5 | dc83ec620657b037d11873b4784c3b63 |
|
BLAKE2b-256 | 6aff2f47a66a25c2e0bea612c5ee64cec4ebe52df00bf35bd22a80c0d118ff2e |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 454.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9440010b19a1a5b65cdfeea1dbc9cf916c36fd87c2ce459948d16cc06378991 |
|
MD5 | 86c26694a76b75d56948e964ea2dcf58 |
|
BLAKE2b-256 | 1faf99d24ca66e176533db007eab742ead65a57a8a6034c23d6e9741c3b336e0 |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 444.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c240ad689a2755bedb5571b082f0c68089e4157564c40056ae537dca254d9ee |
|
MD5 | 63b08f2c9dc7a341d3e4679f8e8ec94a |
|
BLAKE2b-256 | 19ad509a12a350c6f3c666cc2e2e70b947987b3a81076c671c73f02f0dcb9503 |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3bf45ca1d05a0520da0823f5d64c92acca2033e50f9270b4bc02e529f972ab5 |
|
MD5 | 65f98fcdaefb0b877a4d80effa09a6e6 |
|
BLAKE2b-256 | 37dad24d260310499c613129ec447f6b970f7c51af1ddfa7017f5e9ec4ac2fed |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97d72e378d92d2c2e08db25edf766bf0c05ca84a978e5f05120edd86c62419a5 |
|
MD5 | d21aeee974d3f20d66f9d19ef64ffac3 |
|
BLAKE2b-256 | b1c623f10621a9c3f0c92cddc6a9a462442e57d03d89d4c4dd520ed9b8604287 |
Provenance
File details
Details for the file utiles-0.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 50c65330db6ab964129215f1405f41fc731039fd34613b27c8953d0bdc21d35b |
|
MD5 | d8b92ddc1ade8ce88f4fa2dba5ab15cd |
|
BLAKE2b-256 | 9b1fd360179a7044e60a544885cd7b20e0d6eceeab5d5506ea5c5546a0378a42 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 271.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b992891e4066034e746efb33c3aa5f13139ab24597345147dd9d56629f7ad744 |
|
MD5 | 53ed49332e2ad0c7b84f118d66e5a89c |
|
BLAKE2b-256 | 35812479a63ab67168866ee72736a658c56b9ecc4e1b790584e8bf65de970e25 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-none-win32.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-none-win32.whl
- Upload date:
- Size: 261.0 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21c0544f9b5a30ad977e98879c3e379a917d677e6f384c290c70b62392ab3b0e |
|
MD5 | b28536f880716a4c77f16d41b70154c3 |
|
BLAKE2b-256 | 29ebc2f46013dbd9931e5ced9dc569ca850152023cfcce0ffa5004fa05cb2d9d |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 357.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27f0a4057d01843bd79f5f326b759beb582a72f91c6b87ebcea6dbafa5582896 |
|
MD5 | d3c310d24277fbef360dd753598a91d4 |
|
BLAKE2b-256 | 45fd63ebd77a9559de3217c2a668eeea816330883b1523955cfc2a5e24e33ca5 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c0a7464049b755f4fbf24da020c8fcdf1de4625cbe04e55bf999e262ecf6f50 |
|
MD5 | 17b4585157298854aeb46495197198b6 |
|
BLAKE2b-256 | 48b95aec2b53a2a335245de69d75514bdf1e74894f79562802b61b32f1ab431e |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 445.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f18d11eac74faa8ed1a05b3d97fd285554481ab21a3a0637351436da0f95536 |
|
MD5 | 031da99630512b0f989331f01e45096f |
|
BLAKE2b-256 | 213c5e7cd6c7032a51abfe61ae4fa047b71b6f03b8328c7997678a4c61329c92 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f1b100253e82633c8c6dce77b3132fb31a1f371fc1e5c93be83b634714c8e6c |
|
MD5 | de9f15c981fbacfd549e4a62939b9c97 |
|
BLAKE2b-256 | b91765e5168ca40a63090fdc0ad82c32851fbaf2b4cfbb4bd62f8c4d833d0630 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.5 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d2c922fb281147948f46f262fe56137a42fde1bf6a0517bf8d8db93f9432a6c |
|
MD5 | 22e5f92045bed81eea4347b33cdf9580 |
|
BLAKE2b-256 | b6e653d96c530f1006084862ac5f609d34d90b4e823d84dfc691ec44d27b1881 |
Provenance
File details
Details for the file utiles-0.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b37767245c0f77cdc75e3a3746f5c950129c0dcf872c2f4fa028649a73360c03 |
|
MD5 | e4a617ba5cebffe9f20f5f50d5e64d7b |
|
BLAKE2b-256 | ac033aa0d75162dc913c1b5fc9419ac2e406ddf3fd2c4ed9bef4c8694baf8ade |
Provenance
File details
Details for the file utiles-0.0.2-cp37-none-win_amd64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-none-win_amd64.whl
- Upload date:
- Size: 271.7 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e027020919906569955c0130d19f5a6a426ecf38ad2633f2d1b73474431e1af |
|
MD5 | aee394905abe2c240a78c88661396983 |
|
BLAKE2b-256 | c52789646f810a74b67a207b79c87b93efc311b6c0322b5587536c7278c22dde |
Provenance
File details
Details for the file utiles-0.0.2-cp37-none-win32.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-none-win32.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 306d6ea7c8a33a57410fc806b34798d715026f42f269fa592c1239e6abe43fdf |
|
MD5 | 449a6b0d079f3e04c0a8eb4eb35dea1d |
|
BLAKE2b-256 | 867d47d1c718e84906bc3c99fa6f9ac04e86d875c8159efad9eefd2085917cdd |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 358.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7578bbdbba3740593c5c6ab15572d1d25747f5a904822c4fc030421f3a6162ff |
|
MD5 | 376a948cb8752ee3138258aa67da5adb |
|
BLAKE2b-256 | 89a7211423d13ccb2a3dc3ec40fd062d7b6c0e916b74d25f3b4830deec179190 |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 455.3 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ced9dbecb46f2c335b9d11480f5f15b956d13ead3d3835dbee8101eddf11f797 |
|
MD5 | 3a79f985a37c99daf71994d30fa4bf1a |
|
BLAKE2b-256 | d90e205ea7c376a5be0d7032b1e3b7a2a7eb8b5785c8a9ae191362f30ba5631c |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 445.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25ede199dfd705ab17186b15a8e24aa8ab12ba733fd95ad760da6d38bd7cb9c3 |
|
MD5 | 923f0e524b4f697f9162344f06fdefef |
|
BLAKE2b-256 | c5bc05a71ea08f48857968fb03fedf49a60264ca8b69160b7c2b535fc3cea3ed |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 330.4 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cf56fd339c1b8302b67b99d4453775ef99d0ba028f306f3be928dba7cdda46a |
|
MD5 | 006a500ccdd1f95c01743d9e2b79114b |
|
BLAKE2b-256 | f8c3399a3dab5f68525b20631b476a5f35b45661036d4b437884009391e4ad73 |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 336.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d73df065b09954752b48e29d914d14cc370d5a3222b0317e82d732b7763c4a1 |
|
MD5 | 4b6f3b08e5bc8446a06d11ca39620e3e |
|
BLAKE2b-256 | d9fd8f024794434f432281a652b3cdcc40b6500395d8977a04d48b20370e625b |
Provenance
File details
Details for the file utiles-0.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: utiles-0.0.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 388.7 kB
- Tags: CPython 3.7m, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd0f700dd345c85f0853a13695abc80f5e15b8443e1ad547eb49aa481316a332 |
|
MD5 | 1908b9ba805c8ce353c89a29a15eefb2 |
|
BLAKE2b-256 | f1658e424cc57b9960f636ba635e2ef8f09ded5d5614e35cad409c42c77205d5 |