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.

пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
пре 10 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. MANIFEST
  25. # PyInstaller
  26. # Usually these files are written by a python script from a template
  27. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  28. *.manifest
  29. *.spec
  30. # Installer logs
  31. pip-log.txt
  32. pip-delete-this-directory.txt
  33. # Unit test / coverage reports
  34. htmlcov/
  35. .tox/
  36. .nox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *.cover
  43. .hypothesis/
  44. .pytest_cache/
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. local_settings.py
  51. db.sqlite3
  52. # Flask stuff:
  53. instance/
  54. .webassets-cache
  55. # Scrapy stuff:
  56. .scrapy
  57. # Sphinx documentation
  58. docs/_build/
  59. # PyBuilder
  60. target/
  61. # Jupyter Notebook
  62. .ipynb_checkpoints
  63. # IPython
  64. profile_default/
  65. ipython_config.py
  66. # pyenv
  67. .python-version
  68. # celery beat schedule file
  69. celerybeat-schedule
  70. # SageMath parsed files
  71. *.sage.py
  72. # Environments
  73. .env
  74. .venv
  75. env/
  76. venv/
  77. ENV/
  78. env.bak/
  79. venv.bak/
  80. # Spyder project settings
  81. .spyderproject
  82. .spyproject
  83. # Rope project settings
  84. .ropeproject
  85. # mkdocs documentation
  86. /site
  87. # mypy
  88. .mypy_cache/
  89. .dmypy.json
  90. dmypy.json
  91. # Pyre type checker
  92. .pyre/