pykserials 2.5.1__py310-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.
- pykserials/__init__.pyc +0 -0
- pykserials/kserials.pyc +0 -0
- pykserials/kserials.pyi +33 -0
- pykserials/kserialutil.pyc +0 -0
- pykserials/kserialutil.pyi +7 -0
- pykserials-2.5.1.dist-info/METADATA +15 -0
- pykserials-2.5.1.dist-info/RECORD +9 -0
- pykserials-2.5.1.dist-info/WHEEL +5 -0
- pykserials-2.5.1.dist-info/top_level.txt +2 -0
pykserials/__init__.pyc
ADDED
|
Binary file
|
pykserials/kserials.pyc
ADDED
|
Binary file
|
pykserials/kserials.pyi
ADDED
|
@@ -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,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=ILZUn9e8djp8m3BdKpbhjmMzpro1CEwRfiDVEDKjvEY,145
|
|
2
|
+
pykserials/kserials.pyc,sha256=5MYQlKp_5t7WNnNJLHYWMR_Mz5FlClVqJjqtRO9GZcU,10372
|
|
3
|
+
pykserials/kserials.pyi,sha256=80moyfDyTCbngiO3Ezs_DW13MyAuermOBEVnSuo86vg,1026
|
|
4
|
+
pykserials/kserialutil.pyc,sha256=Mi4Ha2T9LLDNRJx8che5JGJFGxW3UV_6WrkCN5PFM9U,1567
|
|
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=xdKEXCSA3z67AuZ0U8YY67qtEq4KdeUP34QFIQ6Frx0,94
|
|
8
|
+
pykserials-2.5.1.dist-info/top_level.txt,sha256=MDwC1mWhezDMaaDHwyVSBENiWEAZWLjjB5tBsTXoC8g,17
|
|
9
|
+
pykserials-2.5.1.dist-info/RECORD,,
|