All of the webhooks the website uses for updates
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

125 lignes
1.8 KiB

  1. *.json
  2. # Created by https://www.gitignore.io/api/python,virtualenv
  3. # Edit at https://www.gitignore.io/?templates=python,virtualenv
  4. ### Python ###
  5. # Byte-compiled / optimized / DLL files
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. build/
  14. develop-eggs/
  15. dist/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. wheels/
  25. pip-wheel-metadata/
  26. share/python-wheels/
  27. *.egg-info/
  28. .installed.cfg
  29. *.egg
  30. MANIFEST
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .nox/
  43. .coverage
  44. .coverage.*
  45. .cache
  46. nosetests.xml
  47. coverage.xml
  48. *.cover
  49. .hypothesis/
  50. .pytest_cache/
  51. # Translations
  52. *.mo
  53. *.pot
  54. # Scrapy stuff:
  55. .scrapy
  56. # Sphinx documentation
  57. docs/_build/
  58. # PyBuilder
  59. target/
  60. # pyenv
  61. .python-version
  62. # pipenv
  63. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  64. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  65. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  66. # install all needed dependencies.
  67. #Pipfile.lock
  68. # celery beat schedule file
  69. celerybeat-schedule
  70. # SageMath parsed files
  71. *.sage.py
  72. # Spyder project settings
  73. .spyderproject
  74. .spyproject
  75. # Rope project settings
  76. .ropeproject
  77. # Mr Developer
  78. .mr.developer.cfg
  79. .project
  80. .pydevproject
  81. # mkdocs documentation
  82. /site
  83. # mypy
  84. .mypy_cache/
  85. .dmypy.json
  86. dmypy.json
  87. # Pyre type checker
  88. .pyre/
  89. ### VirtualEnv ###
  90. # Virtualenv
  91. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  92. pyvenv.cfg
  93. .env
  94. .venv
  95. env/
  96. venv/
  97. ENV/
  98. env.bak/
  99. venv.bak/
  100. pip-selfcheck.json
  101. # End of https://www.gitignore.io/api/python,virtualenv