Metadata-Version: 2.4
Name: sertools
Version: 0.1.2
Summary: Interface for serial devices using pyserial.
Author-email: Jason Doar <jbdoar@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/jbdoar/sertools
Project-URL: Issues, https://github.com/jbdoar/sertools/issues
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyserial
Requires-Dist: readchar
Dynamic: license-file

# sertools

Interface for serial devices using pyserial.

## Installation

```bash
pip install sertools
```

## Features
- Query method with flexible configuration parameters for various response formats.
- Lightweight serial port terminal emulator.

## Usage
The SerialDevice instance may be called with a command string to send to the serial port and optional readback/terminator parameters.

```python
from sertools import SerialDevice
ser = SerialDevice()
ser('HELP')
```

## Development
```bash
git clone https://github.com/jbdoar/sertools
cd sertools
pip install -e .
```
