Python scripts I use to manage my ssh connections, drive mounts, and other bash related things.
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.

131 lines
1.8 KiB

4 years 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. pip-wheel-metadata/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. *.py,cover
  46. .hypothesis/
  47. .pytest_cache/
  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. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. target/
  65. # Jupyter Notebook
  66. .ipynb_checkpoints
  67. # IPython
  68. profile_default/
  69. ipython_config.py
  70. # pyenv
  71. .python-version
  72. # pipenv
  73. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  74. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  75. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  76. # install all needed dependencies.
  77. #Pipfile.lock
  78. # celery beat schedule file
  79. celerybeat-schedule
  80. # SageMath parsed files
  81. *.sage.py
  82. # Environments
  83. .env
  84. .venv
  85. env/
  86. venv/
  87. ENV/
  88. env.bak/
  89. venv.bak/
  90. # Spyder project settings
  91. .spyderproject
  92. .spyproject
  93. # Rope project settings
  94. .ropeproject
  95. # mkdocs documentation
  96. /site
  97. # mypy
  98. .mypy_cache/
  99. .dmypy.json
  100. dmypy.json
  101. # Pyre type checker
  102. .pyre/
  103. # Special config files for this repo
  104. config.txt
  105. mounts.txt
  106. quotes.txt
  107. servers.txt