Skip to main content

Cython implementation of ksuid

Project description

CyKSUID

A high performance Cython implementation of KSUID (K-Sortable Globally Unique IDs).

Badges

Build Status Coverage License Release

LICENSE

New BSD. See License File.

Install

cyksuid is on the Python Package Index (PyPI):

pip install cyksuid

Dependencies

cyksuid supports Python 3.7+ with a common codebase. It is developed in Cython, but requires no dependency other than CPython and a C compiler.

Sample Usage

v1 API

from cyksuid import ksuid, parse

uid = ksuid.ksuid()

uid.bytes       # b'\x0f\xd4oB\x81I\xe5\x8d\x95\xb5\xeb\xbc"\xa0\xcd\xfe)N\xe0I'
uid.hex         # '0fd46f428149e58d95b5ebbc22a0cdfe294ee049'
uid.datetime    # datetime.datetime(2022, 10, 12, 13, 12, 34)
uid.timestamp   # 1665580354
uid.encoded     # b'2G2IfS6177qFICE3w10eMjgYu89'

parse(uid.encoded)

v2 API

from cyksuid.v2 import ksuid, parse

uid = ksuid()

uid.bytes       # b'\x0f\xd4oB\x81I\xe5\x8d\x95\xb5\xeb\xbc"\xa0\xcd\xfe)N\xe0I'
uid.hex         # '0fd46f428149e58d95b5ebbc22a0cdfe294ee049'
uid.datetime    # datetime.datetime(2022, 10, 12, 13, 12, 34, tzinfo=datetime.timezone.utc)
uid.timestamp   # 1665580354.0
uid.encoded     # b'2G2IfS6177qFICE3w10eMjgYu89'
str(uid)        # '2G2IfS6177qFICE3w10eMjgYu89'

parse(uid.encoded)

Benchmark

platform darwin -- Python 3.11.0, pytest-7.1.3, pluggy-1.0.0
benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)

-------------------------------------------------------------------------------------- benchmark 'test_generate': 2 tests -------------------------------------------------------------------------------------
Name (time in ns)                 Min                    Max                  Mean              StdDev                Median                IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_generate[cyksuid]       292.0278 (1.0)      15,249.9997 (1.0)        438.1552 (1.0)      107.5430 (1.0)        416.9997 (1.0)       0.9895 (1.0)    10589;47969    2,282.2965 (1.0)      137137           1
test_generate[svix]        1,374.9814 (4.71)     27,458.9984 (1.80)     1,504.6515 (3.43)     454.7297 (4.23)     1,458.9750 (3.50)     42.0259 (42.47)     58;1549      664.6057 (0.29)      16316           1
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

--------------------------------------------------------------------------------------- benchmark 'test_parse': 2 tests ----------------------------------------------------------------------------------------
Name (time in ns)               Min                    Max                   Mean              StdDev                 Median                 IQR            Outliers  OPS (Kops/s)            Rounds  Iterations
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_parse[cyksuid]        198.3182 (1.0)       1,666.6809 (1.0)         205.4135 (1.0)       14.4218 (1.0)         204.9981 (1.0)        3.3225 (1.0)     1036;5733    4,868.2302 (1.0)      193537          25
test_parse[svix]        10,750.0236 (54.21)    40,624.9892 (24.37)    11,126.0083 (54.16)    624.4237 (43.30)    11,041.9933 (53.86)    124.9718 (37.61)    580;2705       89.8795 (0.02)      30731           1
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Legend:
  Outliers: 1 Standard Deviation from Mean; 1.5 IQR (InterQuartile Range) from 1st Quartile and 3rd Quartile.
  OPS: Operations Per Second, computed as 1 / Mean
============================================================================================ 4 passed in 3.27s =============================================================================================

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

cyksuid-2.1.0.tar.gz (142.3 kB view details)

Uploaded Source

Built Distributions

cyksuid-2.1.0-cp312-cp312-win_arm64.whl (262.0 kB view details)

Uploaded CPython 3.12 Windows ARM64

cyksuid-2.1.0-cp312-cp312-win_amd64.whl (299.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

cyksuid-2.1.0-cp312-cp312-win32.whl (271.7 kB view details)

Uploaded CPython 3.12 Windows x86

cyksuid-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (750.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp312-cp312-musllinux_1_1_aarch64.whl (735.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (206.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ x86-64 manylinux: glibc 2.28+ x86-64

cyksuid-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (226.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cyksuid-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp312-cp312-macosx_10_15_universal2.whl (261.8 kB view details)

Uploaded CPython 3.12 macOS 10.15+ universal2 (ARM64, x86-64)

cyksuid-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl (201.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

cyksuid-2.1.0-cp311-cp311-win_arm64.whl (261.9 kB view details)

Uploaded CPython 3.11 Windows ARM64

cyksuid-2.1.0-cp311-cp311-win_amd64.whl (299.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

cyksuid-2.1.0-cp311-cp311-win32.whl (271.1 kB view details)

Uploaded CPython 3.11 Windows x86

cyksuid-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (733.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (204.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ x86-64 manylinux: glibc 2.28+ x86-64

cyksuid-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (223.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cyksuid-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (219.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp311-cp311-macosx_10_15_universal2.whl (261.6 kB view details)

Uploaded CPython 3.11 macOS 10.15+ universal2 (ARM64, x86-64)

cyksuid-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl (201.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

cyksuid-2.1.0-cp310-cp310-win_arm64.whl (261.9 kB view details)

Uploaded CPython 3.10 Windows ARM64

cyksuid-2.1.0-cp310-cp310-win_amd64.whl (298.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

cyksuid-2.1.0-cp310-cp310-win32.whl (271.2 kB view details)

Uploaded CPython 3.10 Windows x86

cyksuid-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (754.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (738.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (209.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ x86-64 manylinux: glibc 2.28+ x86-64

cyksuid-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cyksuid-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (225.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp310-cp310-macosx_10_15_universal2.whl (261.0 kB view details)

Uploaded CPython 3.10 macOS 10.15+ universal2 (ARM64, x86-64)

cyksuid-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl (201.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

cyksuid-2.1.0-cp39-cp39-win_arm64.whl (262.5 kB view details)

Uploaded CPython 3.9 Windows ARM64

cyksuid-2.1.0-cp39-cp39-win_amd64.whl (299.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

cyksuid-2.1.0-cp39-cp39-win32.whl (271.8 kB view details)

Uploaded CPython 3.9 Windows x86

cyksuid-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (755.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (738.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (228.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

cyksuid-2.1.0-cp39-cp39-macosx_10_15_universal2.whl (262.1 kB view details)

Uploaded CPython 3.9 macOS 10.15+ universal2 (ARM64, x86-64)

cyksuid-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (201.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

cyksuid-2.1.0-cp38-cp38-win_amd64.whl (299.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

cyksuid-2.1.0-cp38-cp38-win32.whl (271.9 kB view details)

Uploaded CPython 3.8 Windows x86

cyksuid-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (739.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (226.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (229.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

cyksuid-2.1.0-cp38-cp38-macosx_10_15_universal2.whl (261.8 kB view details)

Uploaded CPython 3.8 macOS 10.15+ universal2 (ARM64, x86-64)

cyksuid-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl (201.3 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

cyksuid-2.1.0-cp37-cp37m-win_amd64.whl (300.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

cyksuid-2.1.0-cp37-cp37m-win32.whl (271.8 kB view details)

Uploaded CPython 3.7m Windows x86

cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl (749.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl (735.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

cyksuid-2.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (221.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

cyksuid-2.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (224.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

cyksuid-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (201.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file cyksuid-2.1.0.tar.gz.

File metadata

  • Download URL: cyksuid-2.1.0.tar.gz
  • Upload date:
  • Size: 142.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for cyksuid-2.1.0.tar.gz
Algorithm Hash digest
SHA256 71555c17f3f71a183705bc34ee1e1136b9558bf86766224e183295d70defc3f2
MD5 006962d56a316695c39444d7a7a32605
BLAKE2b-256 62f7519bd0860d358f24e43b36fbd4a9655b006d5f87166218c31467798c81dc

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 262.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0774877b2e61caf5edec1e1162d985018054d22f5ca69d68e6e93947bd73a667
MD5 a5db4bedcb3abe2ed5ef084c119240a3
BLAKE2b-256 46f3235c85c2d183873030de96ef15da266c01abca04b312c54f798683c1ae88

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 299.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b654460ff3fcb6bede98504d4c425811338cfa03561ae673d2d5f1448fdc10b
MD5 24c9c600edacfec4744bce1fb32e7a9e
BLAKE2b-256 67ecf8e4ba9294226efb556266655bbcd63e38a281cd5be526841ea93246e08d

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 271.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4202f296b7fd85bdc6ebbd5354f465ac7c5b12fec0e40e3e237c62f6780706ba
MD5 3f8fbc44972f9578f60aa9babfbb41b0
BLAKE2b-256 7c7e613e8e4d75d28a50b5ee950b79fc641b431fe328e863001e4eb5133173ad

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e589ac2bfd9922af22afca8b940458be941666240fd84f568af67726ab0a351c
MD5 b7a69ed2975446e6a2be37c90652b6e6
BLAKE2b-256 77728618b6a46f9c6ec612ffe29358d95b16aa95bdee63a3052dfb24abdac967

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5103d0fc6b0de5a1313c36b4d12478f4b66a94fa665afd4fc576817ab3cb6fdd
MD5 5099da76efa79fe941533d87d3ff7d53
BLAKE2b-256 dab7add4b7edd152299a14a38dedcd30d889554699ed10dcfbbfbf7ea6fc7b40

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63456fe44dc8e5e0c543b552cbc48a20a199d72bc3ce69accecd2b90a184c775
MD5 adc7b4ebd935efc593d0e4a3ec3b9e1e
BLAKE2b-256 175e71f11b5835d254aae57645f3ccd5df9792b58908750da86d9a4ca0ef09fa

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37c7493cdc49c841714586a47202c6e650e5976206a481166bcb479569c95b85
MD5 22788f5223fd82a4c528209422bcfee4
BLAKE2b-256 fc681b5678848cea23806953279aa968b55674e7e441ff474afa95b860f6755f

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d557492e1972579437ea16eb2f5b0e1507d95dd6f26eb5fc3026292f028bd436
MD5 906dbc16eecef30f740566cd40723d71
BLAKE2b-256 cb5d8fcc5f81708397aaf8bbf14b94dfa530dc2436ca8e1b49760a02c4aaeffe

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ee0aaa5c429270d289d902ce196a37db51fb59ce9f8785597e62c2d4c02b6e9f
MD5 378e266f100ba94a4a2656b82b98a89a
BLAKE2b-256 7ce2d5f6fc386e2c3b6fd5563f087572ffaa1b9d46adbae2337616cad3237d9e

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52058394dd3274a0e65f9dd9e7109854d351bffc9203ec38786eaa3957936b4a
MD5 390d3a12618385fe2667c9b99eac403b
BLAKE2b-256 968ef705fef0c0c60c8968adc33da3e65bc1694f951eb0ba7e6797d0bce208b4

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 261.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 26eda1441ecdb617a6753548ab55c0e4c28fd91cc4c748fccf3aeefd66649f0a
MD5 0c5fb63f7c5a63ffbfacbeb880e3394f
BLAKE2b-256 e2fd89c534f2a3dd2b2dcb324c562de32f65227ea843bc48b850aaac2ed639a8

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 299.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9574ab939bb8967f1e7d925fc2c1e891b6ce5a1c1f3e3dc3d07e99d41d643843
MD5 ea8f2c09bc4a68ac0a021d32c1827b3c
BLAKE2b-256 79b397bc01ac0d2ea6b82ba30372fb6ab93b43583dbe4768f04636fcf23c7be9

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 271.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c74bffdaaf3e5f27af4624569b987b287b8cd2b6bbb7815e4ed1451e188759fb
MD5 f0c18410fee9f07a8f7b8a8a1ba4200c
BLAKE2b-256 a202ab01ec7c87b5e147935e6a163424220fee645ae8985cbb0d04f4592dafdd

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95ac8808468d7b6b8b0eb65b3ec1131cd2579904829caac9d21c85ea07fcaf9d
MD5 91e077bbce07bcba3e85921336893c97
BLAKE2b-256 18ec7f3eec8e5349ba45dcf6d44df21e35da6e41b4f79057607f2bdfc6ccaeb1

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ecb377edb7d7db4a4227794aa2df82c9ffb4e40f4f014dd38454c6dbcc6f9683
MD5 ef1e6bf31839daa6d83f4d2a3a2859dd
BLAKE2b-256 9ef01281bedbb8721e6b0e017499baddc95bbda6857db0a842868bb46215ee97

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b3b715ecf17b6ad5233eb014e2edf2cfb14fd4e0624db1c8903c50fd6980aa6
MD5 d65593a728f0b3477f18153e68238b8b
BLAKE2b-256 7584de606f67e69ea43c4d90308413e2026f39866d2130cdd56d0c7511ed17d1

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a480296f8aadb75fe2cb6e89df8b3d8ee15fb00b0c703f4b950688cd963832b
MD5 622b3900491107df53c3f43f84558940
BLAKE2b-256 864b6d15c43191eb6bce86a7a20b8c3bcbfd69555bbc1f4853d99bbdb6fa2907

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5159f9a796647a1c97c5705186489f4b14e815e64cfce46f2600bff85afdf411
MD5 bc41698e3e1d01f59ddd98fa27751b03
BLAKE2b-256 2be37e67301e579e78d71431454583582da92471f69cdbc53c71947a7484e006

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2d7f6840dbe8a5e9714fb01e604ce043e5a5369baa3048bc9b684625cd9ef7c3
MD5 33c756091d5a845ebeae7782f70de619
BLAKE2b-256 7166a3fa23c425a34f09d1b5c731812b6adef7c1e38a17abed426f82269e7867

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 597fc0beff400d49fce5b98d917a6d9e168e68f0f2383597c57d8c9e6ee030a8
MD5 3aa5e2d70448690963de50e1ba1be73a
BLAKE2b-256 c15bb91039d71c5004a4359e2f41eedb71bcfd78f0857ac0fecfcaf03c3683e4

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 261.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2b00f99283001329ef6555200102ab1b6cc11efec9986c1a89d50cbb1558791c
MD5 9e0d1a36796dc1ecf9d7ba283897c55f
BLAKE2b-256 a7a163a8c248826256620e31ab671f6846e5a8011125eee6e9be7b22404f8dec

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 298.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2986a5fc18b63bb017f8d65a5295d6b17724feaa75e971666433536810075f09
MD5 3711c6384b8c55f7a2171b9757dd1789
BLAKE2b-256 cf479a7475cfffd9d3080f38fe25f8b526e196f806068f83de2a59e764bb8bd7

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 271.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 786031bebda232be42ba35e61e40d9abf86b3129a8b37a374d05bfebb43eb6db
MD5 13719ac0464ac845e9c631ec9a78cfb5
BLAKE2b-256 f92d5daf9f652995b87ccfd3c01b665bb5c948c3884c12922b977184a3e8b9bd

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fea4b1fe36e2e6d1ea46953bb660dcb8baec53a914e4661242d220e355a58e57
MD5 6528725bb047ab8b5b171e69e30ce45f
BLAKE2b-256 892d7e141a5305e7467a89cf21194e78d7a75125ff115152f88f0c8fd932f152

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 854c931c4536a482932e00fb0f4ec1b7278aab4d79097f95aac6c5fd7fb81931
MD5 23a2442dfcbee74f9ab063fefe525bdc
BLAKE2b-256 6112de46087b091096c215a09029c402eb4b9597564f26c8d6ad547aa48ac033

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ec8262b83c2f8f4d9e5e31b513be3bb15ef8d6bea9fcb3ed1b01fd2513d2a98
MD5 82ccaa4a77ed3f7192133e28d2d3ca32
BLAKE2b-256 a68d4bf3ec79177dc0c8bd06a85242eb79e5b3c00475f050ed3ddc0cde2eb5c8

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 495b68c460e7b1a15317d231002cc45caea66992fd54f8f682e264945e077cbf
MD5 b0ff186d4f62a74fb42bfc481f4009b6
BLAKE2b-256 ae6f622dee40ab04ffb9a766ff839b385cd993675a1e084f9a770fc83c2bb782

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f8b3bef07615ecc25d807ff7f0b8ea8d08f810cff4d5fb4bf81bae82d7f17c8
MD5 aa984e2897e00a8735babc4593b3f22a
BLAKE2b-256 5a02ffd9005efab6a9a72f85b807736a89616a056cb1ef2ce4c128f3031dd683

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e974ec841c202ee9a9d9ebcdff720d84c33907c39205e1595f7e4808497815cf
MD5 5d198ee19e11bedf3ddd69678dad9784
BLAKE2b-256 c919efd8bde60f1bde8e88c05db109234ab8bf2cdcd1acf46a23a4cd10922a4e

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e0097461e2f28175045b6ef71ab59b2183c175349f0dccc5c856f7e93384bad
MD5 6c003131fe7f44cb480af07c786e0f1d
BLAKE2b-256 ddb7ac9a28eacbefd561e4b70d451e62c0f6f055824fa110f8ed5b2d3863fa38

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 262.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3dff7db4a3681a4f6c96d3ec6dffdbc82edfeb54e2325eac7252d1b39a1af53c
MD5 8d1f11ec3acd35ac929683f3a2a50fa8
BLAKE2b-256 0ecc98e5bd8f956681dbf396fec45a108e1dd184400062a269fd1acbfd4407ed

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 299.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c339f3e7f7d414924531aefff28965ed0ff0a6717de736b65a0e7c4faa4b8e4e
MD5 c5bcbc562f720e0cb750640213324b3b
BLAKE2b-256 58aaaaedf8fcb5d177c6b101d9526a726b8ebaa6ee2d937071cb3533821cb839

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 271.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7ec02f2e6450076012b062b8f87359aaaa11ed33588a084d1e4b247f35dbd42f
MD5 3150e77ec1eede3f8fb5a4a492ac3e62
BLAKE2b-256 2be5e848a179aa5246d3ae270ae5c84f1688f5d384889dfeaa66213d2633e64c

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa3c1a3d56e12642bf3568a671e07675675e66258111bfe7e6ea6f757dc949eb
MD5 f3e30c65ac73edd88096aafe324d7020
BLAKE2b-256 5e2a64792e7cc33d51cd2d014955505db64f707f4c6604ab5b6f70b6dea712e8

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aac1138662fd0fa01355992ace38def328f5d5143edea1648ab2fc1a41e66de3
MD5 3d4fe74c040cea4961b567541a01ed18
BLAKE2b-256 66246bdfa1694d5e443d90fcef379d99098395895868809a34722f92d2681602

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 793c250f544d943006bf58d2a8c6153b029fa2d3867fa25ca8f2352163dd1180
MD5 dd960a2e0a9255a884234affec280511
BLAKE2b-256 f609f844036aa221f6f9df7f5b28c3f27de80a0e60eab9314382f3e4d7c71623

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1f6ad63cfc3cf6af54087c9d7f15d708620e88c2e9b71480e98b51cbe8e22725
MD5 01c01caa2ac80c870b1574ae90f3d19f
BLAKE2b-256 63019a71651f54e5a872792763a41eeb61b41a8fb675a52b125683894e2e309c

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8e66c1856dee574900e35182c6ec0f9331f77c2f313ce14ad9ffaeaf392ed6e1
MD5 aae0881df9e160a2af92d777794ede31
BLAKE2b-256 19b76b0c6931eb101daeb22fc6cbcd6956813c7b206fae2d2e7a704246dbed85

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6625af7430b6f995f098f8ebcddfe4be3c246752be159d20d4e216369ae2381
MD5 9f930d39993a68ed419ea9a595bcda59
BLAKE2b-256 f7844937f21ee999d5eaf81bbae34619256433172f06e03bf19993d8cd277ace

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 299.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b36e2bc1b33a8358f788a71e7a765ab5330a0c2984f4b1456682d34e2b6c5c7
MD5 653bf254d80c1fee3760136d0f44bf6c
BLAKE2b-256 d0b185a3ce1467bf9186e9cb10d850409b079e8f527b2948f7dd8780ae2472a1

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 271.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2fbc4eac892fb822ae1b23639f6f0e87c7b785542d354b50dca965a3fbe397d4
MD5 2dffc6a5a15527c247b8dbb052277042
BLAKE2b-256 3d4a9f21e7e039e15c94f303adec35f5088e38aee155cc3316158141c576e139

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f16d8d71ab269765330ad49309618aa9f84a4b7b3244b9f7537c62b280753976
MD5 5d60eeba1374bd13fafd999dcf623c41
BLAKE2b-256 efeed81e47f3f366d3705528a78eaa5a334075ec7c7f68d431c50f029b8d00f8

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ad92c9f28903e6f97774f415dfa1755e0ba8bbc0f021ed84386b5d9ef5f5034
MD5 cd862b1536bdbaf8f7f11d120debcf55
BLAKE2b-256 ba1bce2005c059e5e6749464d6a68e3cbaf7818685b4a77961f1a67fa909d168

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bfd94914609931e7013da359e65c639eff69bdcd5c20d1c0541443502801810
MD5 10b4aa7d4b8351c47bdb16dc322ebfae
BLAKE2b-256 ded7acdd860c5c6cc98a1055470bacae2c2330416c66a25f4dc435500673060c

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fb81cab103c3c3972892df92f2ca13739d51296f566f04c8d88a7dc304d32f9d
MD5 73331d2d71cd280749800496788fd9d4
BLAKE2b-256 a061b2346e4b71b7cdb635459e9731a5d80276693a0363466efbfbcb0df2df9f

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2fb4addbfe5b5e3a4d8b8eb9bc685961a310f4c29d1b7e464e1d22fe363ceb1a
MD5 0654e97b1e839b0f8688eeff0d3c49f1
BLAKE2b-256 7e608ce27f781a0b8e38a9d41d2c03d781440bb8bbe33063378a054bc911639e

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ad28b06eee7ae4cf63a2b0e3c92ea4d4e1c736d8a2e2564e8e082e5f22c3fef5
MD5 4780d0d3a44f8d57ba4d810ec87ab398
BLAKE2b-256 28c734db5a06269c8666669e62537ac436ec172bc62fe721532c5d3e3da36044

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 300.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2f992343306d8de029ffb45bd8b7796b19a62cea9219576054d9096d643e7806
MD5 b59224a753323906e772706a9adf894e
BLAKE2b-256 f51f6fe346efd2d019d3467e53abbf92bfbd24ea7c0b5da03e7164686394bf22

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: cyksuid-2.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 271.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 00ff9359b056984546e55636d64e2d7e6c01ad6565ab522f0e144de337647205
MD5 a609e3570ac558b9891fd270e56c50c9
BLAKE2b-256 13decdf91b0514c79f65c790c52dbf2cc4ad4d69b9884d3eaa768258022a3185

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b1ae1478a6ef635930295a2d847a32e2d449e3f1f1eb0b3fad0e965ad14d4b5
MD5 c5e6c32c44b83129614f3aaca9b56344
BLAKE2b-256 663fde3ec071358c87c39a41aee8ef00ecef6e5d15fcd7fc099698594bcfad49

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 50c765b0207eab00e1c81872146874b12558bf6b8a524f80e4083274a75a9682
MD5 89d685866c3cfddfc32f500392bc8259
BLAKE2b-256 368213968146335f90371f3b9684843013e2d24b411b7368f370dfcc910b242d

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8dd3d174d0b4aec725c398a32d29d827c74785d21465a07e69863f82825fb06
MD5 30f32859d2dad7f1810b50887b295fcb
BLAKE2b-256 24bf053f3e858741c4152ecd679ec4049869992e67de8b829fccf9349806f6b4

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ec37b69d9acf60c28665fad491601184d875bdd289b74d9cd4df313caa5509c
MD5 7b920b7d3b0e880d622c77a2f23f8856
BLAKE2b-256 d6504a4526eecffbf2107f2de909868b6ae8c67c97717ebaca3dcd6688089b23

See more details on using hashes here.

File details

Details for the file cyksuid-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyksuid-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6977d43568515d0de92a0281293bbf2fe53ab28965bf601fd7371847abacfe64
MD5 e7d2bf5d08cd09c6cde95f260e88eaf4
BLAKE2b-256 a690fbbdc4377fdbb5f3db59737c710cc32ec4554d9aa9982fb98920a01ac4e7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page