├── .codeclimate.yml ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── dev-requirements.txt ├── docs ├── api.rst ├── conf.py ├── getting_started.rst └── index.rst ├── examples ├── http.py ├── pyserial.py └── unicode.py ├── setup.cfg ├── setup.py ├── streamexpect.py ├── test ├── __init__.py └── test_streamexpect.py └── tox.ini /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/README.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | mccabe 3 | pep8-naming 4 | sphinx 5 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/docs/index.rst -------------------------------------------------------------------------------- /examples/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/examples/http.py -------------------------------------------------------------------------------- /examples/pyserial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/examples/pyserial.py -------------------------------------------------------------------------------- /examples/unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/examples/unicode.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/setup.py -------------------------------------------------------------------------------- /streamexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/streamexpect.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_streamexpect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/test/test_streamexpect.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digidotcom/python-streamexpect/HEAD/tox.ini --------------------------------------------------------------------------------