Tool to sync or backup data
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.

.gitignore 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. config.py
  2. # ---> Eclipse
  3. .project
  4. .pydevproject
  5. .settings
  6. # ---> Linux
  7. *~
  8. # temporary files which can be created if a process still has a handle open of a deleted file
  9. .fuse_hidden*
  10. # KDE directory preferences
  11. .directory
  12. # Linux trash folder which might appear on any partition or disk
  13. .Trash-*
  14. # .nfs files are created when an open file is removed but is still being accessed
  15. .nfs*
  16. # ---> Python
  17. # Byte-compiled / optimized / DLL files
  18. __pycache__/
  19. *.py[cod]
  20. *$py.class
  21. # C extensions
  22. *.so
  23. # Distribution / packaging
  24. .Python
  25. build/
  26. develop-eggs/
  27. dist/
  28. downloads/
  29. eggs/
  30. .eggs/
  31. lib/
  32. lib64/
  33. parts/
  34. sdist/
  35. var/
  36. wheels/
  37. *.egg-info/
  38. .installed.cfg
  39. *.egg
  40. MANIFEST
  41. # PyInstaller
  42. # Usually these files are written by a python script from a template
  43. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  44. *.manifest
  45. *.spec
  46. # Installer logs
  47. pip-log.txt
  48. pip-delete-this-directory.txt
  49. # Unit test / coverage reports
  50. htmlcov/
  51. .tox/
  52. .nox/
  53. .coverage
  54. .coverage.*
  55. .cache
  56. nosetests.xml
  57. coverage.xml
  58. *.cover
  59. .hypothesis/
  60. .pytest_cache/
  61. # Translations
  62. *.mo
  63. *.pot
  64. # Django stuff:
  65. *.log
  66. local_settings.py
  67. db.sqlite3
  68. # Flask stuff:
  69. instance/
  70. .webassets-cache
  71. # Scrapy stuff:
  72. .scrapy
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. target/
  77. # Jupyter Notebook
  78. .ipynb_checkpoints
  79. # IPython
  80. profile_default/
  81. ipython_config.py
  82. # pyenv
  83. .python-version
  84. # celery beat schedule file
  85. celerybeat-schedule
  86. # SageMath parsed files
  87. *.sage.py
  88. # Environments
  89. .env
  90. .venv
  91. env/
  92. venv/
  93. ENV/
  94. env.bak/
  95. venv.bak/
  96. # Spyder project settings
  97. .spyderproject
  98. .spyproject
  99. # Rope project settings
  100. .ropeproject
  101. # mkdocs documentation
  102. /site
  103. # mypy
  104. .mypy_cache/
  105. .dmypy.json
  106. dmypy.json
  107. # Pyre type checker
  108. .pyre/