Helpers to authenticate and programmatically use external websites.
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.

161 lines
3.0 KiB

1 year ago
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. *.py,cover
  45. .hypothesis/
  46. .pytest_cache/
  47. cover/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. flask_session/
  59. .webassets-cache
  60. # Scrapy stuff:
  61. .scrapy
  62. # Sphinx documentation
  63. docs/_build/
  64. # PyBuilder
  65. .pybuilder/
  66. target/
  67. # Jupyter Notebook
  68. .ipynb_checkpoints
  69. # IPython
  70. profile_default/
  71. ipython_config.py
  72. # pyenv
  73. # For a library or package, you might want to ignore these files since the code is
  74. # intended to run in multiple environments; otherwise, check them in:
  75. # .python-version
  76. # pipenv
  77. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  78. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  79. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  80. # install all needed dependencies.
  81. #Pipfile.lock
  82. # poetry
  83. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  84. # This is especially recommended for binary packages to ensure reproducibility, and is more
  85. # commonly ignored for libraries.
  86. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  87. #poetry.lock
  88. # pdm
  89. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  90. #pdm.lock
  91. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  92. # in version control.
  93. # https://pdm.fming.dev/#use-with-ide
  94. .pdm.toml
  95. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  96. __pypackages__/
  97. # Celery stuff
  98. celerybeat-schedule
  99. celerybeat.pid
  100. # SageMath parsed files
  101. *.sage.py
  102. # Environments
  103. .env
  104. .venv
  105. env/
  106. venv/
  107. ENV/
  108. env.bak/
  109. venv.bak/
  110. # Spyder project settings
  111. .spyderproject
  112. .spyproject
  113. # Rope project settings
  114. .ropeproject
  115. # mkdocs documentation
  116. /site
  117. # mypy
  118. .mypy_cache/
  119. .dmypy.json
  120. dmypy.json
  121. # Pyre type checker
  122. .pyre/
  123. # pytype static type analyzer
  124. .pytype/
  125. # Cython debug symbols
  126. cython_debug/
  127. # PyCharm
  128. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  129. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  130. # and can be added to the global gitignore or merged into this file. For a more nuclear
  131. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  132. #.idea/