Add initial implementation of Python helpers and CLI tools

- Create .gitignore to exclude build artifacts
- Add README.md with project description and installation instructions
- Implement pyproject.toml for package metadata and script entry points
- Add console output helpers for command-line scripts
- Implement environment file loading functionality
- Add JSON file I/O helpers
- Create token decoder CLI for decoding JWT claims
- Implement serve-markdown CLI for serving Markdown files as HTML
This commit is contained in:
2026-09-06 19:15:54 +02:00
commit 9f56b3ee19
10 changed files with 629 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
__pycache__/
*.egg-info/
dist/
build/