A python wrapper around libcluon
Project description
pycluon
A python wrapper around libcluon. pycluon aims to follow the API of libcluon as closely as possible to avoid surprises.
So far, pycluon wraps the following concepts from libcluon:
- Envelope
- OD4Session
- UDPSender
- UDPReceiver
- TCPConnection
- TCPServer
- SharedMemory
It also bundles the following command-line applications:
- protoc
- cluon-msc
- cluon-OD4toStdout
- cluon-OD4toJSON
- cluon-LCMtoJSON
- cluon-filter
- cluon-livefeed
- cluon-rec2csv
- cluon-replay
Versioning
pycluon version |
libcluon version |
python versions |
|---|---|---|
| 0.1.0 | 0.0.140 | 3.7, 3.8, 3.9, 3.10 |
| 0.1.1 | 0.0.140 | 3.7, 3.8, 3.9, 3.10 |
| 0.1.2 | 0.0.140 | 3.7, 3.8, 3.9, 3.10 |
| 0.1.3 | 0.0.140 | 3.7, 3.8, 3.9, 3.10 |
| 0.2.0 | 0.0.140 | 3.7, 3.8, 3.9, 3.10 |
| 0.2.1 | 0.0.140 | 3.7, 3.8, 3.9, 3.10, 3.11 |
| 0.2.2 | 0.0.145 | 3.7, 3.8, 3.9, 3.10, 3.11 |
Installation
pycluon is available on PyPI:
pip install pycluon
Examples
Import an odvd specification into a python module
from pycluon.importer import import_odvd
my_module = import_odvd("/path/to/my/odvd/specification.odvd")
Send an envelope
import time
from pycluon import OD4Session, Envelope
session = OD4Session(111)
message = my_module.MyMessage()
envelope = Envelope()
envelope.sent = envelope.sampled = time.time()
envelope.serialized_data = message.SerializeToString()
envelope.data_type = 13
envelope.sender_stamp = 13
session.send(envelope)
Receive an envelope
import time
from pycluon import OD4Session
session = OD4Session(111)
def callback(envelope):
message = my_module.MyMessage()
message.ParseFromString(envelope.serialized_data)
print(f"Received at {envelope.received} seconds since epoch")
session.add_data_trigger(13, callback)
while session.is_running():
time.sleep(0.01)
Write to a shared memory area
from datetime import datetime
from pycluon import SharedMemory
sm = SharedMemory("frame.argb", 640*480)
sm.lock()
sm.timestamp = datetime.now()
sm.data = b"<bytes>"
sm.unlock()
sm.notify_all()
Read from an existing shared memory area
from pycluon import SharedMemory
sm = SharedMemory("frame.argb")
sm.wait() # Wait for notification from writing process
sm.lock()
print(sm.timestamp)
print(sm.data)
sm.unlock()
See the tests for usage of UDPSender, UDPReceiver, TCPConnection and TCPServer.
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pycluon-0.2.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e4ca954ed919d0822f547d12875d26e6c9919f6d26273c4c140cd65951a8c742
|
|
| MD5 |
95c002c2aaa0d87d8d7bf7aade6b972b
|
|
| BLAKE2b-256 |
e9181ede497f1d282ee666fcd078a65404366a3d5ad998528c37e4b47324c6d1
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898896294f82c24c99651c2b0042b3c717765151419b752c8c4640fe0fcd30b4
|
|
| MD5 |
71768035105be060f4a85397477f0041
|
|
| BLAKE2b-256 |
5a197e7f2854d2d30d7d736e034c49a76c6f25f4c87e6db0736309b9feea2a4d
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e9ce633de2aa4b1e3fb4cccf3a190fd900c346418213bb52900d84ee72b7276
|
|
| MD5 |
e1487c69a13a9b848d8013e973388013
|
|
| BLAKE2b-256 |
62f299332354a2203476722129f444ec5313d095e167c85a13da6d6de466e1a0
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f177327861568decf289fed23145b9559aee51d8d359c891b5843c4da9954421
|
|
| MD5 |
4d50aba583856ccfcf7f1d4d750c41c9
|
|
| BLAKE2b-256 |
ad9dc0b54528c29456dbd27f24719d161c03885d1de457e1d7bf5cacedfc0551
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3ff033b09e4563e39dfe25353993dd8624781b48336eda07087e706d7b75f0e
|
|
| MD5 |
7985e2488ae6bbad9006b926009774e1
|
|
| BLAKE2b-256 |
7e426883c8a11c1ddb40e058c3effaf676ce602562c0b32cefae26f19801e62d
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7e5d83b09f74cd11bf926a3092940ca41360cb2719987ad809788f967405f5f
|
|
| MD5 |
2128aa20542442a2a57ce155e9e149e6
|
|
| BLAKE2b-256 |
25a0ced331b2743b6d8e4a67cd154e3b89986a5e8cc05bf2290e3dd4a42d664e
|
File details
Details for the file pycluon-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42553feeda9f1a21a423006f3c862c854e6d33bd22303ea14ca2119c82bc50da
|
|
| MD5 |
4f035802dbfd7c6c1cac1f8546732610
|
|
| BLAKE2b-256 |
23974d20c1c7860c99cd87d062dfe61d787945689f9e79a9ad88d4bca0dfa05d
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb40d8f0d5df1a65b9f13a6b15d97c63e66af89c5be0930e9dd7ef31a5d37d15
|
|
| MD5 |
2c326aaa36b9065f4ff8eff2b054c918
|
|
| BLAKE2b-256 |
0b47a41e09712509775fbe4aba097c06db44280e620076458095ab405b38f8e6
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
100ffe2b7aeb5d82fd8296fedb1d4538b6fe115aa18d9793350c5335e03ebef2
|
|
| MD5 |
9979142980786c8c8c06c11f169dca4b
|
|
| BLAKE2b-256 |
ff3ba17d3dcff629140826a1da827f19a82493abdd59fddb3835b9f5b893d5a3
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7003936d26594752b51f7e1a3eee6225784daa17b335ff989706dc46c30a74e
|
|
| MD5 |
7b326b2111bbc453a624652df785728c
|
|
| BLAKE2b-256 |
1a7edaf759665dfcab3bdbf5223f6584b53b9ec3f03a120a506b6e79189ad447
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8912a8dbbc48dd8c0b9b1ec67c744c7c70c4b976567b4d3d78b12dd67a78ba33
|
|
| MD5 |
99abced748e6b51dc40c29030b2967ce
|
|
| BLAKE2b-256 |
1e2d61cbcfe7aba18d68a86f34a7ccb3e808231cd39b7dcd9e4cbdd15ec80218
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b7c605163fd8df0a677287e83c4a009a0067cedbffb06cd490c4441e9104305
|
|
| MD5 |
a3615ae8d8b059fa3789279206545104
|
|
| BLAKE2b-256 |
eb1c4dbff5cf0ab70777330c11fa71c0c4c0abfa3bc9dd2e70b8d9265a029698
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6118681457592dd94c6eaf2aa45e54e165ab5913307369f8b7cd643b57134e59
|
|
| MD5 |
2213eb3a8a1de2e308dff52a871c946e
|
|
| BLAKE2b-256 |
1c59230b4d25ee0abfa6a8fae74609416ba3af281a41950d4f2861ba73727f45
|
File details
Details for the file pycluon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11b21f5903b65ad58af0f71959dc84db52bd6b7b60d0be01c0468db7a6287eb2
|
|
| MD5 |
5eccb26dabeac27d034a783e09fbb6f0
|
|
| BLAKE2b-256 |
92299d1427d05bd6ebf21fef21bfe160f0714cfd249f69cacd0276dba5e51a38
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f501c20666f08059bf9643bc70e310fb492e7a6b3a4e7c288508a33a53116ec
|
|
| MD5 |
ec939f8eaeca1a3761c2c7e0f6f50007
|
|
| BLAKE2b-256 |
89ea9e29f06e25ef3c963706f821affd8d92459bbc2d5b33924265ca69016c26
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b04360d1b90c1d021ed20b36c5d079e19661704a870c947db326ff8000192871
|
|
| MD5 |
3ba61524b40825374ef68d0e0ddc03dc
|
|
| BLAKE2b-256 |
22ad304d79ff81ab2d78cb483514af522258177092e3771c4a96f7b5b110e053
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97f10841e9f36fb45212af8c5bfdd91e86e107ece457073361e311a46ddcaede
|
|
| MD5 |
50d2bdb526ba429a143b7cd75abe0b18
|
|
| BLAKE2b-256 |
58640430209a4d2719a12789d59fedec1c598facf6e02d59b6927d5914f53977
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
282b348a76ef2f2e9485a0b4155461d1abc249199235ec355ca1a6542510c64a
|
|
| MD5 |
91fca48ab6ba5cabba2f1aa38f150a35
|
|
| BLAKE2b-256 |
efe8780263a81d30d2a2a586f31478ef09c3b2a5efddd6afa21438b2376e4d31
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f18c2cd4bba82305f56f59aa342c3efcd6aea545c468de8b6a4b106fef0d245b
|
|
| MD5 |
680e073e62988629db37de7249440b5b
|
|
| BLAKE2b-256 |
a34e012c22c527964057ad784627e7a96a3284da389ced676af9c650d4f822b7
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e47bce67f7fc72b78931893c42ab756916b338ad5f5e35dc942cb8af5651c85a
|
|
| MD5 |
046d50af2e465fb21f380bfa98092da0
|
|
| BLAKE2b-256 |
c5fa97db6855b4761e4979030573109cfc19d8c63d76be608e9fc9405d855d47
|
File details
Details for the file pycluon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7793b38730fb7c83810ed86aa32d32e48fb26d6dbf839592bb6c34bd18803790
|
|
| MD5 |
928b2f48101f013dafc822f842dd498f
|
|
| BLAKE2b-256 |
d000e76fadf228f27ba944a63c9ea45cdfc924b1e6a3997f1e08fb2607d944ba
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17fde8fc1a8d27c4db58da5abce28ba0fa408369ca0f1a25a6fce72ed5541f42
|
|
| MD5 |
b296cb4cf642151f68ddd8a5520f0f9c
|
|
| BLAKE2b-256 |
bd0525db3d0d1e2fdf8ba2f1e4cf1f7588cf8511f1b3c1ae634394ec56a0f19a
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5f0d9cfebd6956e3ecce40392c2b2286fe43dfba2711ce2218f2d1872dc5679
|
|
| MD5 |
1b6fb7427a10fda97f88b17c1b8080e4
|
|
| BLAKE2b-256 |
21531784087759aba65868e6f0cadd7ff39f6a817533fcd13cce88a2c7096e56
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3f15f6ccc593b7dcb6dbc59bf2f7af58dc562f4594bb91ad2fd7b05e1d9569ab
|
|
| MD5 |
dd3fba365b6f8c4503a0ff159cc3e3d3
|
|
| BLAKE2b-256 |
2d6c3238b9995cdf64c0f2c2454ebe4e03bb32cb7d2626bac609ae84c21ec7b7
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c1c29f44d3a3db5d0080531b425826d0c0141f1f30728872b8c157c7b066f543
|
|
| MD5 |
a0f5316ea60af988bf75ef1b16b00238
|
|
| BLAKE2b-256 |
4a2869d1060c1a60f4e2e301f08ce114e66a16623d5a6836c3b88c2d7d65b2db
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95276b2390804e823a3847dad854b707dee97bbb3f0040b87a56e1662ee9cbe8
|
|
| MD5 |
00215c42f97fd1a31a6f3b5dd1514a53
|
|
| BLAKE2b-256 |
1086744646fb809ba41ab176066409f13c943a0e57d3fc4a04b90ade8f7093f3
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad26628b75a14924f1d0a76b5c4034e2d67e16146ad5d500feee315c6f0c0b56
|
|
| MD5 |
c0286c136c93a70ca91f2cc635c5db9d
|
|
| BLAKE2b-256 |
4ec80ca92853ae90b2bd9bafeb4753915409ecff75016f99a9fea97dfa81f1d9
|
File details
Details for the file pycluon-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72979dbf48b98af55af7488d7b3153c94797c6d87066aec8e7973f9418d76b31
|
|
| MD5 |
37d71635687fdb420ed8887677bc78a1
|
|
| BLAKE2b-256 |
e9625b0c79d7ed97f4e4e3b42aae8aa28fa5317cafbad2f03a8af48609b56566
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e663244bd02f1f9b4ab763183c9d324568746393f911d44bf14f17e44deb3d55
|
|
| MD5 |
ec545d7440bfe374691d502e4ac1a39d
|
|
| BLAKE2b-256 |
e72b1d7ae7fcc0827556c3c15d4f853565c29d4ba4ee7b38fdd6497dff7078ce
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75e0d88e9f4ff167996cd694a9e21a335ae470ca87356285720c95ebec2c25f7
|
|
| MD5 |
aa2a5f8fdf78416afb5fe5ffbda34e75
|
|
| BLAKE2b-256 |
2e5a8b4363c157a5f4b93226c214f345c51eff00fcc6bd2d53a258afc02d620d
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37570db99b31c0951626359989a0421aa97e6121cd764f4f8f4c83d2e53efad4
|
|
| MD5 |
9f64820315ca0a4bd61f4e0ce3cc3882
|
|
| BLAKE2b-256 |
e3a517dc49cbc02885cd16da51b234ab9ee3ec9f90f83e57431f2c5ed2613b0a
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a70ef0c12a608b6f6c33568bc38ac337692946e3dd98bc09601cf34003a0724
|
|
| MD5 |
e079721bc4375417536a678450a81852
|
|
| BLAKE2b-256 |
8ddad7ecb9f34e09c6c42110cac8b2010e56d2ccf9bce689de1fd7b5e6fc7b89
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5092284490af75e8950a220a880d29f78cea3b176c1625b1a8324f495f85de8e
|
|
| MD5 |
bf244f59afaca16698e7a716abc792ce
|
|
| BLAKE2b-256 |
4c712062f15d3ad22980415a301a5402f8d814142a171edc73fe514d8b29c91a
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e13517805e8bd7655079ba496d97cac289b4ad02fa3a3784c6d119a132f0ac71
|
|
| MD5 |
6332ddbf7c513cb5f9cfc5b0e5a7d712
|
|
| BLAKE2b-256 |
f533c588428f80f2d08669f3805d7cf0733bd28fbe861b34d5371f144a5df491
|
File details
Details for the file pycluon-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bdad89b050eaa785fbf195db9e874156f41159eda23f7143526480a139a08e6
|
|
| MD5 |
e1afc906282caf2d909d515d0bbca2d6
|
|
| BLAKE2b-256 |
7376e15952eb8ad9c2120372e1c8616020b30179d8c2a95e97965d8e692b8f97
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dc06e7dbe03583c785c177f86d31ce4824639143bff9443ca929e316b9d4c11
|
|
| MD5 |
7862c39704292a06a58a0694b042c5cd
|
|
| BLAKE2b-256 |
afa44db00ac21c4879c314a344b1ff9ab41e35054f6c21bcc4eff0e4abbcab4a
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-win32.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eede7229733ca42301a8aac065bb4f1c29d80fc2a85c0197855447ff6abbc20a
|
|
| MD5 |
7f7dbd46fa907e3ab76490609e9813b6
|
|
| BLAKE2b-256 |
6d1d77beb8db83cd5f6c6d3daa37943dc5e1cdd9b2cff1d9d67432c72ef3a6b9
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c73cef860421040000e74517b0cc0ec032a25c779025546584a6fed35c3cbcff
|
|
| MD5 |
b967a1ea7fcb2f24768238248824122d
|
|
| BLAKE2b-256 |
ce41cebd96b370588370ff4ef609ea6522b3187f7dc82ebca98f0763d1c5d5cb
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-musllinux_1_1_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f99861c3342c82a04e0ca5b0c685e7b891f0a161fed17ceb11e6a4b1255fdc31
|
|
| MD5 |
2241e259f245175044fc238e9806ba57
|
|
| BLAKE2b-256 |
39880b2442b4020f6eced98b09048658b9e0e8b9564d7e22b99b6bceb6799468
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dda9a46d1359dfc9aeffab5ab02ea86589bf0884ba6269b19c53dd1cb3451518
|
|
| MD5 |
cdb848002f9f0fafe6b93f2ea05e6d62
|
|
| BLAKE2b-256 |
fe360ce70afd4cb2cf349241eb625caca0e38af0cb424e079c5c0e696ddb0aaa
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd745e287fb84e65577766a14071f90a8ea6ab03f1574dc8f3b8e42d8a0b1f77
|
|
| MD5 |
d6103692a6789e5d8951aaf1ba29ac8d
|
|
| BLAKE2b-256 |
03a6350740539b2443761926d815ff9b9a0ae2c6b6bb90750f70fb8c0d6a0293
|
File details
Details for the file pycluon-0.2.3-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pycluon-0.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f1e1ffac053cf39f291268aa80897c92f5ee12a40bd98369669ab715157e0fa
|
|
| MD5 |
f75d61b8cf3c2ffb57e544c00fc1f0fc
|
|
| BLAKE2b-256 |
fa6f7a19da1276119dcd795287dff04672527fba24c579000978f02310273e5f
|