Les jeux de données que nous allons utilisés pour répondre à notre problématique
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

181 lines
2.5 KiB

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