My Python Libraries
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. # ---> Backup
  2. *.bak
  3. *.gho
  4. *.ori
  5. *.orig
  6. *.tmp
  7. # ---> Linux
  8. *~
  9. # temporary files which can be created if a process still has a handle open of a deleted file
  10. .fuse_hidden*
  11. # KDE directory preferences
  12. .directory
  13. # Linux trash folder which might appear on any partition or disk
  14. .Trash-*
  15. # .nfs files are created when an open file is removed but is still being accessed
  16. .nfs*
  17. # ---> Python
  18. # Byte-compiled / optimized / DLL files
  19. __pycache__/
  20. *.py[cod]
  21. *$py.class
  22. # C extensions
  23. *.so
  24. # Distribution / packaging
  25. .Python
  26. build/
  27. develop-eggs/
  28. dist/
  29. downloads/
  30. eggs/
  31. .eggs/
  32. lib/
  33. lib64/
  34. parts/
  35. sdist/
  36. var/
  37. wheels/
  38. *.egg-info/
  39. .installed.cfg
  40. *.egg
  41. MANIFEST
  42. # PyInstaller
  43. # Usually these files are written by a python script from a template
  44. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  45. *.manifest
  46. *.spec
  47. # Installer logs
  48. pip-log.txt
  49. pip-delete-this-directory.txt
  50. # Unit test / coverage reports
  51. htmlcov/
  52. .tox/
  53. .nox/
  54. .coverage
  55. .coverage.*
  56. .cache
  57. nosetests.xml
  58. coverage.xml
  59. *.cover
  60. .hypothesis/
  61. .pytest_cache/
  62. # Translations
  63. *.mo
  64. *.pot
  65. # Django stuff:
  66. *.log
  67. local_settings.py
  68. db.sqlite3
  69. # Flask stuff:
  70. instance/
  71. .webassets-cache
  72. # Scrapy stuff:
  73. .scrapy
  74. # Sphinx documentation
  75. docs/_build/
  76. # PyBuilder
  77. target/
  78. # Jupyter Notebook
  79. .ipynb_checkpoints
  80. # IPython
  81. profile_default/
  82. ipython_config.py
  83. # pyenv
  84. .python-version
  85. # celery beat schedule file
  86. celerybeat-schedule
  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/
  110. # ---> Eclipse
  111. .metadata
  112. bin/
  113. tmp/
  114. *.tmp
  115. *.bak
  116. *.swp
  117. *~.nib
  118. local.properties
  119. .settings/
  120. .loadpath
  121. .recommenders
  122. # External tool builders
  123. .externalToolBuilders/
  124. # Locally stored "Eclipse launch configurations"
  125. *.launch
  126. # PyDev specific (Python IDE for Eclipse)
  127. *.pydevproject
  128. # CDT-specific (C/C++ Development Tooling)
  129. .cproject
  130. # CDT- autotools
  131. .autotools
  132. # Java annotation processor (APT)
  133. .factorypath
  134. # PDT-specific (PHP Development Tools)
  135. .buildpath
  136. # sbteclipse plugin
  137. .target
  138. # Tern plugin
  139. .tern-project
  140. # TeXlipse plugin
  141. .texlipse
  142. # STS (Spring Tool Suite)
  143. .springBeans
  144. # Code Recommenders
  145. .recommenders/
  146. # Annotation Processing
  147. .apt_generated/
  148. # Scala IDE specific (Scala & Java development for Eclipse)
  149. .cache-main
  150. .scala_dependencies
  151. .worksheet