A kind of initial commit

This commit is contained in:
heboba
2026-02-26 19:33:05 +00:00
commit 9ab125b1a6
37 changed files with 3053 additions and 0 deletions

50
.gitignore vendored Normal file
View File

@@ -0,0 +1,50 @@
# Python bytecode / caches
__pycache__/
*.py[cod]
*.pyo
*.pyd
# Test / tooling caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pyre/
.hypothesis/
# Coverage
.coverage
.coverage.*
htmlcov/
# Build artifacts
build/
dist/
*.egg-info/
.eggs/
# Virtual environments
.venv/
venv/
env/
ENV/
# Local environment / secrets
.env
.env.*
!.env.example
# Local runtime data
data/
# Logs
*.log
# Editors / IDE
.idea/
.vscode/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db