We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8369255 commit 034ccfdCopy full SHA for 034ccfd
1 file changed
.gitignore
@@ -0,0 +1,68 @@
1
+# Python
2
+__pycache__/
3
+*.py[cod]
4
+*$py.class
5
+*.so
6
+.Python
7
+
8
+# Distribution / packaging
9
+build/
10
+develop-eggs/
11
+dist/
12
+downloads/
13
+eggs/
14
+.eggs/
15
+lib/
16
+lib64/
17
+parts/
18
+sdist/
19
+var/
20
+wheels/
21
+pip-wheel-metadata/
22
+share/python-wheels/
23
+*.egg-info/
24
+.installed.cfg
25
+*.egg
26
+MANIFEST
27
28
+# PyInstaller
29
+*.manifest
30
+*.spec
31
32
+# Unit test / coverage reports
33
+.pytest_cache/
34
+.coverage
35
+.coverage.*
36
+.cache
37
+htmlcov/
38
+.tox/
39
+.nox/
40
+coverage/
41
+*.cover
42
+*.py,cover
43
+.hypothesis/
44
45
+# Virtual environments
46
+.env
47
+.venv
48
+env/
49
+venv/
50
+ENV/
51
+env.bak/
52
+venv.bak/
53
54
+# IDEs
55
+.vscode/
56
+.idea/
57
+*.swp
58
+*.swo
59
+*~
60
61
+# OS
62
+.DS_Store
63
+Thumbs.db
64
65
+# Project specific
66
+snapshot_*.json
67
+*.log
68
0 commit comments