Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 462 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 462 Bytes

Introduction

This is like pexpect, but it will work with serial port that you pass it. You are reponsible for opening and close the serial port. This allows you to use Pexpect with Serial port which pyserial supports.

Usage

import serial
from pexpect_serial import SerialSpawn

with serial.Serial('COM1', 115200, timeout=0) as ser:
    ss = SerialSpawn(ser)
    ss.sendline('start')
    ss.expect('done')

License

MIT