Socket
Socket
Sign inDemoInstall

asyncserial

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncserial

Asyncio wrapper for pyserial


Maintainers
1

============================ Asyncio wrapper for pyserial

.. image:: https://badge.fury.io/py/asyncserial.svg :target: https://badge.fury.io/py/asyncserial :alt: PyPI version

.. image:: https://img.shields.io/pypi/pyversions/asyncserial.svg :target: https://pypi.org/project/asyncserial/ :alt: Python Versions

.. image:: https://readthedocs.org/projects/asyncserial/badge/?version=latest :target: http://asyncserial.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status

asyncserial is a a wrapper for the pyserial library providing an async interface based on async def and await.

Installation

.. code-block:: sh pip install asyncserial

Documentation

https://asyncserial.readthedocs.io

Examples

.. code-block:: python

import asyncio from asyncserial import Serial

loop = asyncio.get_event_loop()

test_serial = Serial(loop, "/dev/ttyACM0", baudrate=115200)

async def test(): await test_serial.read() # Drop anything that was already received while True: line = await test_serial.readline() # Read a line print("[+] Serial read: {}".format(line)) await asyncio.sleep(0) # Let's be a bit greedy, should be adjust to your needs

asyncio.ensure_future(test())

print("[+] Starting eventloop") loop.run_forever()

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc