PyLink
Universal communication interface using File-Like API
What it is and what it does
PyLink is a thin abstraction layer that wraps TCP, UDP, serial, and GSM communication behind a common file-like interface (read/write methods). It lets you write communication code once and swap transport mechanisms—for instance, switching from local serial to remote TCP—without rewriting the core logic. The package is particularly aimed at projects that need to support multiple communication paths, such as embedded systems that can talk over IP or direct serial links.
The library was last updated in 2017-11-29 and is now abandoned. It targets Python 2.6 through 3.2, and while the changelog mentions Python 3 compatibility fixes, there is no evidence of maintenance for modern Python versions. The GSM support relies on AT commands over a serial or network link, making it useful for older modem-based systems but potentially obsolete for contemporary hardware.
Use it for:
- Embedded systems that communicate via both local serial ports and remote TCP connections, needing a single abstraction.
- Legacy GSM modem integration where AT commands must be sent over serial or network links.
- Test harnesses or simulation frameworks that swap between live hardware and mock services.
- IoT projects with fallback communication paths across multiple transport types.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
PyLink provides a unified file-like interface for TCP, UDP, serial, and GSM communication, allowing code to switch between different transport mechanisms without changing the core read/write logic.
No. The package is abandoned (last release 2017-11-29, no commits since), targets obsolete Python versions (2.6–3.2), and offers no maintenance or security updates. Unless you are maintaining legacy code already using PyLink, modern projects should use transport-specific libraries or a maintained abstraction layer. The high install friction and lack of support make it unsuitable for new development.
Install
pylink on PyPI
pip
pip install pylinkuv
uv add pylinkpoetry
poetry add pylinkInstalling PyLink
Before you install
High install friction: the package is abandoned (last release 2017-11-29, 3180 days ago) with no runtime dependencies but a source-only distribution. Expect compatibility issues with modern Python versions and no maintenance support.
License in practice
BSD license is permissive and poses no restrictions on use, modification, or distribution in proprietary or open-source projects.
Quickstart
pip install pylink
from pylink import TCPLink
link = TCPLink('localhost', 7)
link.write('Hello')
result = link.read()
Package targets Python 2.6–3.2; compatibility with modern Python versions is uncertain.
Verify before relying
- Whether the package actually works on Python 3.8+ despite classifiers only listing up to 3.2
- Whether GSM modem support still functions with current serial hardware and drivers
- Whether TCP/UDP optimizations from version 0.2 remain adequate for modern workloads
Package facts
| License | BSD (permissive) |
| Python support | not specified |
| Install friction | high — source build required |
| Runtime dependencies | none |
| Maintenance | abandoned — 3,180 days since the last release |
| First released | |
| Downloads | 99,002/month — #13,044 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: PyLink-0.3.3.tar.gz
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
pyserial-asyncio-fastProvides async I/O support for serial port…
permissive · top 15,000 on PyPI
xmodemImplements the XMODEM file transfer protocol…
permissive · top 15,000 on PyPI
pyserial-asyncioAdds async/await support to pyserial for…
permissive · top 15,000 on PyPI
pylibftdiPythonic interface to FTDI USB devices via…
permissive · top 15,000 on PyPI
pylink-squareProvides a Python interface to control SEGGER…
permissive · top 5,000 on PyPI
python-oscpython-osc implements Open Sound Control (OSC)…
unclear · top 15,000 on PyPI
binho-host-adapterControls Binho Multi-Protocol USB Host Adapters…
permissive · top 15,000 on PyPI
PyCampbellCR1000Communicates with Campbell CR1000-type…
copyleft · top 15,000 on PyPI
aioserialProvides async/await serial port I/O using…
copyleft · top 15,000 on PyPI
smpclientImplements the transport layer for the Simple…
permissive · top 15,000 on PyPI