# Ignore compiled Python files *.pyc *.pyo __pycache__/ # Ignore local development settings .env # Ignore the virtual environment directory venv/ # Ignore the pipenv virtual environment Pipfile Pipfile.lock # Ignore generated files *.pyc *.pyo *.pyd *.so *.egg-info/ dist/ build/ *.egg # Ignore IDE and editor files .idea/ .vscode/ *.sublime-project *.sublime-workspace # Ignore system-specific files .DS_Store Thumbs.db # Ignore logs and other generated data logs/ *.log # Ignore any sensitive or private information config.ini secrets.json # Ignore cache and temporary files *.swp *.swo *.bak *.cache *.tmp # Ignore dependency directories lib/ libs/