We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit a73b3d2Copy full SHA for a73b3d2
.gitignore
@@ -0,0 +1,35 @@
1
+# Python
2
+__pycache__/
3
+*.py[cod]
4
+*$py.class
5
+*.so
6
+.Python
7
+env/
8
+build/
9
+develop-eggs/
10
+dist/
11
+downloads/
12
+eggs/
13
+.eggs/
14
+lib/
15
+lib64/
16
+parts/
17
+sdist/
18
+var/
19
+*.egg-info/
20
+.installed.cfg
21
+*.egg
22
+
23
+# Virtual Environment
24
+venv/
25
+ENV/
26
27
+# IDE
28
+.idea/
29
+.vscode/
30
+*.swp
31
+*.swo
32
33
+# OS
34
+.DS_Store
35
+Thumbs.db
0 commit comments