@@ -3,4 +3,160 @@ build/*
33dist /*
44* egg * /*
55* stop *
6- files.txt
6+ files.txt
7+
8+ # Created by https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
9+ # Edit at https://www.toptal.com/developers/gitignore?templates=python,jupyternotebooks
10+
11+ # ## JupyterNotebooks ###
12+ # gitignore template for Jupyter Notebooks
13+ # website: http://jupyter.org/
14+
15+ .ipynb_checkpoints
16+ * /.ipynb_checkpoints /*
17+
18+ # IPython
19+ profile_default /
20+ ipython_config.py
21+
22+ # Remove previous ipynb_checkpoints
23+ # git rm -r .ipynb_checkpoints/
24+
25+ # ## Python ###
26+ # Byte-compiled / optimized / DLL files
27+ __pycache__ /
28+ * .py [cod ]
29+ * $py.class
30+
31+ # C extensions
32+ * .so
33+
34+ # Distribution / packaging
35+ .Python
36+ build /
37+ develop-eggs /
38+ dist /
39+ downloads /
40+ eggs /
41+ .eggs /
42+ lib /
43+ lib64 /
44+ parts /
45+ sdist /
46+ var /
47+ wheels /
48+ share /python-wheels /
49+ * .egg-info /
50+ .installed.cfg
51+ * .egg
52+ MANIFEST
53+
54+ # PyInstaller
55+ # Usually these files are written by a python script from a template
56+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
57+ * .manifest
58+ * .spec
59+
60+ # Installer logs
61+ pip-log.txt
62+ pip-delete-this-directory.txt
63+
64+ # Unit test / coverage reports
65+ htmlcov /
66+ .tox /
67+ .nox /
68+ .coverage
69+ .coverage. *
70+ .cache
71+ nosetests.xml
72+ coverage.xml
73+ * .cover
74+ * .py,cover
75+ .hypothesis /
76+ .pytest_cache /
77+ cover /
78+
79+ # Translations
80+ * .mo
81+ * .pot
82+
83+ # Django stuff:
84+ * .log
85+ local_settings.py
86+ db.sqlite3
87+ db.sqlite3-journal
88+
89+ # Flask stuff:
90+ instance /
91+ .webassets-cache
92+
93+ # Scrapy stuff:
94+ .scrapy
95+
96+ # Sphinx documentation
97+ docs /_build /
98+
99+ # PyBuilder
100+ .pybuilder /
101+ target /
102+
103+ # Jupyter Notebook
104+
105+ # IPython
106+
107+ # pyenv
108+ # For a library or package, you might want to ignore these files since the code is
109+ # intended to run in multiple environments; otherwise, check them in:
110+ # .python-version
111+
112+ # pipenv
113+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
114+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
115+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
116+ # install all needed dependencies.
117+ # Pipfile.lock
118+
119+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
120+ __pypackages__ /
121+
122+ # Celery stuff
123+ celerybeat-schedule
124+ celerybeat.pid
125+
126+ # SageMath parsed files
127+ * .sage.py
128+
129+ # Environments
130+ .env
131+ .venv
132+ env /
133+ venv /
134+ ENV /
135+ env.bak /
136+ venv.bak /
137+
138+ # Spyder project settings
139+ .spyderproject
140+ .spyproject
141+
142+ # Rope project settings
143+ .ropeproject
144+
145+ # mkdocs documentation
146+ /site
147+
148+ # mypy
149+ .mypy_cache /
150+ .dmypy.json
151+ dmypy.json
152+
153+ # Pyre type checker
154+ .pyre /
155+
156+ # pytype static type analyzer
157+ .pytype /
158+
159+ # Cython debug symbols
160+ cython_debug /
161+
162+ # End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
0 commit comments