| # Python cache | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| # Virtual environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| .env.local | |
| *.log | |
| # Git | |
| .git/ | |
| .gitignore | |
| # Documentation | |
| *.md | |
| ARCHITECTURE.md | |
| README.md | |
| # Test files | |
| pytest/ | |
| test_*.py | |
| *_test.py | |
| # Temporary files | |
| *.tmp | |
| .temp/ | |
| # Exclude old bot versions | |
| telegram_json_bot.py | |
| simple_api.py | |
| run_all.bat | |