69 lines
751 B
Plaintext
69 lines
751 B
Plaintext
# --- Python virtual envs ---
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# --- Telethon session files (SQLite) ---
|
|
# keep your login session out of git
|
|
*.session
|
|
*.session-*
|
|
*session-*
|
|
*-journal
|
|
*-wal
|
|
*-shm
|
|
|
|
# --- Secrets / environment ---
|
|
.env
|
|
.env.*
|
|
.envrc
|
|
.direnv/
|
|
|
|
# --- Python bytecode & caches ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyd
|
|
*.pyo
|
|
*.so
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
htmlcov/
|
|
|
|
# --- Packaging artifacts ---
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# --- Editors / IDEs ---
|
|
.vscode/ # VSCodium/VS Code settings
|
|
*.code-workspace
|
|
.idea/
|
|
.history/
|
|
|
|
# --- OS cruft ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# --- Logs & temp files ---
|
|
*.log
|
|
*.tmp
|
|
*.temp
|
|
*~
|
|
.#*
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.bak
|
|
_*
|
|
._*
|
|
|
|
# --- Exports ---
|
|
members.*
|
|
export.*
|