Skip to main content

Library implementation of IEC 60839-11-5 OSDP (Open Supervised Device Protocol)

Project description

LibOSDP for Python

This package exposes the C/C++ library for OSDP devices to python to enable rapid prototyping of these devices. There are two modules exposed by this package:

  • osdp_sys: A thin wrapper around the C/C++ API; this is a low level API and is no longer recommended to use this directly.

  • osdp: A wrapper over the osdp_sys to provide python friendly API; this implementation which is now powering the integration testing suit used to test all changes made to this project.

Install

You can install LibOSDP from PyPI using,

pip install libosdp

Or, from github,

pip install -e "git+https://github.com/goToMain/libosdp#egg=libosdp&subdirectory=python"

Or, from source using,

git clone https://github.com/goToMain/libosdp --recurse-submodules
cd libosdp/python
python3 setup.py install

Quick Start

Control Panel Mode

# Create a communication channel
channel = SerialChannel("/dev/ttyUSB0")

# populate osdp_pd_info_t from python
pd_info = [
    PDInfo(101, channel, scbk=KeyStore.gen_key()),
]

# Create a CP device and kick-off the handler thread and wait till a secure
# channel is established.
cp = ControlPanel(pd_info, log_level=LogLevel.Debug)
cp.start()
cp.sc_wait_all()

while True:
    ## Check if we have an event from PD
    led_cmd = { ... }
    event = cp.get_event(pd_info[0].address)
    if event:
        print(f"CP: Received event {event}")

    # Send LED command to PD-0
    cp.send_command(pd_info[0].address, led_cmd)

see examples/cp_app.py for more details.

Peripheral Device mode:

# Create a communication channel
channel = SerialChannel("/dev/ttyUSB0")

# Describe the PD (setting scbk=None puts the PD in install mode)
pd_info = PDInfo(101, channel, scbk=None)

# Indicate the PD's capabilities to LibOSDP.
pd_cap = PDCapabilities()

# Create a PD device and kick-off the handler thread and wait till a secure
# channel is established.
pd = PeripheralDevice(pd_info, pd_cap)
pd.start()
pd.sc_wait()

while True:
    # Send a card read event to CP
    card_event = { ... }
    pd.notify_event(card_event)

    # Check if we have any commands from the CP
    cmd = pd.get_command()
    if cmd:
        print(f"PD: Received command: {cmd}")

see examples/pd_app.py for more details.

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

libosdp-3.0.6.tar.gz (80.7 kB view details)

Uploaded Source

Built Distributions

libosdp-3.0.6-pp310-pypy310_pp73-win_amd64.whl (53.0 kB view details)

Uploaded PyPy Windows x86-64

libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (67.1 kB view details)

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

libosdp-3.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl (52.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libosdp-3.0.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (53.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

libosdp-3.0.6-pp39-pypy39_pp73-win_amd64.whl (53.0 kB view details)

Uploaded PyPy Windows x86-64

libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (67.0 kB view details)

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

libosdp-3.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl (52.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libosdp-3.0.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (53.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

libosdp-3.0.6-pp38-pypy38_pp73-win_amd64.whl (53.0 kB view details)

Uploaded PyPy Windows x86-64

libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (62.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (67.1 kB view details)

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

libosdp-3.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl (52.3 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

libosdp-3.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (53.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

libosdp-3.0.6-cp312-cp312-win_amd64.whl (52.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

libosdp-3.0.6-cp312-cp312-win32.whl (45.7 kB view details)

Uploaded CPython 3.12 Windows x86

libosdp-3.0.6-cp312-cp312-musllinux_1_1_x86_64.whl (211.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

libosdp-3.0.6-cp312-cp312-musllinux_1_1_i686.whl (199.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

libosdp-3.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (195.4 kB view details)

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

libosdp-3.0.6-cp312-cp312-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

libosdp-3.0.6-cp312-cp312-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

libosdp-3.0.6-cp311-cp311-win_amd64.whl (52.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

libosdp-3.0.6-cp311-cp311-win32.whl (45.6 kB view details)

Uploaded CPython 3.11 Windows x86

libosdp-3.0.6-cp311-cp311-musllinux_1_1_x86_64.whl (207.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

libosdp-3.0.6-cp311-cp311-musllinux_1_1_i686.whl (196.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

libosdp-3.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (194.7 kB view details)

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

libosdp-3.0.6-cp311-cp311-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

libosdp-3.0.6-cp311-cp311-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

libosdp-3.0.6-cp310-cp310-win_amd64.whl (52.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

libosdp-3.0.6-cp310-cp310-win32.whl (45.6 kB view details)

Uploaded CPython 3.10 Windows x86

libosdp-3.0.6-cp310-cp310-musllinux_1_1_x86_64.whl (208.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

libosdp-3.0.6-cp310-cp310-musllinux_1_1_i686.whl (197.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

libosdp-3.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.7 kB view details)

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

libosdp-3.0.6-cp310-cp310-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

libosdp-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

libosdp-3.0.6-cp39-cp39-win_amd64.whl (53.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

libosdp-3.0.6-cp39-cp39-win32.whl (45.7 kB view details)

Uploaded CPython 3.9 Windows x86

libosdp-3.0.6-cp39-cp39-musllinux_1_1_x86_64.whl (207.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

libosdp-3.0.6-cp39-cp39-musllinux_1_1_i686.whl (196.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

libosdp-3.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (193.0 kB view details)

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

libosdp-3.0.6-cp39-cp39-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

libosdp-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

libosdp-3.0.6-cp38-cp38-win_amd64.whl (52.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

libosdp-3.0.6-cp38-cp38-win32.whl (45.7 kB view details)

Uploaded CPython 3.8 Windows x86

libosdp-3.0.6-cp38-cp38-musllinux_1_1_x86_64.whl (209.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

libosdp-3.0.6-cp38-cp38-musllinux_1_1_i686.whl (197.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

libosdp-3.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (205.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

libosdp-3.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (192.9 kB view details)

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

libosdp-3.0.6-cp38-cp38-macosx_11_0_arm64.whl (56.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

libosdp-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl (58.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

Details for the file libosdp-3.0.6.tar.gz.

File metadata

  • Download URL: libosdp-3.0.6.tar.gz
  • Upload date:
  • Size: 80.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6.tar.gz
Algorithm Hash digest
SHA256 17883fd782c5ee2f0eb8e97766a37b07354c48d4d4c6225d75c52e3427f8e599
MD5 63f4e29dbc551e9c890fd6d74346b01c
BLAKE2b-256 61b32538215d13b7fb15f455050c45df531d349c61b66e839a67e90a4a7375f2

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4ea6a2d80e8715de6dce1fe5b0e188109969fa54b98b3802f8b7e56e5f22017b
MD5 e29d1bfdf75e38c5f5d1238b37e85409
BLAKE2b-256 98c95396a3877dfc0234a4c1d574187b361deded318ff6237f03af3ec7ba5f40

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8785bc41f1af68ebcc084190bb67edbd886238d136d92c6a3efbc06ef92bd9db
MD5 ccfff7a3f697329b5ba273696d9bfd00
BLAKE2b-256 86e72113e95b868f30b5846a8f49461ef143f2857eb29f9e8052ee0a5857a3e3

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3e2277afb5035a188e2fc9c793b057aeb3cd8e8085ad7aace5ae2e6b26e8608
MD5 2e066e118a280b3be1462c41676c56f3
BLAKE2b-256 fc68fc01eeeb048d112d65d844e15f54596f7b465a74fc3993537beaba296cc8

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1b1392651b477a0f76fa17ce1b95a3ef5d80804bed83faa835b2469b07082d9
MD5 d2c971029f01a80f7ccc4d910c4c2bba
BLAKE2b-256 a2617961fc10337bf8678eef6e305a88c7c889ecb4b193178bda8c0f7c483cfe

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69ef9c0a5bbea8e9f537bb24668d601c6cb7e8118a2f0f534271af0b1344e987
MD5 57b60dd83bf3ea34c3ffcb3a0fb7797a
BLAKE2b-256 1e484da59306bcf2c153a28b761029684e34eeb3e2886db9e4232f49cc061727

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb0978a1bf929b740be196301a660a277f2bd302dcb4b8ae360c2506dec45580
MD5 ec89e5ae59fccd89ab9aee7d5beebbff
BLAKE2b-256 880888081d5df9342b7e00339041c22c02b112cf1d766f8d1c4e2a0aab00791f

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9c692f4a95a66908478f813a20140bb3ae398fc87acaf8dfdb3f54039b232e7
MD5 b913d7400f4d7596651c7d5409195561
BLAKE2b-256 efa619ab60c65a560b07c8592af2d6a682ec58aa09b78bb585dc2f79732636eb

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48215ebac79204f1474739460a42e83f17605343473e5e3bae92273d7bc712f8
MD5 f9dcb084a53f492dea884568be5c672b
BLAKE2b-256 6893204570538ab3e88d9aa3880b99f9e94a91202817de08ca1db184a9680e05

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec9e1ec36b520eee00222736988810f85bb4a69a0e891c4188c226204fddb1a8
MD5 e5618f5f051bee71a5ab3b1c1ec52095
BLAKE2b-256 557932bf737aa2718a47657d89a8ddf71b16fb2383fccb91bdc5c1b37fd8f744

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 697b29706d26085a407375dcfdbaad0bfb5a390f3c8f6ef117491e85a0434ede
MD5 8c52d1430215af1a750cd64150ec3bca
BLAKE2b-256 d0121fc1bc7a8c02d2dcdc01256b81d397e709d6fff97864a590d1c9c4cfcf6e

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 217884519ff5c7867f720eaf967975d1623e11c3ac66a41ca7182b78b45c307d
MD5 9553de8abb36ce883347c502f373b9e6
BLAKE2b-256 90b9ad2208c283256551f4ed2ea6f0c6188a13aa3e8ce257e3b54800ffdf58fb

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27fea413f1f62aa1baf74d32c5c1ad7d645b7d2bf6d0f0ce7a4c0c02e9af1cc1
MD5 334333dc99c48a209069c17575226604
BLAKE2b-256 c64ce3317a0588788753df621b325bebdf88a7b6cbc4074c14ca72a4aa489f9c

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bd398de45e4420bbcff364c96954b3e117696fc9b4f9f36d32b3136026f4193
MD5 98a277f5b623e1ce4088f66f3761952c
BLAKE2b-256 9d642c672f42aa91cc5697137a0d34f849c7cda51c42ee3010c3eddbd80d0ce5

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6be49dc1fc5a41f4dd14513c2d0ea7dde9edd75bb9e2c255361edfc35b17363
MD5 10c36e81a3c047fcc68b2ed64e9ec501
BLAKE2b-256 a64000b5d438029e081b8fe0f4a9a4f676087f70ec21f156280a736ce271ef28

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 034f0a4035548920f039b9885c2b185dadc34347207ff45dd70e5e0e76c734cb
MD5 a4a74aeb7f606cf497ba1cded531c411
BLAKE2b-256 3530328cafbd5ac7ebe539d5b7519e3f12a70a26f5c304c0e5f314615eacdc86

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 52.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 486f7a9cd72828c3f111ea2d71788b3e441d765704600b3b0e1e873aff88bc8d
MD5 0cbb8c5346044007cbc5e2d106d77b56
BLAKE2b-256 1115f172c9d726ae4d0f1dd823928d16c41fff7fed668f75709387006bbd7c34

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7a3d10849a81a5cc406d168ada13dd60a98a6d844e61a8c102d7e27bdbb32a65
MD5 008177705e171666449ec85ea1ec7d03
BLAKE2b-256 5f09776aea6c55fbdc090c41228f7b8812e0b62752722ff9ff1e2d5b69f34580

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 231edf038230d2f6c82e15bd4c8849d34788e6d122379c1dabe7e04d230eacd2
MD5 5368b9fa8ef32f2849c31474fb63fdf6
BLAKE2b-256 d2e3e0fd9da042fb43a042af1a00040793ac3cc2347806ddbccbedeba31ca47f

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ed42c28f4dd56c5689e6f8ffa26a9e9b17dde9f9526f385c0a98a71c54353c0d
MD5 19e09494f5bb9658ef40c96c368bd3a6
BLAKE2b-256 13c636c5d53ca32722e270e973758cf6b38f67ccf6037e08276e728da5c7647a

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2a6791a8df4114ae017b54521ec52407a2ed773ac9fc230dcfb33eeec7e0730
MD5 c4c37ba116dac6fb2b88bc59c93721cc
BLAKE2b-256 595d0ec2b88e2dae30f62f0e307247eaf009bb5dccc0bb367e22f399b725984e

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13fce1b241aa4a86f48b50ce105dbc26fd49bdbfb554cd2823e52384af96e13e
MD5 2c8981289a8a6dae2723a7d25675d2cd
BLAKE2b-256 ecfc5e57147993b2aa639630ca20d6c8b92de6c073e6be451a392b7ecafc97df

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 173b0a697f66dd7da13a08a4012c518ce8dcffcd8a43793ff854d6c1d8711145
MD5 bab2439ad21f5fd88d0be85af6a387dc
BLAKE2b-256 3206ad76c85e12ace41e86fa7dc1b6e83e5b325c14509c8a52f89627763a23de

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c3e42d85a941c33445d4d38a21e3a6e85d6c6b1fcd7e027832043565af78df2
MD5 bc414ca8810b7ab1317eee586b5deada
BLAKE2b-256 0e3897d390d0845be622c314d124e62295bc52b48c5884cb3072e936d9fc70bb

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a2cb522d7f0e508a2860d861c1ad42638c6e1e713047cc01082355ee216a6a9
MD5 b65d0708af37340e973f35132a6625a5
BLAKE2b-256 6f36a83cc247c39ff8d3eafa56cde9370cfaafd3078b0417c2101a62851bff27

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2cc1568823c4ef357b10af8e2db9c1295d0ab207576e92c9abfe8dea07b1bb6b
MD5 232cf29f1fcbeea3426ef86116af9c95
BLAKE2b-256 f6b161df1592c2bb69492c1349291b4608fb1ebcb3fa3526968315ea0891fefb

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 31b5515c3034f16720046e9a6242d45100a189d7585f7a5c2ad8c93496231723
MD5 bf617b30c37519b28350656493dc391f
BLAKE2b-256 f894f7ed1aa2449f7eac284efeaf04ff6d673210de66ea3c7b75553ff9d4534e

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e995f3394b7b3d3260485c8ad5fe33b5b37f6a5f6d8416fd35d1affe556f15b3
MD5 2c7ad909ff9126cefc2f69d3cad3f705
BLAKE2b-256 6390b9ca21fc5370a718db047deebc6cbd48fdc14376577fb15f7051c25289c9

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d76c1ab0475aaaa1e667ec454cb259cece1507c12c86b3d83c23bc22159f0a2d
MD5 b5804e9e1d82fa41f402d0ce1b7063ef
BLAKE2b-256 cf5246ed7fb9a3c1545ccb74c4f9393fc05cc4034093bd551a98b09b05035458

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70bbbda9f3612a9de1f2586451768444f255fe39c215cf5795e2fb1d3d60cf00
MD5 59b771dfbc7f315edc01e952de00eb2f
BLAKE2b-256 5f8b4a1830f09225359c114beb476d63d80af79596d5023ecfbf449ccffd6349

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a050ac53bf58367a579235c359e951c5052f4729782bc8da49e13817e7383aaa
MD5 825f1900907700957a0920c4478ad84d
BLAKE2b-256 df0363f8d46581299f3167f01b1e9fd39a6aa60aaeae87b51e31808e16fc57fa

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8976ad302fb1074b1bc93bcab93b85dd89743837bd560a1a1a0c14ce5eb33a9
MD5 9de576bb741f222e3de7aa6d7174f4f7
BLAKE2b-256 90c55438b882713745df15adcedc71a6750c826003a7cc4076d08e72cf454f9c

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b7589fab62299c888db469c75f5bcfa2edec3caf4a8a828d5426d0c529a56a1
MD5 89e7d2a238e53bb877e938646f698da2
BLAKE2b-256 b97bd72684d0f5b4ca4504d578f79be4a0bd6e20a6296c240b9682cfba099744

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 11c3eeff3d1e5fad34b650d04d268732136cf3c671cfcac9d562c91fbf9dc75c
MD5 4d953efebd91123e3a6848464fc2b3e6
BLAKE2b-256 0109274d4347c822c02794c300b1cc856353c24b9689e8d52fa64ee52d109144

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab00b5090f68c52d5c5c4ca2d4c7543087eef289113247f39c35ab71fe5b89eb
MD5 f9863f113ef2add0fb425170cea6eb63
BLAKE2b-256 ce89a905015003808d1fbfc96377512810e0e16ab0461727a46d84644ecc8c59

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 eea4be06f7b725ad716790fa06ddd7abefd78556fa6b964bce78d73061bcbc55
MD5 82561559c0a7b7f3d3641cc77fb86d58
BLAKE2b-256 48c18aa4e7d903f9ff84ed3f3783abe32b9c120be91684bc788d4edf06a933b1

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3b65056e6e234d50cefa16b555d6a3a406f8586521cd9d175c84d7d5052865a
MD5 f8f736de428abb4134fe8b9fcc2b7466
BLAKE2b-256 818cad50b288ea3a1ab3b4ffc3b91582663f699b483bbe00546eae2882da7fb8

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88662cae6d435e2901573de3f148d2439432b50edf0fb8ab73ac4d3390f6bee2
MD5 58dfa31f19f2007d75fbb4f08d0ea07f
BLAKE2b-256 ccfb59da4faeb47fd76d914b76d2c3fa9fd1e4dfd220a6eff5411929545372c7

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c448096411c9f11efbc52364615385a0ad4d62f42be08b51e9483131d74b9f80
MD5 801d90db06337dd73a43928cbfd98303
BLAKE2b-256 c631eb52a83f10895d69572d070772924dc4fb4d97a2d496179306e1fe744888

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e731c9ad09e2755a6d143fee16fb2f7d33a24e7c162157f74b7639c53d68962a
MD5 308da09eb26236473abb518f2585743f
BLAKE2b-256 5ccc53fa2862e00ed0c8aec4562f683104f02a6947f60ab8b1cc894ca09a44f8

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 53.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c88a31ebf011bf689aed85893d52ae35116d040df801ccbab5569f4bd769baca
MD5 f071c0db32b09e9096396dc339d7b444
BLAKE2b-256 2fb867d8df6a82262e497bb0de3d9e40373f4608587dab285fe2767287c6b8eb

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c17828c4f8cc1a30918acac5aa758ce5a57140fe093e95b74195b4ff3bb93ffa
MD5 266a68a62383a69851adce2ded0ac30a
BLAKE2b-256 e7a214b0b68996c5b931f1bff80974920af5b19aa0767ed74fbd0cc68bc374b6

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 134a79a08a86322189701e158837ceaa2d4beefd44b04568a9a126aa8d845a52
MD5 ef486518847435680281a0f361ae56de
BLAKE2b-256 ac8f57c7f22542cce7100c94ee09efeac74d28c28b95351ecd3224ce8d8b551c

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 942fe3757e0c788efb0592c76595f8d9c5adfeab16b0a4cc46db6b743d1312d4
MD5 b2471e8be510c4dae743e2b76fcb66f0
BLAKE2b-256 d8fcd8428d13842314a9f8a16c1d0a51e95bd1a81c3b0454245b7034f9bf35cd

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ce24f063731ecefb787ae224506fc756c536cbe6743a7497ad5f64032364326
MD5 49eb6b0a3aeffc6c9a403612cd5d4ab1
BLAKE2b-256 afdc28bb70275dded8b44ef382658f66c2823211f10f27018929d80223c8127d

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ebc242523e162c3c480adf470ba3f527cf6e2f93083ed593c01df21ac9a2039
MD5 f6395b5ef65c0e2952aa1fe9f43a7947
BLAKE2b-256 dc3b05c3d617ce69b8d5d92bcc79e68a3ddd0ae5c4110edf51036c8b1daf2e79

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e60f5199bc7087810e607a4a9d8c34fc70579212885277991b749b2dd652a19c
MD5 60b67483695061cd4b2c72bd60c0785b
BLAKE2b-256 a10e46910e062bee937f7f534c85979971f5ae6e6102e3147fa65fce43f9f771

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ecfd4aa7906b19f66f640006dc39cf217932248f944a745544a53ae4d31c2cb
MD5 fb450aedef1f82b265bba911c099702e
BLAKE2b-256 b0ba6abe7b491fd927328e8721c870b5b95fea67c3b5325188f032f541ff8697

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a57c374ae1ae1859890c6830f38728301ca977bf05e452e23b8fbd6ae9edd18e
MD5 26f7cbbc8e25fda224695a547e202667
BLAKE2b-256 b91c166f2c909ddd9aa65cdf5b46ff46c1d62dd2b0b9254920d9792a1654818b

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: libosdp-3.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c850e616788c9b4b22ba6c73f2b2f46045cd4ce838104ac36f04a78f9e29fed3
MD5 4fc0b55c1565f1acc0c7329eac8c20f5
BLAKE2b-256 77aac63f38686a6ea603fbffefab20b30ba7acd907b5da7b359e7d5f27c40592

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a008cf3803da703a23867706a3b0c2d52ed77bf908ddbeade83a0179e2ee560
MD5 fada866117ca0fb48874ab5ecebc791d
BLAKE2b-256 ac0aad59e1b89f0787bff89f443a0f01c4ab3693feba485c39b5fa1b95866086

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b1b546beea55a9e1b88077056bdbb9b18be737b833c4c7861fb7b7278caf399e
MD5 c65e71d14460fa6299af2d07a35bd175
BLAKE2b-256 bcf7f7b3e4ac4a590f0fc3de4c2b819f5b317260a35599281d5e7eb6427f113e

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc5bdc3be1fcd137bee4aec8b8b05d7b0bb16dd9e35fba1d01965a7f9cbfb3b0
MD5 633dfaecdc789e962163c6fef2afacdf
BLAKE2b-256 e697dc6c8a8edbfdda22ddce987fbcd8b5918f0d3daccd0a9ee2c579a418765a

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1185cb82ad555c53b23e6c1ab344f930735b166463addbe6c51b04dadf76178f
MD5 093700496e5c0942f09cf1f4e466771b
BLAKE2b-256 c540bc1ffb649d917d7288ce358f2c8086fa944923866c7b7555aae11b940256

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a3024e644a754d6099c71ecb59125c7be14ea8f9eca3e90abe38b7de4fd9548
MD5 5dabb68c2becd47e8dec1af9b2071e40
BLAKE2b-256 ce9eba1f0d6391b72620cd0093464491d71cf1e6ba16cd2cfe6c60f6ac8674ce

See more details on using hashes here.

File details

Details for the file libosdp-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for libosdp-3.0.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b3cdd292c94d48bff287103899ebefb58bf1b5d08a1e301bd0c53e0fb5244d3
MD5 c1f07be3f8c5267ecd946706500d1b83
BLAKE2b-256 b965eaf1093d7894d3150b748059f3b968bb6e7f6dd95d5dc7b1bb136bd1cb44

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