├── .github └── workflows │ ├── coverage.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── appeal ├── __init__.py ├── argument_grouping.py ├── cpp.py ├── text.py └── want_prints.py ├── pyproject.toml ├── resources ├── images │ ├── appeal.logo.png │ └── give.your.program.appeal.png └── links.txt └── tests ├── read_corpus ├── multiperky1.pky ├── multiperky2.pky ├── multiperky3.pky ├── perkytest1.pky ├── starvote_ballots_best_akali_skins.csv └── tomltest1.toml ├── test_all.py ├── test_read.py └── want_prints_test_corpus ├── README.md ├── commented.py └── uncommented.py /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | dist/ 3 | .coverage 4 | htmlcov/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/README.md -------------------------------------------------------------------------------- /appeal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/appeal/__init__.py -------------------------------------------------------------------------------- /appeal/argument_grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/appeal/argument_grouping.py -------------------------------------------------------------------------------- /appeal/cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/appeal/cpp.py -------------------------------------------------------------------------------- /appeal/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/appeal/text.py -------------------------------------------------------------------------------- /appeal/want_prints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/appeal/want_prints.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/images/appeal.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/resources/images/appeal.logo.png -------------------------------------------------------------------------------- /resources/images/give.your.program.appeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/resources/images/give.your.program.appeal.png -------------------------------------------------------------------------------- /resources/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/resources/links.txt -------------------------------------------------------------------------------- /tests/read_corpus/multiperky1.pky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/multiperky1.pky -------------------------------------------------------------------------------- /tests/read_corpus/multiperky2.pky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/multiperky2.pky -------------------------------------------------------------------------------- /tests/read_corpus/multiperky3.pky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/multiperky3.pky -------------------------------------------------------------------------------- /tests/read_corpus/perkytest1.pky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/perkytest1.pky -------------------------------------------------------------------------------- /tests/read_corpus/starvote_ballots_best_akali_skins.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/starvote_ballots_best_akali_skins.csv -------------------------------------------------------------------------------- /tests/read_corpus/tomltest1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/read_corpus/tomltest1.toml -------------------------------------------------------------------------------- /tests/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/test_all.py -------------------------------------------------------------------------------- /tests/test_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/test_read.py -------------------------------------------------------------------------------- /tests/want_prints_test_corpus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/want_prints_test_corpus/README.md -------------------------------------------------------------------------------- /tests/want_prints_test_corpus/commented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/want_prints_test_corpus/commented.py -------------------------------------------------------------------------------- /tests/want_prints_test_corpus/uncommented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larryhastings/appeal/HEAD/tests/want_prints_test_corpus/uncommented.py --------------------------------------------------------------------------------