├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .pre-commit-config.yaml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── bat_pager_sample.png ├── cinema.csv ├── create_demo.sh ├── demo.svg ├── people.csv ├── population.csv ├── staff.csv ├── staff.json ├── staff.jsonlines.txt ├── staff.txt ├── staff.xml ├── view_sample1.png ├── view_sample2.png └── view_sample3.png ├── pypipe.py ├── pyproject.toml ├── tests ├── __init__.py ├── data │ ├── expect │ │ ├── ppp_csv_1.txt │ │ ├── ppp_csv_2.txt │ │ ├── ppp_csv_3.txt │ │ ├── ppp_csv_4.txt │ │ ├── ppp_line_1.txt │ │ ├── ppp_line_2.txt │ │ ├── ppp_line_3.txt │ │ ├── ppp_line_4.txt │ │ ├── ppp_rec_1.txt │ │ ├── ppp_rec_10.txt │ │ ├── ppp_rec_11.txt │ │ ├── ppp_rec_12.txt │ │ ├── ppp_rec_13.txt │ │ ├── ppp_rec_14.txt │ │ ├── ppp_rec_15.txt │ │ ├── ppp_rec_16.txt │ │ ├── ppp_rec_17.txt │ │ ├── ppp_rec_18.txt │ │ ├── ppp_rec_19.txt │ │ ├── ppp_rec_2.txt │ │ ├── ppp_rec_20.txt │ │ ├── ppp_rec_3.txt │ │ ├── ppp_rec_4.txt │ │ ├── ppp_rec_5.txt │ │ ├── ppp_rec_6.txt │ │ ├── ppp_rec_7.txt │ │ ├── ppp_rec_8.txt │ │ ├── ppp_rec_9.txt │ │ ├── ppp_text_1.txt │ │ ├── ppp_text_2.txt │ │ ├── ppp_text_3.txt │ │ ├── ppp_text_4.txt │ │ └── ppp_text_5.txt │ └── input │ │ ├── echo_line_1.txt │ │ ├── echo_line_2.txt │ │ ├── echo_rec_1.txt │ │ ├── echo_rec_2.txt │ │ ├── echo_rec_3.txt │ │ ├── echo_rec_4.txt │ │ ├── staff.csv │ │ ├── staff.json │ │ ├── staff.jsonlines.txt │ │ ├── staff.txt │ │ └── staff.xml └── test_pypipe_examples.py └── wasmer.toml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "markdown.extension.toc.levels": "1..2" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/README.md -------------------------------------------------------------------------------- /docs/bat_pager_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/bat_pager_sample.png -------------------------------------------------------------------------------- /docs/cinema.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/cinema.csv -------------------------------------------------------------------------------- /docs/create_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/create_demo.sh -------------------------------------------------------------------------------- /docs/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/demo.svg -------------------------------------------------------------------------------- /docs/people.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/people.csv -------------------------------------------------------------------------------- /docs/population.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/population.csv -------------------------------------------------------------------------------- /docs/staff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/staff.csv -------------------------------------------------------------------------------- /docs/staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/staff.json -------------------------------------------------------------------------------- /docs/staff.jsonlines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/staff.jsonlines.txt -------------------------------------------------------------------------------- /docs/staff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/staff.txt -------------------------------------------------------------------------------- /docs/staff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/staff.xml -------------------------------------------------------------------------------- /docs/view_sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/view_sample1.png -------------------------------------------------------------------------------- /docs/view_sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/view_sample2.png -------------------------------------------------------------------------------- /docs/view_sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/docs/view_sample3.png -------------------------------------------------------------------------------- /pypipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/pypipe.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_csv_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_csv_1.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_csv_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_csv_2.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_csv_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_csv_3.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_csv_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_csv_4.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_line_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_line_1.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_line_2.txt: -------------------------------------------------------------------------------- 1 | Simba 2 | Dumbo 3 | George 4 | Pooh 5 | Bob 6 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_line_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_line_3.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_line_4.txt: -------------------------------------------------------------------------------- 1 | https github.com /bugen/pypipe 2 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_1.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_10.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_11.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_12.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_13.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_14.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_15.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_16.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_17.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_18.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_19.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_2.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_20.txt: -------------------------------------------------------------------------------- 1 | TOTAL WEIGHT 4271 2 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_3.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_4.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_5.txt: -------------------------------------------------------------------------------- 1 | Name 2 | Simba 3 | Dumbo 4 | George 5 | Pooh 6 | Bob 7 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_6.txt: -------------------------------------------------------------------------------- 1 | CCC 2 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_7.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_8.txt: -------------------------------------------------------------------------------- 1 | 1000 2 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_rec_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_rec_9.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_text_1.txt: -------------------------------------------------------------------------------- 1 | 231 2 | -------------------------------------------------------------------------------- /tests/data/expect/ppp_text_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_text_2.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_text_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_text_3.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_text_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/expect/ppp_text_4.txt -------------------------------------------------------------------------------- /tests/data/expect/ppp_text_5.txt: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /tests/data/input/echo_line_1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | -------------------------------------------------------------------------------- /tests/data/input/echo_line_2.txt: -------------------------------------------------------------------------------- 1 | https://github.com/bugen/pypipe 2 | -------------------------------------------------------------------------------- /tests/data/input/echo_rec_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/echo_rec_1.txt -------------------------------------------------------------------------------- /tests/data/input/echo_rec_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/echo_rec_2.txt -------------------------------------------------------------------------------- /tests/data/input/echo_rec_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/echo_rec_3.txt -------------------------------------------------------------------------------- /tests/data/input/echo_rec_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/echo_rec_4.txt -------------------------------------------------------------------------------- /tests/data/input/staff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/staff.csv -------------------------------------------------------------------------------- /tests/data/input/staff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/staff.json -------------------------------------------------------------------------------- /tests/data/input/staff.jsonlines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/staff.jsonlines.txt -------------------------------------------------------------------------------- /tests/data/input/staff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/staff.txt -------------------------------------------------------------------------------- /tests/data/input/staff.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/data/input/staff.xml -------------------------------------------------------------------------------- /tests/test_pypipe_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/tests/test_pypipe_examples.py -------------------------------------------------------------------------------- /wasmer.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugen/pypipe/HEAD/wasmer.toml --------------------------------------------------------------------------------