pykserials 2.5.1__py39-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
Binary file
@@ -0,0 +1,33 @@
1
+ # Stub file for type hints
2
+
3
+ import serial
4
+ import serial.tools.list_ports
5
+ import threading
6
+ import time
7
+ import queue
8
+ from typing import Optional, Dict, Callable, Any
9
+
10
+ baud_rate: int: ...
11
+ bytesize: int: ...
12
+ parity: str: ...
13
+ stop_bits: int: ...
14
+ max_send_queue: int: ...
15
+ timeout: float: ...
16
+ write_timeout: float: ...
17
+ retry_interval: float: ...
18
+ max_retries: int: ...
19
+ class KSerials:
20
+ def __init__(self, *args, **kwargs): ...
21
+ def _find_device(self, *args, **kwargs): ...
22
+ def _connect_serial(self, *args, **kwargs): ...
23
+ def _connection_manager(self, *args, **kwargs): ...
24
+ def _data_handler(self, *args, **kwargs): ...
25
+ def _process_received_data(self, *args, **kwargs): ...
26
+ def _start_data_thread(self, *args, **kwargs): ...
27
+ def _cleanup_data_thread(self, *args, **kwargs): ...
28
+ def start(self, *args, **kwargs): ...
29
+ def stop(self, *args, **kwargs): ...
30
+ def send_data(self, *args, **kwargs): ...
31
+ def receive_data(self, *args, **kwargs): ...
32
+ def get_status(self, *args, **kwargs): ...
33
+
Binary file
@@ -0,0 +1,7 @@
1
+ # Stub file for type hints
2
+
3
+ import serial
4
+ import serial.tools.list_ports
5
+
6
+ def scan_available_ports(): ...
7
+ def to_bytes(content): ...
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.1
2
+ Name: pykserials
3
+ Version: 2.5.1
4
+ Author:
5
+ Classifier: Development Status :: 5 - Production/Stable
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Programming Language :: Python :: 3.9
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
+ Classifier: Topic :: Utilities
14
+ Requires-Dist: pyserial (~=3.5)
15
+
@@ -0,0 +1,9 @@
1
+ pykserials/__init__.pyc,sha256=6GtYLCVROLnW_4rxIE_E39CLjM6nz9mkbUYYBc6o7Z8,143
2
+ pykserials/kserials.pyc,sha256=h2Naohn-jbhs0422KINtAdfgitkGv5gfPeEa_jb-H_0,10278
3
+ pykserials/kserials.pyi,sha256=80moyfDyTCbngiO3Ezs_DW13MyAuermOBEVnSuo86vg,1026
4
+ pykserials/kserialutil.pyc,sha256=-9An5NUKRm0ffU4uR9EACyWzo2-GA_90fm_IaQgvD8Y,1569
5
+ pykserials/kserialutil.pyi,sha256=CS3bPFk2TxOSHpQ3NNQmJojkBp2Riji41P6A6_o5PIs,133
6
+ pykserials-2.5.1.dist-info/METADATA,sha256=0C7FQmp6xV510g47tbnP34N7KqlpCVsFzT_RPtYzSMA,540
7
+ pykserials-2.5.1.dist-info/WHEEL,sha256=ns_9KNZvwSNZtRgVV_clzMUG_fXjGc5Z8Tx4hxQ0gkw,93
8
+ pykserials-2.5.1.dist-info/top_level.txt,sha256=MDwC1mWhezDMaaDHwyVSBENiWEAZWLjjB5tBsTXoC8g,17
9
+ pykserials-2.5.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.38.4)
3
+ Root-Is-Purelib: true
4
+ Tag: py39-none-any
5
+
@@ -0,0 +1,2 @@
1
+ pykserials
2
+ tests