8000
We read every piece of feedback, and take your input very seriously.
1 parent 9cd802f commit e0d223dCopy full SHA for e0d223d
.gitignore
@@ -0,0 +1,99 @@
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 Environment
24
+venv/
25
+ENV/
26
+env/
27
+.env
28
+.venv
29
+env.bak/
30
+venv.bak/
31
32
+# IDE
33
+.idea/
34
+.vscode/
35
+*.swp
36
+*.swo
37
+.DS_Store
38
39
+# Testing
40
+.coverage
41
+htmlcov/
42
+.tox/
43
+.nox/
44
+.pytest_cache/
45
+.coverage.*
46
+.cache
47
+nosetests.xml
48
+coverage.xml
49
+*.cover
50
+*.py,cover
51
+.hypothesis/
52
53
54
+# Distribution / packaging
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
+# Jupyter Notebook
73
+.ipynb_checkpoints
74
75
+# Logs
76
+*.log
77
+logs/
78
+log/
79
80
+# Local development settings
81
+.env.local
82
+.env.development.local
83
+.env.test.local
84
+.env.production.local
85
86
+# Google Cloud specific
87
+.gcloudignore
88
+.gcloudignore.local
89
90
+# Documentation
91
+docs/_build/
92
+site/
93
94
+# Misc
95
96
+Thumbs.db
97
+*.bak
98
+*.tmp
99
+*.temp