We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbbde2e commit 591506fCopy full SHA for 591506f
1 file changed
.gitignore
@@ -0,0 +1,49 @@
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
28
+# IDE
29
+.vscode/
30
+.idea/
31
+*.swp
32
+*.swo
33
+*~
34
35
+# OS
36
+.DS_Store
37
+Thumbs.db
38
39
+# Jupyter
40
+.ipynb_checkpoints
41
42
+# Testing
43
+.pytest_cache/
44
+.coverage
45
+htmlcov/
46
47
+# Temporary files
48
+*.tmp
49
+*.bak
0 commit comments