/ .gitignore
.gitignore
 1  # Python
 2  __pycache__/
 3  *.py[cod]
 4  *$py.class
 5  *.so
 6  .Python
 7  env/
 8  venv/
 9  ENV/
10  build/
11  develop-eggs/
12  dist/
13  downloads/
14  eggs/
15  .eggs/
16  lib/
17  lib64/
18  parts/
19  sdist/
20  var/
21  wheels/
22  *.egg-info/
23  .installed.cfg
24  *.egg
25  
26  # Environment
27  .env
28  .env.local
29  
30  # IDE
31  .vscode/
32  .idea/
33  *.swp
34  *.swo
35  
36  # Testing
37  .pytest_cache/
38  .coverage
39  htmlcov/
40  
41  # Vercel
42  .vercel
43  
44  # OS
45  .DS_Store
46  Thumbs.db
47  
48  # Temporary files
49  *.tmp
50  *.bak
51  *.swp
52  *~
53  
54  # Internal planning and documentation (exclude from public repo)
55  internal/