sync_wiki.py is now deprecated in favor of token-authenticated in-memory publishing directly to the GitHub wiki. This change reflects a shift to e2e automation. The file remains as a fallback parachute. Also includes minor updates to .gitignore and wiki repo pointer.
65 lines
573 B
Plaintext
65 lines
573 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
env/
|
|
venv/
|
|
ENV/
|
|
|
|
# test data
|
|
2025.06.20/
|
|
|
|
# VSCode
|
|
.vscode/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment variables and secrets
|
|
.env
|
|
client_secrets.json
|
|
token.pickle
|
|
description_gen.py
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Jupyter Notebook checkpoints
|
|
.ipynb_checkpoints/
|
|
|
|
# Compiled C extensions
|
|
*.c
|
|
*.o
|
|
*.obj
|
|
*.dll
|
|
*.a
|
|
*.lib
|
|
*.exp
|
|
*.pdb
|
|
|
|
# Test and coverage
|
|
.coverage
|
|
.tox/
|
|
.nox/
|
|
.cache/
|
|
pytest_cache/
|
|
htmlcov/
|
|
|
|
# Distribution / packaging
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
MANIFEST
|
|
|
|
# Misc
|
|
*.bak
|
|
*.swp
|
|
*.tmp |