Skip to main content

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.

Release files for pycluon 0.2.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for pycluon 0.2.3
File
pycluon-0.2.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pycluon-0.2.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pycluon-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
pycluon-0.2.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pycluon-0.2.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pycluon-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pycluon-0.2.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pycluon-0.2.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pycluon-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pycluon-0.2.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pycluon-0.2.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pycluon-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pycluon-0.2.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pycluon-0.2.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pycluon-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pycluon-0.2.3-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pycluon-0.2.3-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pycluon-0.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
pycluon-0.2.3-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
pycluon-0.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pycluon-0.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pycluon-0.2.3-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 76.0 MB

Release files / pycluon-0.2.3-cp312-cp312-win_amd64.whl

Download URL pycluon-0.2.3-cp312-cp312-win_amd64.whl
Size 1.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e4ca954ed919d0822f547d12875d26e6c9919f6d26273c4c140cd65951a8c742
BLAKE2b-256 checksum
How to use checksums
e9181ede497f1d282ee666fcd078a65404366a3d5ad998528c37e4b47324c6d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-win32.whl

Download URL pycluon-0.2.3-cp312-cp312-win32.whl
Size 1.1 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
898896294f82c24c99651c2b0042b3c717765151419b752c8c4640fe0fcd30b4
BLAKE2b-256 checksum
How to use checksums
5a197e7f2854d2d30d7d736e034c49a76c6f25f4c87e6db0736309b9feea2a4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2e9ce633de2aa4b1e3fb4cccf3a190fd900c346418213bb52900d84ee72b7276
BLAKE2b-256 checksum
How to use checksums
62f299332354a2203476722129f444ec5313d095e167c85a13da6d6de466e1a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp312-cp312-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f177327861568decf289fed23145b9559aee51d8d359c891b5843c4da9954421
BLAKE2b-256 checksum
How to use checksums
ad9dc0b54528c29456dbd27f24719d161c03885d1de457e1d7bf5cacedfc0551
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f3ff033b09e4563e39dfe25353993dd8624781b48336eda07087e706d7b75f0e
BLAKE2b-256 checksum
How to use checksums
7e426883c8a11c1ddb40e058c3effaf676ce602562c0b32cefae26f19801e62d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d7e5d83b09f74cd11bf926a3092940ca41360cb2719987ad809788f967405f5f
BLAKE2b-256 checksum
How to use checksums
25a0ced331b2743b6d8e4a67cd154e3b89986a5e8cc05bf2290e3dd4a42d664e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp312-cp312-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
42553feeda9f1a21a423006f3c862c854e6d33bd22303ea14ca2119c82bc50da
BLAKE2b-256 checksum
How to use checksums
23974d20c1c7860c99cd87d062dfe61d787945689f9e79a9ad88d4bca0dfa05d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-win_amd64.whl

Download URL pycluon-0.2.3-cp311-cp311-win_amd64.whl
Size 1.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bb40d8f0d5df1a65b9f13a6b15d97c63e66af89c5be0930e9dd7ef31a5d37d15
BLAKE2b-256 checksum
How to use checksums
0b47a41e09712509775fbe4aba097c06db44280e620076458095ab405b38f8e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-win32.whl

Download URL pycluon-0.2.3-cp311-cp311-win32.whl
Size 1.1 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
100ffe2b7aeb5d82fd8296fedb1d4538b6fe115aa18d9793350c5335e03ebef2
BLAKE2b-256 checksum
How to use checksums
ff3ba17d3dcff629140826a1da827f19a82493abdd59fddb3835b9f5b893d5a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
b7003936d26594752b51f7e1a3eee6225784daa17b335ff989706dc46c30a74e
BLAKE2b-256 checksum
How to use checksums
1a7edaf759665dfcab3bdbf5223f6584b53b9ec3f03a120a506b6e79189ad447
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp311-cp311-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
8912a8dbbc48dd8c0b9b1ec67c744c7c70c4b976567b4d3d78b12dd67a78ba33
BLAKE2b-256 checksum
How to use checksums
1e2d61cbcfe7aba18d68a86f34a7ccb3e808231cd39b7dcd9e4cbdd15ec80218
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8b7c605163fd8df0a677287e83c4a009a0067cedbffb06cd490c4441e9104305
BLAKE2b-256 checksum
How to use checksums
eb1c4dbff5cf0ab70777330c11fa71c0c4c0abfa3bc9dd2e70b8d9265a029698
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
6118681457592dd94c6eaf2aa45e54e165ab5913307369f8b7cd643b57134e59
BLAKE2b-256 checksum
How to use checksums
1c59230b4d25ee0abfa6a8fae74609416ba3af281a41950d4f2861ba73727f45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
11b21f5903b65ad58af0f71959dc84db52bd6b7b60d0be01c0468db7a6287eb2
BLAKE2b-256 checksum
How to use checksums
92299d1427d05bd6ebf21fef21bfe160f0714cfd249f69cacd0276dba5e51a38
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-win_amd64.whl

Download URL pycluon-0.2.3-cp310-cp310-win_amd64.whl
Size 1.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2f501c20666f08059bf9643bc70e310fb492e7a6b3a4e7c288508a33a53116ec
BLAKE2b-256 checksum
How to use checksums
89ea9e29f06e25ef3c963706f821affd8d92459bbc2d5b33924265ca69016c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-win32.whl

Download URL pycluon-0.2.3-cp310-cp310-win32.whl
Size 1.1 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
b04360d1b90c1d021ed20b36c5d079e19661704a870c947db326ff8000192871
BLAKE2b-256 checksum
How to use checksums
22ad304d79ff81ab2d78cb483514af522258177092e3771c4a96f7b5b110e053
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
97f10841e9f36fb45212af8c5bfdd91e86e107ece457073361e311a46ddcaede
BLAKE2b-256 checksum
How to use checksums
58640430209a4d2719a12789d59fedec1c598facf6e02d59b6927d5914f53977
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp310-cp310-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
282b348a76ef2f2e9485a0b4155461d1abc249199235ec355ca1a6542510c64a
BLAKE2b-256 checksum
How to use checksums
efe8780263a81d30d2a2a586f31478ef09c3b2a5efddd6afa21438b2376e4d31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f18c2cd4bba82305f56f59aa342c3efcd6aea545c468de8b6a4b106fef0d245b
BLAKE2b-256 checksum
How to use checksums
a34e012c22c527964057ad784627e7a96a3284da389ced676af9c650d4f822b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e47bce67f7fc72b78931893c42ab756916b338ad5f5e35dc942cb8af5651c85a
BLAKE2b-256 checksum
How to use checksums
c5fa97db6855b4761e4979030573109cfc19d8c63d76be608e9fc9405d855d47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7793b38730fb7c83810ed86aa32d32e48fb26d6dbf839592bb6c34bd18803790
BLAKE2b-256 checksum
How to use checksums
d000e76fadf228f27ba944a63c9ea45cdfc924b1e6a3997f1e08fb2607d944ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-win_amd64.whl

Download URL pycluon-0.2.3-cp39-cp39-win_amd64.whl
Size 1.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
17fde8fc1a8d27c4db58da5abce28ba0fa408369ca0f1a25a6fce72ed5541f42
BLAKE2b-256 checksum
How to use checksums
bd0525db3d0d1e2fdf8ba2f1e4cf1f7588cf8511f1b3c1ae634394ec56a0f19a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-win32.whl

Download URL pycluon-0.2.3-cp39-cp39-win32.whl
Size 1.1 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
f5f0d9cfebd6956e3ecce40392c2b2286fe43dfba2711ce2218f2d1872dc5679
BLAKE2b-256 checksum
How to use checksums
21531784087759aba65868e6f0cadd7ff39f6a817533fcd13cce88a2c7096e56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
3f15f6ccc593b7dcb6dbc59bf2f7af58dc562f4594bb91ad2fd7b05e1d9569ab
BLAKE2b-256 checksum
How to use checksums
2d6c3238b9995cdf64c0f2c2454ebe4e03bb32cb7d2626bac609ae84c21ec7b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp39-cp39-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
c1c29f44d3a3db5d0080531b425826d0c0141f1f30728872b8c157c7b066f543
BLAKE2b-256 checksum
How to use checksums
4a2869d1060c1a60f4e2e301f08ce114e66a16623d5a6836c3b88c2d7d65b2db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
95276b2390804e823a3847dad854b707dee97bbb3f0040b87a56e1662ee9cbe8
BLAKE2b-256 checksum
How to use checksums
1086744646fb809ba41ab176066409f13c943a0e57d3fc4a04b90ade8f7093f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ad26628b75a14924f1d0a76b5c4034e2d67e16146ad5d500feee315c6f0c0b56
BLAKE2b-256 checksum
How to use checksums
4ec80ca92853ae90b2bd9bafeb4753915409ecff75016f99a9fea97dfa81f1d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
72979dbf48b98af55af7488d7b3153c94797c6d87066aec8e7973f9418d76b31
BLAKE2b-256 checksum
How to use checksums
e9625b0c79d7ed97f4e4e3b42aae8aa28fa5317cafbad2f03a8af48609b56566
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-win_amd64.whl

Download URL pycluon-0.2.3-cp38-cp38-win_amd64.whl
Size 1.3 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e663244bd02f1f9b4ab763183c9d324568746393f911d44bf14f17e44deb3d55
BLAKE2b-256 checksum
How to use checksums
e72b1d7ae7fcc0827556c3c15d4f853565c29d4ba4ee7b38fdd6497dff7078ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-win32.whl

Download URL pycluon-0.2.3-cp38-cp38-win32.whl
Size 1.1 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
75e0d88e9f4ff167996cd694a9e21a335ae470ca87356285720c95ebec2c25f7
BLAKE2b-256 checksum
How to use checksums
2e5a8b4363c157a5f4b93226c214f345c51eff00fcc6bd2d53a258afc02d620d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
37570db99b31c0951626359989a0421aa97e6121cd764f4f8f4c83d2e53efad4
BLAKE2b-256 checksum
How to use checksums
e3a517dc49cbc02885cd16da51b234ab9ee3ec9f90f83e57431f2c5ed2613b0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp38-cp38-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
3a70ef0c12a608b6f6c33568bc38ac337692946e3dd98bc09601cf34003a0724
BLAKE2b-256 checksum
How to use checksums
8ddad7ecb9f34e09c6c42110cac8b2010e56d2ccf9bce689de1fd7b5e6fc7b89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5092284490af75e8950a220a880d29f78cea3b176c1625b1a8324f495f85de8e
BLAKE2b-256 checksum
How to use checksums
4c712062f15d3ad22980415a301a5402f8d814142a171edc73fe514d8b29c91a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e13517805e8bd7655079ba496d97cac289b4ad02fa3a3784c6d119a132f0ac71
BLAKE2b-256 checksum
How to use checksums
f533c588428f80f2d08669f3805d7cf0733bd28fbe861b34d5371f144a5df491
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4bdad89b050eaa785fbf195db9e874156f41159eda23f7143526480a139a08e6
BLAKE2b-256 checksum
How to use checksums
7376e15952eb8ad9c2120372e1c8616020b30179d8c2a95e97965d8e692b8f97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-win_amd64.whl

Download URL pycluon-0.2.3-cp37-cp37m-win_amd64.whl
Size 1.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2dc06e7dbe03583c785c177f86d31ce4824639143bff9443ca929e316b9d4c11
BLAKE2b-256 checksum
How to use checksums
afa44db00ac21c4879c314a344b1ff9ab41e35054f6c21bcc4eff0e4abbcab4a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-win32.whl

Download URL pycluon-0.2.3-cp37-cp37m-win32.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
eede7229733ca42301a8aac065bb4f1c29d80fc2a85c0197855447ff6abbc20a
BLAKE2b-256 checksum
How to use checksums
6d1d77beb8db83cd5f6c6d3daa37943dc5e1cdd9b2cff1d9d67432c72ef3a6b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL pycluon-0.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 2.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c73cef860421040000e74517b0cc0ec032a25c779025546584a6fed35c3cbcff
BLAKE2b-256 checksum
How to use checksums
ce41cebd96b370588370ff4ef609ea6522b3187f7dc82ebca98f0763d1c5d5cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-musllinux_1_1_i686.whl

Download URL pycluon-0.2.3-cp37-cp37m-musllinux_1_1_i686.whl
Size 2.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f99861c3342c82a04e0ca5b0c685e7b891f0a161fed17ceb11e6a4b1255fdc31
BLAKE2b-256 checksum
How to use checksums
39880b2442b4020f6eced98b09048658b9e0e8b9564d7e22b99b6bceb6799468
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pycluon-0.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.9 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
dda9a46d1359dfc9aeffab5ab02ea86589bf0884ba6269b19c53dd1cb3451518
BLAKE2b-256 checksum
How to use checksums
fe360ce70afd4cb2cf349241eb625caca0e38af0cb424e079c5c0e696ddb0aaa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pycluon-0.2.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 2.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
bd745e287fb84e65577766a14071f90a8ea6ab03f1574dc8f3b8e42d8a0b1f77
BLAKE2b-256 checksum
How to use checksums
03a6350740539b2443761926d815ff9b9a0ae2c6b6bb90750f70fb8c0d6a0293
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / pycluon-0.2.3-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pycluon-0.2.3-cp37-cp37m-macosx_10_9_x86_64.whl
Size 1.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2f1e1ffac053cf39f291268aa80897c92f5ee12a40bd98369669ab715157e0fa
BLAKE2b-256 checksum
How to use checksums
fa6f7a19da1276119dcd795287dff04672527fba24c579000978f02310273e5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.7

Release history Release notifications | RSS feed

This release

0.2.3 This release

42 release files

0.2.2

20 release files

0.2.1

20 release files

0.1.3

20 release files

0.1.2

20 release files

0.1.1

20 release files

0.1.0

8 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page