1
+
2
+ # Created by https://www.gitignore.io/api/venv,python,pycharm,jupyternotebooks
3
+ # Edit at https://www.gitignore.io/?templates=venv,python,pycharm,jupyternotebooks
4
+
5
+ # ## JupyterNotebooks ###
6
+ # gitignore template for Jupyter Notebooks
7
+ # website: http://jupyter.org/
8
+
9
+ .ipynb_checkpoints
10
+ * /.ipynb_checkpoints /*
11
+
12
+ # IPython
13
+ profile_default /
14
+ ipython_config.py
15
+
16
+ # Remove previous ipynb_checkpoints
17
+ # git rm -r .ipynb_checkpoints/
18
+
19
+ # ## PyCharm ###
20
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
21
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
22
+
23
+ # User-specific stuff
24
+ .idea /** /workspace.xml
25
+ .idea /** /tasks.xml
26
+ .idea /** /usage.statistics.xml
27
+ .idea /** /dictionaries
28
+ .idea /** /shelf
29
+
30
+ # Generated files
31
+ .idea /** /contentModel.xml
32
+
33
+ # Sensitive or high-churn files
34
+ .idea /** /dataSources /
35
+ .idea /** /dataSources.ids
36
+ .idea /** /dataSources.local.xml
37
+ .idea /** /sqlDataSources.xml
38
+ .idea /** /dynamic.xml
39
+ .idea /** /uiDesigner.xml
40
+ .idea /** /dbnavigator.xml
41
+
42
+ # Gradle
43
+ .idea /** /gradle.xml
44
+ .idea /** /libraries
45
+
46
+ # Gradle and Maven with auto-import
47
+ # When using Gradle or Maven with auto-import, you should exclude module files,
48
+ # since they will be recreated, and may cause churn. Uncomment if using
49
+ # auto-import.
50
+ # .idea/modules.xml
51
+ # .idea/*.iml
52
+ # .idea/modules
53
+ # *.iml
54
+ # *.ipr
55
+
56
+ # CMake
57
+ cmake-build- * /
58
+
59
+ # Mongo Explorer plugin
60
+ .idea /** /mongoSettings.xml
61
+
62
+ # File-based project format
63
+ * .iws
64
+
65
+ # IntelliJ
66
+ out /
67
+
68
+ # mpeltonen/sbt-idea plugin
69
+ .idea_modules /
70
+
71
+ # JIRA plugin
72
+ atlassian-ide-plugin.xml
73
+
74
+ # Cursive Clojure plugin
75
+ .idea /replstate.xml
76
+
77
+ # Crashlytics plugin (for Android Studio and IntelliJ)
78
+ com_crashlytics_export_strings.xml
79
+ crashlytics.properties
80
+ crashlytics-build.properties
81
+ fabric.properties
82
+
83
+ # Editor-based Rest Client
84
+ .idea /httpRequests
85
+
86
+ # Android studio 3.1+ serialized cache file
87
+ .idea /caches /build_file_checksums.ser
88
+
89
+ # ## PyCharm Patch ###
90
+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
91
+
92
+ # *.iml
93
+ # modules.xml
94
+ # .idea/misc.xml
95
+ # *.ipr
96
+
97
+ # Sonarlint plugin
98
+ .idea /** /sonarlint /
99
+
100
+ # SonarQube Plugin
101
+ .idea /** /sonarIssues.xml
102
+
103
+ # Markdown Navigator plugin
104
+ .idea /** /markdown-navigator.xml
105
+ .idea /** /markdown-navigator /
106
+
107
+ # ## Python ###
108
+ # Byte-compiled / optimized / DLL files
109
+ __pycache__ /
110
+ * .py [cod ]
111
+ * $py.class
112
+
113
+ # C extensions
114
+ * .so
115
+
116
+ # Distribution / packaging
117
+ .Python
118
+ build /
119
+ develop-eggs /
120
+ dist /
121
+ downloads /
122
+ eggs /
123
+ .eggs /
124
+ lib /
125
+ lib64 /
126
+ parts /
127
+ sdist /
128
+ var /
129
+ wheels /
130
+ pip-wheel-metadata /
131
+ share /python-wheels /
132
+ * .egg-info /
133
+ .installed.cfg
134
+ * .egg
135
+ MANIFEST
136
+
137
+ # PyInstaller
138
+ # Usually these files are written by a python script from a template
139
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
140
+ * .manifest
141
+ * .spec
142
+
143
+ # Installer logs
144
+ pip-log.txt
145
+ pip-delete-this-directory.txt
146
+
147
+ # Unit test / coverage reports
148
+ htmlcov /
149
+ .tox /
150
+ .nox /
151
+ .coverage
152
+ .coverage. *
153
+ .cache
154
+ nosetests.xml
155
+ coverage.xml
156
+ * .cover
157
+ .hypothesis /
158
+ .pytest_cache /
159
+
160
+ # Translations
161
+ * .mo
162
+ * .pot
163
+
164
+ # Scrapy stuff:
165
+ .scrapy
166
+
167
+ # Sphinx documentation
168
+ docs /_build /
169
+
170
+ # PyBuilder
171
+ target /
172
+
173
+ # pyenv
174
+ .python-version
175
+
176
+ # pipenv
177
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
178
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
179
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
180
+ # install all needed dependencies.
181
+ # Pipfile.lock
182
+
183
+ # celery beat schedule file
184
+ celerybeat-schedule
185
+
186
+ # SageMath parsed files
187
+ * .sage.py
188
+
189
+ # Spyder project settings
190
+ .spyderproject
191
+ .spyproject
192
+
193
+ # Rope project settings
194
+ .ropeproject
195
+
196
+ # Mr Developer
197
+ .mr.developer.cfg
198
+ .project
199
+ .pydevproject
200
+
201
+ # mkdocs documentation
202
+ /site
203
+
204
+ # mypy
205
+ .mypy_cache /
206
+ .dmypy.json
207
+ dmypy.json
208
+
209
+ # Pyre type checker
210
+ .pyre /
211
+
212
+ # ## venv ###
213
+ # Virtualenv
214
+ # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
215
+ pyvenv.cfg
216
+ .env
217
+ .venv
218
+ env /
219
+ venv /
220
+ ENV /
221
+ env.bak /
222
+ venv.bak /
223
+ pip-selfcheck.json
224
+
225
+ # End of https://www.gitignore.io/api/venv,python,pycharm,jupyternotebooks
0 commit comments