# Ignore all files in the bin directory and data directory except for the .gitkeep file
bin/*
!bin/.gitkeep
data/*
!data/.gitkeep

### Python ###
*.pyc
*.pyo
*.pyd
__pycache__/
.venv

# vscode
.vscode/
