Skip to content

Commit 0328d69

Browse files
committed
add .gitignore file using python, pycharm, jupyter
1 parent da510ec commit 0328d69

File tree

1 file changed

+301
-0
lines changed

1 file changed

+301
-0
lines changed

.gitignore

Lines changed: 301 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/python,pycharm,jupyternotebooks
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,pycharm,jupyternotebooks
3+
4+
### JupyterNotebooks ###
5+
# gitignore template for Jupyter Notebooks
6+
# website: http://jupyter.org/
7+
8+
.ipynb_checkpoints
9+
*/.ipynb_checkpoints/*
10+
11+
# IPython
12+
profile_default/
13+
ipython_config.py
14+
15+
# Remove previous ipynb_checkpoints
16+
# git rm -r .ipynb_checkpoints/
17+
18+
### PyCharm ###
19+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
20+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
21+
22+
# User-specific stuff
23+
.idea/
24+
.idea/**/workspace.xml
25+
.idea/**/tasks.xml
26+
.idea/**/usage.statistics.xml
27+
.idea/**/dictionaries
28+
.idea/**/shelf
29+
30+
# AWS User-specific
31+
.idea/**/aws.xml
32+
33+
# Generated files
34+
.idea/**/contentModel.xml
35+
36+
# Sensitive or high-churn files
37+
.idea/**/dataSources/
38+
.idea/**/dataSources.ids
39+
.idea/**/dataSources.local.xml
40+
.idea/**/sqlDataSources.xml
41+
.idea/**/dynamic.xml
42+
.idea/**/uiDesigner.xml
43+
.idea/**/dbnavigator.xml
44+
45+
# Gradle
46+
.idea/**/gradle.xml
47+
.idea/**/libraries
48+
49+
# Gradle and Maven with auto-import
50+
# When using Gradle or Maven with auto-import, you should exclude module files,
51+
# since they will be recreated, and may cause churn. Uncomment if using
52+
# auto-import.
53+
# .idea/artifacts
54+
# .idea/compiler.xml
55+
# .idea/jarRepositories.xml
56+
# .idea/modules.xml
57+
# .idea/*.iml
58+
# .idea/modules
59+
# *.iml
60+
# *.ipr
61+
62+
# CMake
63+
cmake-build-*/
64+
65+
# Mongo Explorer plugin
66+
.idea/**/mongoSettings.xml
67+
68+
# File-based project format
69+
*.iws
70+
71+
# IntelliJ
72+
out/
73+
74+
# mpeltonen/sbt-idea plugin
75+
.idea_modules/
76+
77+
# JIRA plugin
78+
atlassian-ide-plugin.xml
79+
80+
# Cursive Clojure plugin
81+
.idea/replstate.xml
82+
83+
# SonarLint plugin
84+
.idea/sonarlint/
85+
86+
# Crashlytics plugin (for Android Studio and IntelliJ)
87+
com_crashlytics_export_strings.xml
88+
crashlytics.properties
89+
crashlytics-build.properties
90+
fabric.properties
91+
92+
# Editor-based Rest Client
93+
.idea/httpRequests
94+
95+
# Android studio 3.1+ serialized cache file
96+
.idea/caches/build_file_checksums.ser
97+
98+
### PyCharm Patch ###
99+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
100+
101+
# *.iml
102+
# modules.xml
103+
# .idea/misc.xml
104+
# *.ipr
105+
106+
# Sonarlint plugin
107+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
108+
.idea/**/sonarlint/
109+
110+
# SonarQube Plugin
111+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
112+
.idea/**/sonarIssues.xml
113+
114+
# Markdown Navigator plugin
115+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
116+
.idea/**/markdown-navigator.xml
117+
.idea/**/markdown-navigator-enh.xml
118+
.idea/**/markdown-navigator/
119+
120+
# Cache file creation bug
121+
# See https://youtrack.jetbrains.com/issue/JBR-2257
122+
.idea/$CACHE_FILE$
123+
124+
# CodeStream plugin
125+
# https://plugins.jetbrains.com/plugin/12206-codestream
126+
.idea/codestream.xml
127+
128+
# Azure Toolkit for IntelliJ plugin
129+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
130+
.idea/**/azureSettings.xml
131+
132+
### Python ###
133+
# Byte-compiled / optimized / DLL files
134+
__pycache__/
135+
*.py[cod]
136+
*$py.class
137+
138+
# C extensions
139+
*.so
140+
141+
# Distribution / packaging
142+
.Python
143+
build/
144+
develop-eggs/
145+
dist/
146+
downloads/
147+
eggs/
148+
.eggs/
149+
lib/
150+
lib64/
151+
parts/
152+
sdist/
153+
var/
154+
wheels/
155+
share/python-wheels/
156+
*.egg-info/
157+
.installed.cfg
158+
*.egg
159+
MANIFEST
160+
161+
# PyInstaller
162+
# Usually these files are written by a python script from a template
163+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
164+
*.manifest
165+
*.spec
166+
167+
# Installer logs
168+
pip-log.txt
169+
pip-delete-this-directory.txt
170+
171+
# Unit test / coverage reports
172+
htmlcov/
173+
.tox/
174+
.nox/
175+
.coverage
176+
.coverage.*
177+
.cache
178+
nosetests.xml
179+
coverage.xml
180+
*.cover
181+
*.py,cover
182+
.hypothesis/
183+
.pytest_cache/
184+
cover/
185+
186+
# Translations
187+
*.mo
188+
*.pot
189+
190+
# Django stuff:
191+
*.log
192+
local_settings.py
193+
db.sqlite3
194+
db.sqlite3-journal
195+
196+
# Flask stuff:
197+
instance/
198+
.webassets-cache
199+
200+
# Scrapy stuff:
201+
.scrapy
202+
203+
# Sphinx documentation
204+
docs/_build/
205+
206+
# PyBuilder
207+
.pybuilder/
208+
target/
209+
210+
# Jupyter Notebook
211+
212+
# IPython
213+
214+
# pyenv
215+
# For a library or package, you might want to ignore these files since the code is
216+
# intended to run in multiple environments; otherwise, check them in:
217+
# .python-version
218+
219+
# pipenv
220+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
221+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
222+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
223+
# install all needed dependencies.
224+
#Pipfile.lock
225+
226+
# poetry
227+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
228+
# This is especially recommended for binary packages to ensure reproducibility, and is more
229+
# commonly ignored for libraries.
230+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
231+
#poetry.lock
232+
233+
# pdm
234+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
235+
#pdm.lock
236+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
237+
# in version control.
238+
# https://pdm.fming.dev/#use-with-ide
239+
.pdm.toml
240+
241+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
242+
__pypackages__/
243+
244+
# Celery stuff
245+
celerybeat-schedule
246+
celerybeat.pid
247+
248+
# SageMath parsed files
249+
*.sage.py
250+
251+
# Environments
252+
.env
253+
.venv
254+
env/
255+
venv/
256+
ENV/
257+
env.bak/
258+
venv.bak/
259+
260+
# Spyder project settings
261+
.spyderproject
262+
.spyproject
263+
264+
# Rope project settings
265+
.ropeproject
266+
267+
# mkdocs documentation
268+
/site
269+
270+
# mypy
271+
.mypy_cache/
272+
.dmypy.json
273+
dmypy.json
274+
275+
# Pyre type checker
276+
.pyre/
277+
278+
# pytype static type analyzer
279+
.pytype/
280+
281+
# Cython debug symbols
282+
cython_debug/
283+
284+
# PyCharm
285+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
286+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
287+
# and can be added to the global gitignore or merged into this file. For a more nuclear
288+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
289+
#.idea/
290+
291+
### Python Patch ###
292+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
293+
poetry.toml
294+
295+
# ruff
296+
.ruff_cache/
297+
298+
# LSP config files
299+
pyrightconfig.json
300+
301+
# End of https://www.toptal.com/developers/gitignore/api/python,pycharm,jupyternotebooks

0 commit comments

Comments
 (0)