Fix broken modification dates in Nextcloud folders
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.

272 lines
3.8 KiB

2 years ago
2 years ago
2 years ago
  1. # PyCharm data directory
  2. /.idea/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. pip-wheel-metadata/
  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. # Translations
  51. *.mo
  52. *.pot
  53. # Django stuff:
  54. *.log
  55. local_settings.py
  56. db.sqlite3
  57. db.sqlite3-journal
  58. # Flask stuff:
  59. instance/
  60. .webassets-cache
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. target/
  67. # Jupyter Notebook
  68. .ipynb_checkpoints
  69. # IPython
  70. profile_default/
  71. ipython_config.py
  72. # pyenv
  73. .python-version
  74. # pipenv
  75. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  76. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  77. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  78. # install all needed dependencies.
  79. #Pipfile.lock
  80. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  81. __pypackages__/
  82. # Celery stuff
  83. celerybeat-schedule
  84. celerybeat.pid
  85. # SageMath parsed files
  86. *.sage.py
  87. # Environments
  88. .env
  89. .venv
  90. env/
  91. venv/
  92. ENV/
  93. env.bak/
  94. venv.bak/
  95. # Spyder project settings
  96. .spyderproject
  97. .spyproject
  98. # Rope project settings
  99. .ropeproject
  100. # mkdocs documentation
  101. /site
  102. # mypy
  103. .mypy_cache/
  104. .dmypy.json
  105. dmypy.json
  106. # Pyre type checker
  107. .pyre/
  108. ### Python template
  109. # Byte-compiled / optimized / DLL files
  110. __pycache__/
  111. *.py[cod]
  112. *$py.class
  113. # C extensions
  114. *.so
  115. # Distribution / packaging
  116. .Python
  117. build/
  118. develop-eggs/
  119. dist/
  120. downloads/
  121. eggs/
  122. .eggs/
  123. lib/
  124. lib64/
  125. parts/
  126. sdist/
  127. var/
  128. wheels/
  129. share/python-wheels/
  130. *.egg-info/
  131. .installed.cfg
  132. *.egg
  133. MANIFEST
  134. # PyInstaller
  135. # Usually these files are written by a python script from a template
  136. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  137. *.manifest
  138. *.spec
  139. # Installer logs
  140. pip-log.txt
  141. pip-delete-this-directory.txt
  142. # Unit test / coverage reports
  143. htmlcov/
  144. .tox/
  145. .nox/
  146. .coverage
  147. .coverage.*
  148. .cache
  149. nosetests.xml
  150. coverage.xml
  151. *.cover
  152. *.py,cover
  153. .hypothesis/
  154. .pytest_cache/
  155. cover/
  156. # Translations
  157. *.mo
  158. *.pot
  159. # Django stuff:
  160. *.log
  161. local_settings.py
  162. db.sqlite3
  163. db.sqlite3-journal
  164. # Flask stuff:
  165. instance/
  166. .webassets-cache
  167. # Scrapy stuff:
  168. .scrapy
  169. # Sphinx documentation
  170. docs/_build/
  171. # PyBuilder
  172. .pybuilder/
  173. target/
  174. # Jupyter Notebook
  175. .ipynb_checkpoints
  176. # IPython
  177. profile_default/
  178. ipython_config.py
  179. # pyenv
  180. # For a library or package, you might want to ignore these files since the code is
  181. # intended to run in multiple environments; otherwise, check them in:
  182. # .python-version
  183. # pipenv
  184. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  185. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  186. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  187. # install all needed dependencies.
  188. #Pipfile.lock
  189. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  190. __pypackages__/
  191. # Celery stuff
  192. celerybeat-schedule
  193. celerybeat.pid
  194. # SageMath parsed files
  195. *.sage.py
  196. # Environments
  197. .env
  198. .venv
  199. env/
  200. venv/
  201. ENV/
  202. env.bak/
  203. venv.bak/
  204. # Spyder project settings
  205. .spyderproject
  206. .spyproject
  207. # Rope project settings
  208. .ropeproject
  209. # mkdocs documentation
  210. /site
  211. # mypy
  212. .mypy_cache/
  213. .dmypy.json
  214. dmypy.json
  215. # Pyre type checker
  216. .pyre/
  217. # pytype static type analyzer
  218. .pytype/
  219. # Cython debug symbols
  220. cython_debug/