├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── examples ├── change_min_block_size.py ├── named_markers.py ├── parsing_files.py ├── pre_processed_template.py ├── save_open_dump_load.py ├── simple_example.py └── strings_with_markers_as_template.py ├── requirements └── development.txt ├── run-tests.sh ├── setup.py ├── templater.c ├── templater.py └── tests ├── test_Templater.py ├── test_create_template.py └── test_parser.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.sw[a-z] 3 | *.pyc 4 | build/ 5 | reg_settings* 6 | _templater.so 7 | .coverage 8 | -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/README.rst -------------------------------------------------------------------------------- /examples/change_min_block_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/change_min_block_size.py -------------------------------------------------------------------------------- /examples/named_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/named_markers.py -------------------------------------------------------------------------------- /examples/parsing_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/parsing_files.py -------------------------------------------------------------------------------- /examples/pre_processed_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/pre_processed_template.py -------------------------------------------------------------------------------- /examples/save_open_dump_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/save_open_dump_load.py -------------------------------------------------------------------------------- /examples/simple_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/simple_example.py -------------------------------------------------------------------------------- /examples/strings_with_markers_as_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/examples/strings_with_markers_as_template.py -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/requirements/development.txt -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/run-tests.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/setup.py -------------------------------------------------------------------------------- /templater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/templater.c -------------------------------------------------------------------------------- /templater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/templater.py -------------------------------------------------------------------------------- /tests/test_Templater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/tests/test_Templater.py -------------------------------------------------------------------------------- /tests/test_create_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/tests/test_create_template.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turicas/templater/HEAD/tests/test_parser.py --------------------------------------------------------------------------------