Test Smart Brain implementation
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

.gitignore 1.8KB

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