| # Python | |
| __pycache__/ | |
| *.pyc | |
| *.pyo | |
| *.pyd | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| *.egg | |
| # Virtual environments | |
| .venv/ | |
| venv/ | |
| env/ | |
| # Environment variables (SENSITIVE - never commit) | |
| .env | |
| .env.local | |
| .env.production | |
| # IDE | |
| .idea/ | |
| .vscode/ | |
| *.swp | |
| *.swo | |
| *~ | |
| # OS | |
| .DS_Store | |
| Thumbs.db | |
| desktop.ini | |
| # Logs & temp | |
| *.log | |
| conn_test_log.txt | |
| conn_test_log_2.txt | |
| connection_test_output.txt | |
| # Test files | |
| test_report.pdf | |
| verify_api.py | |