Skip to main content

A C library for Python with additional C functions

Project description

this project is in c language but it is made to bring things that are not in python as an extension. some functions may not work correctly but we will make some corrections after we release the stable version if you want to support on github:https://github.com/Goychay23/int example usage conditions

test.py

import Adamlibrary

def test_calloc():
    # Allocate an array of 5 elements, each 4 bytes
    ptr = Adamlibrary.calloc(5, 4)
    print(f"Allocated pointer (calloc): {ptr}")
    print(f"Size of allocated memory: {5 * 4} bytes")
    print(f"Memory initialized to zero: {[0] * 5}")

def test_realloc():
    # First, allocate a 5-element array
    ptr = Adamlibrary.calloc(5, 4)
    print(f"Initial pointer (calloc): {ptr}")
    print(f"Reallocating memory to hold 8 bytes...")
    new_ptr = Adamlibrary.realloc(ptr, 8)  # Reallocate memory to hold 8 bytes
    print(f"Reallocated pointer (realloc): {new_ptr}")
    print(f"New memory size: {8} bytes")

def test_bsearch():
    # A sorted list and the key to search
    base_list = [1, 3, 5, 7, 9]
    key = 5
    print(f"Performing binary search for key: {key} in list: {base_list}")
    result = Adamlibrary.bsearch(key, base_list, len(base_list), 4)
    if result != -1:
        print(f"Key {key} found at index: {result}")
    else:
        print(f"Key {key} not found in the list.")

def test_qsort():
    # List to be sorted
    unsorted_list = [5, 3, 9, 1, 7]
    print(f"Unsorted list before sorting: {unsorted_list}")
    sorted_list = Adamlibrary.qsort(unsorted_list, len(unsorted_list), 4)
    print(f"Sorted list after qsort: {sorted_list}")

def test_memcpy():
    # Memory copy operation
    dest = bytearray(10)
    src = b"Hello"
    print(f"Source data before memcpy: {src}")
    Adamlibrary.memcpy(dest, src, len(src))
    print(f"Destination memory after memcpy: {dest}")
    print(f"Bytes copied: {dest[:len(src)]}")

def test_strtok():
    # String tokenization
    str_input = "Hello,World,Python"
    delimiters = ","
    print(f"Tokenizing string: '{str_input}' using delimiters: '{delimiters}'")
    token = Adamlibrary.strtok(str_input, delimiters)
    while token is not None:
        print(f"Extracted token: '{token}'")
        token = Adamlibrary.strtok(None, delimiters)

def test_asctime():
    from time import time
    rawtime = time()
    print(f"Current raw time (epoch timestamp): {rawtime}")
    result = Adamlibrary.localtime(int(rawtime))
    print(f"Local time struct: {result}")

def main():
    print("Testing memory allocation functions:")
    test_calloc()
    print("\nTesting realloc function:")
    test_realloc()
    print("\nTesting binary search function:")
    test_bsearch()
    print("\nTesting quick sort function:")
    test_qsort()
    print("\nTesting memory copy function:")
    test_memcpy()
    print("\nTesting string tokenization function:")
    test_strtok()
    print("\nTesting time functions:")
    test_asctime()

if __name__ == "__main__":
    main()


You can contact our site for technical support: https://azencompileropensourcefoundation.com Copyright: Azencompiler Open Source Foundation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (7.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp313-cp313-musllinux_1_2_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp313-cp313-musllinux_1_2_i686.whl (13.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp312-cp312-musllinux_1_2_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp312-cp312-musllinux_1_2_i686.whl (13.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp311-cp311-musllinux_1_2_x86_64.whl (14.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp311-cp311-musllinux_1_2_i686.whl (14.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp310-cp310-musllinux_1_2_x86_64.whl (14.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp310-cp310-musllinux_1_2_i686.whl (14.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp39-cp39-musllinux_1_2_x86_64.whl (14.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp39-cp39-musllinux_1_2_i686.whl (13.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (13.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp38-cp38-musllinux_1_2_x86_64.whl (14.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp38-cp38-musllinux_1_2_i686.whl (13.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_x86_64.whl (14.0 kB view details)

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

Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_i686.whl (13.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_x86_64.whl (14.0 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_i686.whl (13.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ i686

Adamlibrary-1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

Adamlibrary-1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (14.1 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

File details

Details for the file Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80ec65c3560d5ad945bfc671b0dfa80eac4dc4123c717da48e758a84ff6f6bf1
MD5 c02c5ff0a354fecbb2d6401de12f6a2f
BLAKE2b-256 c9f758f32d9ca0828233bba174209a82c9a4faf4b3c2eb065a2f7be39770cd0d

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 713545cd3e952ad164ab370738b11fed8c0e815bffcbdc12efb9c5863ab1fa7c
MD5 15a79f932cc4e4719134be4015285af9
BLAKE2b-256 8461c7cac90428b7fdd8d4fc9ae8a32ccdc0fc777933bc45e2823112eb44a758

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d58ce62e835e5f6a124f83a6dc216eb88aef517fc4b61ed923e68dcf0b7ebb59
MD5 feafdbf2220719e289bc6576433fd182
BLAKE2b-256 db7ff2b5b6c9f9fabd014644399987de469858bade8d0df54fb642fe371247f3

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9ce1ef5086df56296ceede7c9736431a1350dd5b912f347ee0154b295738a86e
MD5 8ce36a227d0ae118ec74e94b866934db
BLAKE2b-256 a6a808373d093cae99a4605bd1730c42e768d8290d03420572bdb68063bf7c2b

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8e3dd74018c760814c3f4ca28a805146b18e7bcc0fc6f61a5cc7c573afc0169
MD5 c2db35d6fb0002e71bc06da7b773975c
BLAKE2b-256 390def828045a64217b95db0ea9a0b40040057d31656d0cff64238dee09e6390

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcf8101b52187435b6bc351a5c438abd488869474405269f9fc3f0f019137760
MD5 00feab88ae9a75c7159a227d1affe3c5
BLAKE2b-256 a26f197beb59fc863a229ccc1112cb1467ee796448ea394dd7a03a7b60031bc5

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a1f5cbacd184e6f2c52ec764b70e0dcb78d17245e248b1cf27b9a73e63e1865
MD5 5f6add76949f457f9e8f702b02c9cbf2
BLAKE2b-256 89033cff39d13e4c52d3bccc62a718a2b2c06cf26934863f4b7315c1f28786cf

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3de7d619b8a72452e7e1474e1ba8a2e8ad857b4f6ba3af39dd5f7f2e5765ccd8
MD5 a9955a92f9a5734185b3b0cd3fc3431d
BLAKE2b-256 70b4b7a50bf3e3f82851732dca3c0e2f08d53f7a8775371cb7aa82ea9fcb87ba

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 249c9043f087b2122066709e73988d7b62a5a0a7238b9a1519722cde3c77937c
MD5 3785e1f12e4875f0a547324f6e9528d3
BLAKE2b-256 da8fc4a3899354f43a553b113fdbd7560fd4abf84f62a1d61ba8e4326e0bb936

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a03fcde1d204e2fa26e3c2a35618abca1a99f9d8b783a39caebef58de8895c5
MD5 907fc5980cf073afa6296fbaa877e55c
BLAKE2b-256 4fe1146df970eef13eb91e8cc814fb278c370e56ff59bff664141de17f5706c0

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43b094dc7cd052bfe8d41c564e6426af8f9ecad2b79b13ad5119764d637ec179
MD5 a9be673de7e0a926dc0b7059012e008e
BLAKE2b-256 7dddeee869632b5086cf630cdafec2a48c29555d77bdd0e71ee183f9b53bb454

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95fa0a505d492c51aa0e41275e5420fa48789f37fe356c8f5c545f487a70b36d
MD5 bfb6d0315694797d7b49c9726768b2a3
BLAKE2b-256 a043d89d85b8e421f7e3e7043470e79348132af9391e421d6399965ec70446ef

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8a1a20df42bbb434e128a9fd39cb31f0d5ce1bdf67bfbee6f204f52ab1108ca
MD5 e03fa56f782a83009ab0b2698178ad69
BLAKE2b-256 9f10fd01902ed5609a386f39353c1ba9f8305e46a342ebec6e1ce642200eaf57

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9a41dafa116fe229cbeed07c7dd9b3be15cff320c77b144bc7715653d65fedb
MD5 b50f8686433ca05f07938653f45a8e8c
BLAKE2b-256 4e381f7841fa877982bfbd8faf0d93776e3a994c8dbf7dc0b94cd22f5ac2ce98

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8fb92c7e266d0af89e78bdefbebe2da3b2bab5c6721f85cc20572025f074afe
MD5 8f2a572b6bcfba1cb1a81dd6c0e10f2f
BLAKE2b-256 74352c08f232b4c6c62ab34efba669b03b8f39d352e1f6e90357129653e503df

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c12d8fd704aea34788cc3ad9f12d1376a4473aaf3411e4bd03c2d23e23286108
MD5 71012e04774e559283fd5acc387fa4d2
BLAKE2b-256 62d9b13af9cca3d48b181303de669cc9501cec4470c30554bdcd85d374107bbf

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06d522e8d57e9587ca9e58a54d0da719acfd0658c3afb329cd82412369785d76
MD5 d6fd96608f6cc514fc543ab146d7d828
BLAKE2b-256 a1c46eeec35f08c3b40938932921f9a47d4d4bf5eefe912d46b0f9d9d4a2c5da

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26f8b26601da0f9acc0383cd4408bea47f001140f0274f75222b2c0884b681c5
MD5 f2f949ca0ce098636de3ce86d73c9014
BLAKE2b-256 a47cf35a4b36a56be42162bba0422a4d2c0bd77884b1fc43bb0fa606b172ed99

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12b6b8a4d412b561d607b28bb638c89c5ed51f8926cd03c86aaa595765ea369d
MD5 39a152bc5e604d11eae7fb1442c824cd
BLAKE2b-256 43fff63aab17902d1816b8a465819cfaf195f52d499d72f4fa07396be1c1bf68

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 728ace41b14080e948a4089d2b83a4a1733d9fa83c94d9eadf62e4e45d5fec6f
MD5 1e5869ff8321d977492ae78456b12c43
BLAKE2b-256 1c64ad17a6cd31cee424bda460918971354084591f515721a8409405e5147b51

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1688420d4057a611444de65b1d915b6c76ff44482c74860e5bb236e6982468f
MD5 3264073c42c1aba1361115e4fbdccf9f
BLAKE2b-256 c0dc3e3e85574c985cffa75fa4bc6a4f94f6c3d32b5cfb9e38baf1361d625fa7

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3131dc85a558bd27c806a8edaa654fb22dd49f59c842c9ee8ef96c4d1c4bd9cb
MD5 480be412b9d9c2631891aaad4ea177a1
BLAKE2b-256 5f086e4fe44a84c3cc87cd4c2a4d90b243b6027940754a3d9dd1a952a5a9bd9a

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8abf44d675ec51bdaed76554a925e8ee2461f283103f3c2912e1db6379b79758
MD5 03e608344e1cd76184ed7f230f7eaea7
BLAKE2b-256 0db9a9443ee930027c8936bd5975bf49609b3a816f8b4e744742d0c0810be24a

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c358720b59c87563896959430ddfc462dd2d650037c423d38c5b1b9cb0a24119
MD5 b39c4dd89696928f925b70d9766014d0
BLAKE2b-256 4c7cdc4d77699c48cb27bd84c96d9e94a475413b04926483e59befbd67228f24

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d36d77e5d9486aea71b526e92d43f23d189ee109db2554b7a1372891e4cb602a
MD5 b43a83dc1e4af059e6292a152f5ad99d
BLAKE2b-256 b3f0ba0da484f53b70dc1077f1682983bbef1d18e4f1ce043a319915d1a40b2b

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81b9cc447f3a4ba42caa437a5c90f1c9589f5cb497d8b8c62d606cefc69c836e
MD5 7a70f4d2e62698de1e0868c89e5e9282
BLAKE2b-256 7a424457d3fefd3e8f71cca7cc43619316440e769a46d1a1677fe6706682db4e

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7bf00b6b0c210106f99f24dca05d7f3ea5d75075a30a476687d58e8d0ce25385
MD5 32b10a0b4997e843715d03b8e7cb45b4
BLAKE2b-256 97766fef849364d192fb57bb7e8005717a4a71bb6c7bb9aa2f8ec24d078895c2

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b60a431e2d664b4603303671947dbc0338b62a8b96e7adb95dc33e02d103ec21
MD5 0e8e2fc6692903403edb8bea3dec3949
BLAKE2b-256 5ff47f27abee7dd07d5bbf4c736e3eec88e2ab22c615fdd9304c9dba4e980224

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cc0373096eda664e8225865e44488b32e67de75adb6ab3436bc475c6d68db32
MD5 d864981548e5f7b510cb884e0af5c2f1
BLAKE2b-256 d00ce594fbaa5c2a31fd5a46fb969b9a4f73a39df6c983a715127cbfe2ec8dd0

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71de6e66ce5c05a88ed3e3189e6824fb6b7063f123dce4455fc86df2871ccd6d
MD5 a1101df301b1144400a7c9e637214f89
BLAKE2b-256 ddab782900f7540921ccf2047a240d58bb295bb4c3efac9f93fa03c5ebf67bf4

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab1e1e96ad7bfd22789b497177201dbd492530898bc0d52a9c6929801c719bc2
MD5 73f2ece04af7ae28c80c2bf006668136
BLAKE2b-256 a28a399dcd130b5cb9a328cc680255833258e257405944ccb71ddad3a84ea64c

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cd4b669c17e643ab925ee40181a7bc8322c7249409ca326838696b969520a41d
MD5 42ae8996d9e536acc526e622092fc93a
BLAKE2b-256 6c3283af91108f0dd156624a5346d7937f5e2b68cab94a1a476275b0a235b8e8

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3facad6103e1d7ccc5d06dbf7df7365bd3157c45bcde661226b35874ab9dd19
MD5 ca977053d0ec0863f05f8b43dc5a7075
BLAKE2b-256 127e6e298e599bf85e6546dd6b3d369c837b5ec7d5ad6322b239e0c722010e94

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ac8b503472ba9d3645806e9e266ae88f74d341ec87e9b26fac7c3f505054d41
MD5 157840683ade9ae7d3c7a2542b8a03fb
BLAKE2b-256 9072c4198d9ab0c81a5f28d8b6643c63a6557158bc3f0f4b232e40da07e79123

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14e705b0cb3f68e1c192c1abcc971d8941b679f4e872495c50de26098a83b04b
MD5 711702fac0e9cdec95116c2b52d64be1
BLAKE2b-256 8324e0d478a9de2aec90c97f17ef38148ff7b39fddf4b283800f57a0b9c2f00c

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46f0c8a9a35ff4b696b8a775fde2cd830e06f2c4f106a9d504d6d7a34bcf0cb9
MD5 5d25278df864869847de9f025b544f5e
BLAKE2b-256 61e755ab51ad930f816a78116b73633e0198edf07da54bb0286ae581a5c6c2d0

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c5ed00d94a0ea8f60ba5ce711bf9d3a84213a8cda7badd6c5910eb108fa9b0b
MD5 92c464cdd3aa43cedba01eda8083533c
BLAKE2b-256 2f6d9f9e7a7447f1304495e3fb0aa5933e3bbfe97c7f0ee0059911c39c42514d

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc789853179c2a7e2362213ba589760c645fedaa0057ea1b0b1edc0dbeb619ad
MD5 ef6ff74f9afc4d825a84b7c852a1b097
BLAKE2b-256 00d5452fc200cbf4614b4c8a5d49dc5b1948cbb807f5a9ebfdb23122a313908a

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5f9c1f599418a1cac93708e3cc54d758e68bc883c9f8b889c260c2372f1d2cb
MD5 89223657f457d36103e3db90519672ce
BLAKE2b-256 deb06ee7ac638095b50528716dfd0f2a1e847427f0b70217243c33807278c031

See more details on using hashes here.

File details

Details for the file Adamlibrary-1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for Adamlibrary-1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cd55461ba74169abbf52e302888460cf0183613073be2d4c3dc0a9d39c6c7ea
MD5 ceaed2007919f04b24e230ec847f45d9
BLAKE2b-256 08c2a956302e3496280d5e95b84dbe83f886dca1eaa02a08a4da9a0fe8b4c233

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