.gitignore 2.3 KB

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