简化版的mastodon web client
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.

147 lines
2.1 KiB

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