File tree Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Expand file tree Collapse file tree 1 file changed +64
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Python
2
+ __pycache__ /
3
+ * .py [cod ]
4
+ * $py.class
5
+ * .so
6
+ .Python
7
+ build /
8
+ develop-eggs /
9
+ dist /
10
+ downloads /
11
+ eggs /
12
+ .eggs /
13
+ lib /
14
+ lib64 /
15
+ parts /
16
+ sdist /
17
+ var /
18
+ wheels /
19
+ * .egg-info /
20
+ .installed.cfg
21
+ * .egg
22
+
23
+ # Virtual Environments
24
+ venv /
25
+ env /
26
+ ENV /
27
+ .env
28
+ .venv
29
+ env.bak /
30
+ venv.bak /
31
+
32
+ # Jupyter Notebook
33
+ .ipynb_checkpoints
34
+
35
+ # IDE specific files
36
+ .idea /
37
+ .vscode /
38
+ * .swp
39
+ * .swo
40
+ .DS_Store
41
+
42
+ # Streamlit
43
+ .streamlit /secrets.toml
44
+
45
+ # Log files
46
+ * .log
47
+
48
+ # Database files
49
+ * .db
50
+ * .sqlite3
51
+
52
+ # Local development configuration
53
+ config.local.py
54
+
55
+ # Testing
56
+ .coverage
57
+ htmlcov /
58
+ .pytest_cache /
59
+
60
+ # Package specific
61
+ .peptacular /
62
+
63
+ # Temporary files
64
+ * .tmp
You can’t perform that action at this time.
0 commit comments