Ovh instance management with PySide2
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.8 KiB

il y a 3 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. .vscode/
  7. *.sqlite3
  8. ovh.conf
  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. *.py,cover
  50. .hypothesis/
  51. .pytest_cache/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. db.sqlite3
  59. db.sqlite3-journal
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. target/
  69. # Jupyter Notebook
  70. .ipynb_checkpoints
  71. # IPython
  72. profile_default/
  73. ipython_config.py
  74. # pyenv
  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. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  83. __pypackages__/
  84. # Celery stuff
  85. celerybeat-schedule
  86. celerybeat.pid
  87. # SageMath parsed files
  88. *.sage.py
  89. # Environments
  90. .env
  91. .venv
  92. env/
  93. venv/
  94. ENV/
  95. env.bak/
  96. venv.bak/
  97. # Spyder project settings
  98. .spyderproject
  99. .spyproject
  100. # Rope project settings
  101. .ropeproject
  102. # mkdocs documentation
  103. /site
  104. # mypy
  105. .mypy_cache/
  106. .dmypy.json
  107. dmypy.json
  108. # Pyre type checker
  109. .pyre/