Registry / database / pylink

pylink

JSON →
library0.3.3pypypi✓ verified 84d ago

Universal communication interface using a File-Like API. Currently at version 0.3.3. Project appears to be in maintenance mode with infrequent releases.

pip install pylink
INSTALL
IMPORT
SIG · PYLINK
P
pylink
databasepythonv0.3.3
Install
2.5s avg
Import
—
Disk
18MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.9–3.13
musl
3.9–3.13
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
musl
py 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 19.9MB
glibc
py 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}')
Debug
Known issues
gotchaLink.open() uses URL-like schemes (serial://, tcp://, etc.). Common mistake: forgetting the scheme prefix.
fix
Always prefix device with 'serial://' for serial ports.
affects: all
deprecatedProject is no longer actively maintained. Some functionality may be broken with newer Python versions or OS updates.
fix
Consider alternatives like pySerial, asyncio, or aiohttp for new projects.
affects: >=3.7
Upgrade
Version history
0.3.3latest on PyPI · released Nov 29, 2017
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
8
Amazon
1
Resources
pylink — pip install pylink · libregistry