gitextract_eotr679u/ ├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── consecution/ │ ├── .coverage │ ├── __init__.py │ ├── nodes.py │ ├── pipeline.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── nodes_tests.py │ │ ├── pipeline_tests.py │ │ ├── testing_helpers.py │ │ └── utils_tests.py │ └── utils.py ├── docker/ │ ├── Dockerfile │ ├── docker_build.sh │ ├── docker_run.sh │ └── simple_example.py ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── ref/ │ │ └── consecution.rst │ └── toc.rst ├── pandashells.md ├── publish.py ├── sample_data.csv ├── setup.cfg └── setup.py