├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── setup.cfg ├── setup.py ├── simplepipe.py └── test_simplepipe.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/setup.py -------------------------------------------------------------------------------- /simplepipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/simplepipe.py -------------------------------------------------------------------------------- /test_simplepipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasantony/simplepipe/HEAD/test_simplepipe.py --------------------------------------------------------------------------------