Find unique float arrays.
Project description
funi
Find UNIque float array rows.
numpy.unique is an awesome function that alleviates headaches, fast.
Haven't you wished that it'd be applicable for 2D float arrays?
funi
is here to help!
There are two available methods: axis
and lexicographic
.
axis
will first project each array to an axis to sort, where as
lexicographic
sorts given array in lexicographical manner.
Install
pip install funi
Quick Start
import funi
import numpy as np
# create a random array with duplicating entries
arr = np.random.random((10000, 3))
arr = np.vstack((arr, arr, arr))
np.random.shuffle(arr)
# specify tolerance and if you want your unique ids to be stable sorted.
unique_data, unique_ids, inverse = funi.unique_rows(
arr,
tolerance=1e-11,
sorted_index=True,
method="axis",
)
# use ids to extract unique_data from the original array
assert np.allclose(unique_data, arr[unique_ids])
# use inverse to map unique_data back to the original array
assert np.allclose(arr, unique_data[inverse])
# sorted_index=True gives you sorted unique_ids and corresponding inverse
assert np.alltrue(np.sort(unique_ids) == unique_ids)
Project details
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 funi-0.1.0.tar.gz
.
File metadata
- Download URL: funi-0.1.0.tar.gz
- Upload date:
- Size: 11.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 579bb70ce5a5e15edc46a9bcf5b98e5e359ba6ef5ca6e6821c4c182466abb4c5 |
|
MD5 | 5bc2befba8f2677b2bbbee00adf4cd14 |
|
BLAKE2b-256 | 28813b53ed2230d0af5a1eb4d7698bf3f16b36ae91e90bb1f880e6d85ff5fcb0 |
File details
Details for the file funi-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58739bc0780eda8e9c1848f03e24e8bff3acc48ab2cc69cf996406368ba326e3 |
|
MD5 | 8f425deb9cec7aa3d88f9f3751769e17 |
|
BLAKE2b-256 | 4cfb96036b145a8c7573124c919afa022a030fb2e23f44c107c99cf65ad43613 |
File details
Details for the file funi-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3daf14af770c60a1fc5fa22784e576a664fe59fc1c8a5e43a77bd8d9a735e4dd |
|
MD5 | 0d1b21f70a6261a8f598b9ee337831e5 |
|
BLAKE2b-256 | d57ea3aed624e22948fc98c0218e3eb2221f9d39612f52825d41d42576c2a804 |
File details
Details for the file funi-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 99.4 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3509a8dd416e5e31c8ffbfc11e2df5bbeb3551844d2fbc30f99c3829e9c80972 |
|
MD5 | 5e7aacb58ff8d2614968d0f9719e314e |
|
BLAKE2b-256 | 0ea8f8d58358deb8fdc527eb8331897c948854b11d0a9b6c400bcd7fe0dabf5b |
File details
Details for the file funi-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fa7b0449c74223923be7828312f870db3b1c614368740788f8b06b49647a548 |
|
MD5 | 6a9a72cc539e5c0d8099839620cb69d4 |
|
BLAKE2b-256 | 39143de8d1344c0a44e147bddca50f9d58e8307b8de07953a94fb47f67712dac |
File details
Details for the file funi-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 111.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 16dfbc8f29cdff59122977bcc7b6d05986dc72c2412f13e690c188fb23168c16 |
|
MD5 | 6e2f970331a54b51e1733d7cbf1393a9 |
|
BLAKE2b-256 | 15e03a08570118777bcbc7986219c94c90d8622f315abf41d27affe68f25f0f0 |
File details
Details for the file funi-0.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ada11614abcc0114882fc42442726fd87b706e3df69b0df42ce60f4426d932c |
|
MD5 | 8b1ddea5b7c7e3702324ad38e0022b83 |
|
BLAKE2b-256 | 480289a0b15fed7105b055502e651b89b2621b3dad7d6ad9f1b6c7fca9b6f067 |
File details
Details for the file funi-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 99.4 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbb23a0f46b089bb201b0407f8b5c27dbff7b89cdb24665e8a05309832078100 |
|
MD5 | 7ef593f77ed439f8ac752d835b88cc85 |
|
BLAKE2b-256 | dd590f45a2927f1e264f02c137cc98daa7ae9eceab36dfa1b4f17bc38fe9518a |
File details
Details for the file funi-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd481a5b1f211b2f178f84ca1f380b5f64977a679d8f7350ff621d2056b5f604 |
|
MD5 | baea0ad83f0425bd6f4a4179537d2d97 |
|
BLAKE2b-256 | 26a8ab089ea18b6ee23395954ac5cc510774612ba5f73d7236dc85479ab376c8 |
File details
Details for the file funi-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 111.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a144dde086b1c8423d1fcd94e88d901423ba2a74ced1b38a1580b658f2e9d750 |
|
MD5 | b3f41f0c5dbc69d24ae86723a57ad605 |
|
BLAKE2b-256 | e013de5af82eac63f6f400e5523b63fdedfe329dbbd578b800bf40c8cb730a22 |
File details
Details for the file funi-0.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.7 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fcb449259af0cfc15b4b5afed0298f58dea970e6944944a20ac13ac5cb4712e |
|
MD5 | 82a169d985b1db9270236b0b324fe8cb |
|
BLAKE2b-256 | 5e015fb61b8a1381fea2d6301a56351b61d5758d6f7c86a1003ed30807e69c3d |
File details
Details for the file funi-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 99.2 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68b021fcdc1eedeb77455e7aac49d097d8b45acca77cfe90f62e143a89377459 |
|
MD5 | 80744f7a5d875f80cd0e8ddcba3633cb |
|
BLAKE2b-256 | 6057d9d48a37c603d687ca61f059283ddfa4ab010d571ac56e6bd7f688013262 |
File details
Details for the file funi-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 119.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c21f571cbf1074b6f3f4e61c031634426529383f58e888fbd40181f0e22a130 |
|
MD5 | 7215317b9a81915642375dddde7c5aa3 |
|
BLAKE2b-256 | 917655001cc47a038f59f292505a71295a7312f5303e92e3dc457e84b07f6c2b |
File details
Details for the file funi-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 111.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8545f60b0319058aebcf8666585f9fde71fbb183747153de61bce0fb7f023559 |
|
MD5 | a26c6d792b4827f9a3b3d4e9dd0c2764 |
|
BLAKE2b-256 | d3a651a8cbfe87c5fc5a2daf81fa1554368500e0f353ac693f4a8dd7875bc66d |
File details
Details for the file funi-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 98.7 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d2738e0e9593aaa0a11096d69eeccd0040385f4d01ee537fc4b4ac1a5d13bdb |
|
MD5 | abab56832cedd219239d19e3eec7ee41 |
|
BLAKE2b-256 | 9c0cf5ac7ec0743bb898715e15da61f3c2e0eb06d088b4304750ba1359b3b16a |
File details
Details for the file funi-0.1.0-cp312-cp312-win_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 81.5 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86e2ec92ceb96c32ed28abd2d1a54daf4458a6a6ece46f525d258bf12019af78 |
|
MD5 | ad15d63f23640d846efe640a9f1d242b |
|
BLAKE2b-256 | 2f6c6d75960e7f92a49987ec0c9aa2c77f779750bc648a83795bc8e8656f1fa0 |
File details
Details for the file funi-0.1.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 90.1 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb7f02b4c970cfe43870cd15cd35456b238334ad92ae205c7f1ddc372b4f5474 |
|
MD5 | 5b05fb3b60035601f94336de217c41e4 |
|
BLAKE2b-256 | 475ff08e71a4e24b7daac8e7c34e360d1733feb372f5fe17ab79b1e833eb8c12 |
File details
Details for the file funi-0.1.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c867b4e07b02593f5a8838c80c9bdf9eaa6c7a5c125ff01eb7d43d34370d4924 |
|
MD5 | e95d365020cff83c8a27ff9106b9aa91 |
|
BLAKE2b-256 | 5bb2b0bbc23e40abd49dcc1b194f69e3181e5ac8ba10d3f2700364bedab3ec4c |
File details
Details for the file funi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2051ed706a9ab39a45afc32961b9096e7a070782d18e3a7bce1bf8e5c4463a9 |
|
MD5 | b29b85ae711d840c38e27940fe514cbf |
|
BLAKE2b-256 | c294c29fc38ddec3bd2788c140db4032ff9ff81fad96b31452f5d6dcb5461d6a |
File details
Details for the file funi-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 121.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 723e956b9af8f36471bf26388febaa13afc10c7094d0031f0d0150e7d838c9f2 |
|
MD5 | 0562193733e0f4cc0d87faf604b27c34 |
|
BLAKE2b-256 | dbdd41273c9ac72a9b3ba8299a6e9e7a44203dc6fb097e0bb76221f0c37d4320 |
File details
Details for the file funi-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 134.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 460e94bd6f96d45b7c50623e86c46c09bf5983a4483d6bad928338b9f0b2d849 |
|
MD5 | 60cc9b9581a0983a9f185d24d3821f09 |
|
BLAKE2b-256 | 4fc5f542e51b276f6a43bedec2e26c0529f0016fde6333ac2cec63842704ff81 |
File details
Details for the file funi-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 112.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e81ae8e60c74b636e11453cb83554f572da35c79656c92713811995b794736f |
|
MD5 | f25d018728476b46aa440d20e552b7a6 |
|
BLAKE2b-256 | 18e7ef01d8f8257ee941d0135950e4434aa231c864efa11499591c527c91719b |
File details
Details for the file funi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.1 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b3ad8d8b7968b412a0e7f28636e333795cda85b3cfd77a573defeb916ea55ef |
|
MD5 | 2b857acb693b1bb2e43a4813b0027742 |
|
BLAKE2b-256 | 521fc4bfd078fa074b7e44fb57552807f73595f8dfc7e0a99007aa1bca2e3d97 |
File details
Details for the file funi-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 99.0 kB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55ab1635f5d203490575eaeba32320f6d8c19b32a65cf37409913e573dec7f56 |
|
MD5 | 8c91d53fc6f11a3463a25841bb12795d |
|
BLAKE2b-256 | afe7806d8bf882c1ac5a5528705fa646e450d1c3bd555c173033e6b9ca048730 |
File details
Details for the file funi-0.1.0-cp311-cp311-win_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 81.6 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20f3b99de56cf598ff1e8e24c0251745e36c9c2452a446d3f15012dbb1560645 |
|
MD5 | 42f1b1029a1a1207c43b65159b7e2d8f |
|
BLAKE2b-256 | 95647f43c3ee7bca15ce97eb3471c495e982ef9107472c78158955f2f1901a00 |
File details
Details for the file funi-0.1.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 89.8 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 72b13caa0bcd1ec575418fcc743a4231e866ed4d3d107b88dff7a804c219e201 |
|
MD5 | 3bbdb8e2cb6568d78cf95a77dcb73411 |
|
BLAKE2b-256 | b8d75195394cc15a05d158b5dadb85642a0d6de625b642edce4c5411cba79391 |
File details
Details for the file funi-0.1.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 577c877ca1bb2fad5894e61e5a5f1fc1a5600efa2d55e32a463bf92d4bd613c6 |
|
MD5 | b544188313870940a310b634c72f7e77 |
|
BLAKE2b-256 | 2feee4fa5d4c6b062013b189625b948982b16807eb6d544369bb78c5f9a59649 |
File details
Details for the file funi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 73d803b42b2d612f6fc6a88dc91eb0ea540ce8ecc54c06d57fa089ecd839fb5a |
|
MD5 | b7396a126055bbf2e68553ddd8708f6b |
|
BLAKE2b-256 | 193e7143306324e6aa6421975c71e29782cc3aab32b67351fd6905fcaa19fedd |
File details
Details for the file funi-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 121.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5b36ca8ab31a6bc59d2c421a267ff9f3f4b68623a7c7501a85b711c187a2c26 |
|
MD5 | 261cfacec07c786181594911c33d3465 |
|
BLAKE2b-256 | 50e623190dfeeffed7aa6fc9473f3bb8f608191cceb7e347a0b0bb44f71f31c9 |
File details
Details for the file funi-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 133.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee8418d37924cc70e06322b1630fbce6b5f2fc2681ec1b47070f9647739a275f |
|
MD5 | cd34a2204cf20f5fd119d9b0d90f1bc6 |
|
BLAKE2b-256 | 15d002670280f01c609d9407a24b6ab20bc4af93ff27d8579cba5b5f52ce20f0 |
File details
Details for the file funi-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 113.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c719b0347db35296963d59aeb314a0651e8319e632655d6b531770ca36d89293 |
|
MD5 | 8d7198384e6718cd0956f78536a95cd5 |
|
BLAKE2b-256 | df7747b484232ff6ef0514732b6f488dac413f2fc49d392d8a39f3af652d71c0 |
File details
Details for the file funi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 85.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 936a6150a045dee59fc2b63c38a7ce081cf8a616d1b35e53f7687455447d6f82 |
|
MD5 | 5fdc9c09b3076fb53e2fb80b885dcb21 |
|
BLAKE2b-256 | cb24340634606eef2254907132ff22a3daf8d497d8df3f93135ffca3f00899b9 |
File details
Details for the file funi-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 100.5 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7339d201a6869674cf8968f7c9e4d679c0b30b89a57ba5f65844c7f3b2ad1ffa |
|
MD5 | b2be5258e215187a42fd3347928e85ea |
|
BLAKE2b-256 | b99f310777d52bb510b52ec2fbe0ffbf80ba80cf5f236c570e70641e220863a9 |
File details
Details for the file funi-0.1.0-cp310-cp310-win_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 80.6 kB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7802fc5026d945de277e81ee47f19f471f90e906e7b21cc0acbfc71af25bc744 |
|
MD5 | 1e040ca7ff790c4e79c14b24175aa3d4 |
|
BLAKE2b-256 | e9ed97aa7a6a753eace7791ba622c84a40de81bda7bbf57fc4c11ffe72db4ce6 |
File details
Details for the file funi-0.1.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 88.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1612e425eb49c7f2fcfaf29328c38a8e1df681208205b2b451af060e6d17bf0c |
|
MD5 | 86419da1052da587d3d16e598a5dcf67 |
|
BLAKE2b-256 | c8b7d206848a74200b4147b2b78a1868112d55381547de0e8fb69e9d17628c52 |
File details
Details for the file funi-0.1.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 78.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b68b57ae11e36051332aa9298d64e2c7cf2813161dc17a4f731ab78e290fc532 |
|
MD5 | 2aa81ebda12da2a883a3ebb1cfa0bd70 |
|
BLAKE2b-256 | 16ba6fc6916785d84b29d860857dbb7d320cee4af550f5ec758b157f60576089 |
File details
Details for the file funi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c72aa67d33cff05ef24ec1b101a41fc7c1d34aba6912c36d8f2d9cec289ffe6 |
|
MD5 | bebe5a75ac6cd811ca6feebdb13ca2bd |
|
BLAKE2b-256 | 586a6d7030e110d799ef1ddb6cf8a47299347cebf2201c30180ae48fe616ec52 |
File details
Details for the file funi-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4695b3f3f3185cc7f97cd085faf8d1a701c6ad6007530a273bc414477ce90ec0 |
|
MD5 | 9b9f2349e2a98b7b804788ddd2c7bed9 |
|
BLAKE2b-256 | 6bbb9c10c729bba37e43ba05d67bd741fb449b20041fb7850db1f3819911b033 |
File details
Details for the file funi-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 132.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b52636397cbfbc79ee9cafc3d1cbad9141291cc7f84ab37c835369aa52ee59d |
|
MD5 | 5e125a9f74f816b5aae3436c3755fd43 |
|
BLAKE2b-256 | a43b17cc3c24ad4500b17c0590777d4d5651ac6fb0e9ad88555c5bf1eced66c2 |
File details
Details for the file funi-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 112.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17cd8fcc99c8628f7c0e54829f9ac82c4287072cca9787bcf0f9fca9f1b74962 |
|
MD5 | 82c59b6d747698fad2e5a5718739897a |
|
BLAKE2b-256 | c86ad58a2331e52da87cf0325dddd6c295ec842ce038eda68654f2fdb9f25409 |
File details
Details for the file funi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37996868fbdf1df8add31188dbcce7cfe5246c68c72df7212e34d8b0ed38630a |
|
MD5 | e0d035ba7873a2dda1b78890c15411b4 |
|
BLAKE2b-256 | 5ef299bb8777262c22983d57508935248f96d563ad946ec93798fa69bfc85d24 |
File details
Details for the file funi-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 99.1 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63bf4c161e7544de7bb0bb2cb192d642886f252182515a4e3285a01b2f70fc08 |
|
MD5 | e24d161324e708e15286d03833e139bd |
|
BLAKE2b-256 | b49038ea0a4154029d0b25abee122ebdbe227c972de03c04d984ba3c8d10e060 |
File details
Details for the file funi-0.1.0-cp39-cp39-win_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-win_arm64.whl
- Upload date:
- Size: 80.7 kB
- Tags: CPython 3.9, Windows ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b318b0cad558ec8a3ace9575afdd7a3f4584f6513443c8e706268bd13886b23c |
|
MD5 | e1656f7d88b4c248d90cba2bc3600c04 |
|
BLAKE2b-256 | 0c33f6324f74e106581da69e9f6e3d82b45dc06b11ff54abc19fb78e9bbd338c |
File details
Details for the file funi-0.1.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 88.7 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec53478b241a2ef67738a773cea1e2e88a4a29f4c1f2f8fdb8af9e99f66c8457 |
|
MD5 | 87dd0f28b8f5d18a497cf9a1228134e3 |
|
BLAKE2b-256 | 5004ddc717efd9ed5c54d636c9d047e292be80511516f6fe4f5170e784ce653f |
File details
Details for the file funi-0.1.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 78.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a136a4b812beb6410bb9827a87442e1173e9b08d9d1c2ec681db63c57906fd26 |
|
MD5 | def61e686e72e3c6cdfafbc8869f2d1d |
|
BLAKE2b-256 | d6732ff7e1bf26e1f430c5c9a3751cf5c07da12ee06c74863944d1bcc7290c9b |
File details
Details for the file funi-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eecc5115ebe44aaef6cd507871a6e9f24103325f4095bcc3a83d30744b46cde5 |
|
MD5 | 8f0b493d023f2f9a2f891c94fd7bd8aa |
|
BLAKE2b-256 | 3f7ffd892ba729d80dcc44775e85f97524ab4d536e760bb9718b5d5790c881a8 |
File details
Details for the file funi-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c98eb85d3f2683ebb7b1d3d316b237166fb67d28066caa90964b1ecade3562bc |
|
MD5 | 86b2971f433c7caa510f0a326b1ee6b5 |
|
BLAKE2b-256 | 3f6e7dcb7a4d2fb013551be6ee1ca9e2bfc170b285ee6a0ce0c7b077cc9343cb |
File details
Details for the file funi-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 132.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d67ee8af8050f6d0f495b71bb1b828fd901d1405765fa6d76de96f51ce96777 |
|
MD5 | f00e425144c0ad46a761c85bcc25f686 |
|
BLAKE2b-256 | 7c7ff992f453a6fb08f2a206e47794645e41d62e5013e381f04bc25c1509f758 |
File details
Details for the file funi-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 111.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e045205c4c51cd49512517e89bda70cfb30bf26bd56ed21f7905fccdb2f65d0 |
|
MD5 | cba70211b4114c8125374ac5c0e4fc49 |
|
BLAKE2b-256 | 15d8d13c043bdfca99c3693e9c2241501637fd40d20f5b06c4cc10e2f4dd57c4 |
File details
Details for the file funi-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b67ad6d893b0b108c8914e051e74f5292c1235d56f2898aef6126b0ada66b6e |
|
MD5 | b28e6e552b68de07dd5cfa5baa279cf4 |
|
BLAKE2b-256 | 25180c68ed58c3d36ea5b4c05e38ce133ad109a72e76a0504c7fe707358bd6f6 |
File details
Details for the file funi-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 99.2 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba87189eb21840e721b80df63835fa3f0d18264c3265e400018c091f1aa987a4 |
|
MD5 | fdf45d9014a7fb9a1a2958b00735385b |
|
BLAKE2b-256 | 84f73c9c0c24391133b096a5cc29c7a2857b3c310727b55896296deb4ffbb823 |
File details
Details for the file funi-0.1.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 88.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6e268eb3d06be46cd00f3a00ab326a11aeebc497914dd5a9e60a7844b994109 |
|
MD5 | 9b0adb52d6621184cc981568bbfb0105 |
|
BLAKE2b-256 | 44809f1bd505a07dadbadc4bd5f3acbcbbadd0392f4e5adc01a5044a8956af9e |
File details
Details for the file funi-0.1.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 77.9 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20e8e8de3b1671c26ba0f1b0b7e02fd0d2786b550c10bf9c7648ce545c679018 |
|
MD5 | 2601911eae52b6716a84ac0dd6f32e72 |
|
BLAKE2b-256 | d9ebcfc4741c6862ddbac92262462f46189cd6377aaa979d92c3db9a4c84aa96 |
File details
Details for the file funi-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54ae15fc99d27cbf7875d27e79d2d0078087cb0bf8c6052e8ebfbb3b277c9380 |
|
MD5 | e54067cfdea2c3ae1852a5c7f16b987f |
|
BLAKE2b-256 | 4ed0955e5f85ee575bb5b618de6ed8a371e8b83fa82e3a1c7184e28fc531c868 |
File details
Details for the file funi-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 120.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3658340b2661f424612bdc2da7451133732c0b468384ebc809be09414a25f819 |
|
MD5 | c24e44254a3d4409a4fe307983c82981 |
|
BLAKE2b-256 | 0be0dea3c8944cba7560860fb7d953fe7a976ab1d28e4cccff0b83812e45b084 |
File details
Details for the file funi-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 132.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42f5e57affb7aa1f812d81b169565293b23b21ed2b0b3a424c75809cf1a8c1b3 |
|
MD5 | 17aab9b84f266da358d9b26b503a6587 |
|
BLAKE2b-256 | 14cfc6255c7c98d359291a8ad0a6f7c27f0c9e30d07424456bf83b9b524ebfbc |
File details
Details for the file funi-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 111.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47b675339d6230b6a924beef6f17380debedc557a8cac09716f57ba66be666d4 |
|
MD5 | 2639b7886a1a260778b894a54479dade |
|
BLAKE2b-256 | e58570394b85698dd0a17de871479597db7df6f4730497dd07a989678a070e18 |
File details
Details for the file funi-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 84.3 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80c1e3e90b99bd25a347aba652852a367dde42a69fd1f226658c27a7b254518b |
|
MD5 | a17b1e0470625ef83eca8bf00ea48dae |
|
BLAKE2b-256 | ab5bf4ef186278b5a52ae222d888c6a689c055208409e2dd4b40cc62c2a00684 |
File details
Details for the file funi-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 98.9 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12cc7be72742323d150a83a8b326fb33ee53cd9892287c5970e84f16332c2c65 |
|
MD5 | 5d22a11d4a9f01ba71a1782ad429127d |
|
BLAKE2b-256 | bc44e1b7b7055e46fdc403c425a568463e9b5e7acddeb8f1950646a0697a2194 |
File details
Details for the file funi-0.1.0-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 89.4 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b085552842ea3a2a29b17a0e836922c7868c66dbcb56f12ad3760ed1dca2e1f |
|
MD5 | b254a89e35260f12ec1d713be670be6b |
|
BLAKE2b-256 | bec0d0e2e14f8ea20b153f2f4d6f0e8b243f73bc1f20d675dd4ea80ca578c204 |
File details
Details for the file funi-0.1.0-cp37-cp37m-win32.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 78.9 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2752c35131f9198da7d832cb011452f1c87bbb105cc93855faad516165896452 |
|
MD5 | 159a67ef33f064c9d575d32b244f160c |
|
BLAKE2b-256 | b6fb92c96f0f397fb0684fb8c40934e03b679fce1696cab4c9cabf81246a495a |
File details
Details for the file funi-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec833bd21c11ac2118f4e3cbe4b7a1fd1ae61644fcd15f39a55c338854a0105 |
|
MD5 | 214df06f2f10d2b819a14bf07f0126a1 |
|
BLAKE2b-256 | 1e87ba96ba02486d10850fbf81a5d6da2debe58a28356c6d3b669dd81b16dec9 |
File details
Details for the file funi-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 122.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ed00e1ec044ac623ba45f56971ffe7b486c9879dc65fca9a25482273b9be9a4 |
|
MD5 | dd4697c50f92f1a0752fb255aabd5cc1 |
|
BLAKE2b-256 | 3648b408c2f374d1cfb3a354551db0fda67b44171e9f7a3afd3503556f6d3127 |
File details
Details for the file funi-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 136.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b0c1282337b9705bae476c1c7a27a43a76c32e18d20d85a3e89433ddf701d5b |
|
MD5 | b7a81d7c80b228af5d6aff7e96e576d9 |
|
BLAKE2b-256 | f336eab4d74655eb1088f02ad56c68259729b14791e6852e04c482d3b384edfe |
File details
Details for the file funi-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 114.4 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40d1e72e0573cf95b72c13f3062f483bdcaaa19637f7794b93c6dabbff78d559 |
|
MD5 | f4d6c53ae13721521af33ca13de7058e |
|
BLAKE2b-256 | a377ae1d3a4c042b4858f0b9cb45b4f5c1fb10c741cd5f95cc1628b00fbb5f55 |
File details
Details for the file funi-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: funi-0.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 98.7 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | feaa7b8718c636518c4be24b4d1a3977378dd4b2f17090c60e5932317ffa36f4 |
|
MD5 | 7bdcc1ffdfe65acfe74da07384998a41 |
|
BLAKE2b-256 | 562dc7e22f2d8089abf4cef3d57150aef8401d5a781e5b4affe97036573d7bcb |