Install & Compatibility
Where this runs
tested against v0.3.3 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 19.9MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.5s · import 0.000s · 20MB
18MB installed
● package 18MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
GSMLink
✓ from pylink import GSMLink
✗ from pylink import Link
SerialLink
✓ from pylink import SerialLink
TCPLink
✓ from pylink import TCPLink
Open a serial port link and send an AT command.
from pylink import Link
# Open a serial port link
try:
with Link.open('serial:///dev/ttyUSB0', baudrate=9600) as link:
link.write(b'AT\r\n')
response = link.read(1024)
print(response)
except Exception as e:
print(f'Error: {e}')
Upgrade
Version history
0.3.3latest on PyPI · released Nov 29, 2017
Audit
Dependencies
No dependency data recorded yet.