├── .github └── workflows │ └── build-and-test.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── cmake ├── get_lib_repo_local.cmake ├── update_lib_repo_ci.cmake └── update_lib_repo_local.cmake ├── config └── templates.json ├── dodo.py ├── pyproject.toml ├── test ├── test_tk205_process.py └── test_tk205_unit.py ├── tk205 ├── __init__.py ├── cli.py ├── file_io.py ├── util.py └── xlsx.py ├── uv.lock └── web ├── markdown-content ├── about.md ├── examples.md ├── schema.md ├── templates.md └── tk205.md ├── templates ├── about_template.html ├── base.html ├── examples_template.html ├── header_template.html ├── schema_template.html ├── templates_template.html └── tk205_template.html └── web-content.py /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/README.md -------------------------------------------------------------------------------- /cmake/get_lib_repo_local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/cmake/get_lib_repo_local.cmake -------------------------------------------------------------------------------- /cmake/update_lib_repo_ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/cmake/update_lib_repo_ci.cmake -------------------------------------------------------------------------------- /cmake/update_lib_repo_local.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/cmake/update_lib_repo_local.cmake -------------------------------------------------------------------------------- /config/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/config/templates.json -------------------------------------------------------------------------------- /dodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/dodo.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/test_tk205_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/test/test_tk205_process.py -------------------------------------------------------------------------------- /test/test_tk205_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/test/test_tk205_unit.py -------------------------------------------------------------------------------- /tk205/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/tk205/__init__.py -------------------------------------------------------------------------------- /tk205/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/tk205/cli.py -------------------------------------------------------------------------------- /tk205/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/tk205/file_io.py -------------------------------------------------------------------------------- /tk205/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/tk205/util.py -------------------------------------------------------------------------------- /tk205/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/tk205/xlsx.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/uv.lock -------------------------------------------------------------------------------- /web/markdown-content/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/markdown-content/about.md -------------------------------------------------------------------------------- /web/markdown-content/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/markdown-content/examples.md -------------------------------------------------------------------------------- /web/markdown-content/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/markdown-content/schema.md -------------------------------------------------------------------------------- /web/markdown-content/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/markdown-content/templates.md -------------------------------------------------------------------------------- /web/markdown-content/tk205.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/markdown-content/tk205.md -------------------------------------------------------------------------------- /web/templates/about_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/about_template.html -------------------------------------------------------------------------------- /web/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/base.html -------------------------------------------------------------------------------- /web/templates/examples_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/examples_template.html -------------------------------------------------------------------------------- /web/templates/header_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/header_template.html -------------------------------------------------------------------------------- /web/templates/schema_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/schema_template.html -------------------------------------------------------------------------------- /web/templates/templates_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/templates_template.html -------------------------------------------------------------------------------- /web/templates/tk205_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/templates/tk205_template.html -------------------------------------------------------------------------------- /web/web-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open205/toolkit-205/HEAD/web/web-content.py --------------------------------------------------------------------------------