Skip to content

Commit 3c41895

Browse files
committed
Python work
1 parent 129f9f9 commit 3c41895

16 files changed

Lines changed: 4783 additions & 0 deletions

File tree

.gitignore

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,100 @@ paket-files/
251251
.idea/
252252
*.sln.iml
253253

254+
255+
# =========================
256+
# PYTHON
257+
# =========================
258+
# Byte-compiled / optimized / DLL files
259+
__pycache__/
260+
*.py[cod]
261+
*$py.class
262+
263+
# C extensions
264+
*.so
265+
266+
# Distribution / packaging
267+
.Python
268+
env/
269+
build/
270+
develop-eggs/
271+
dist/
272+
downloads/
273+
eggs/
274+
.eggs/
275+
lib/
276+
lib64/
277+
parts/
278+
sdist/
279+
var/
280+
*.egg-info/
281+
.installed.cfg
282+
*.egg
283+
284+
# PyInstaller
285+
# Usually these files are written by a python script from a template
286+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
287+
*.manifest
288+
*.spec
289+
290+
# Installer logs
291+
pip-log.txt
292+
pip-delete-this-directory.txt
293+
294+
# Unit test / coverage reports
295+
htmlcov/
296+
.tox/
297+
.coverage
298+
.coverage.*
299+
.cache
300+
nosetests.xml
301+
coverage.xml
302+
*,cover
303+
.hypothesis/
304+
305+
# Translations
306+
*.mo
307+
*.pot
308+
309+
# Django stuff:
310+
*.log
311+
local_settings.py
312+
313+
# Flask stuff:
314+
instance/
315+
.webassets-cache
316+
317+
# Scrapy stuff:
318+
.scrapy
319+
320+
# Sphinx documentation
321+
docs/_build/
322+
323+
# PyBuilder
324+
target/
325+
326+
# IPython Notebook
327+
.ipynb_checkpoints
328+
329+
# pyenv
330+
.python-version
331+
332+
# celery beat schedule file
333+
celerybeat-schedule
334+
335+
# dotenv
336+
.env
337+
338+
# virtualenv
339+
venv/
340+
ENV/
341+
342+
# Spyder project settings
343+
.spyderproject
344+
345+
# Rope project settings
346+
.ropeproject
347+
254348
# =========================
255349
# Operating System Files
256350
# =========================

0 commit comments

Comments
 (0)