Projet final du cours CS50 Python https://cs50.harvard.edu/python/
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

190 wiersze
2.7 KiB

  1. # ---> macOS
  2. # General
  3. .DS_Store
  4. .AppleDouble
  5. .LSOverride
  6. # Icon must end with two \r
  7. Icon
  8. # Thumbnails
  9. ._*
  10. # Files that might appear in the root of a volume
  11. .DocumentRevisions-V100
  12. .fseventsd
  13. .Spotlight-V100
  14. .TemporaryItems
  15. .Trashes
  16. .VolumeIcon.icns
  17. .com.apple.timemachine.donotpresent
  18. # Directories potentially created on remote AFP share
  19. .AppleDB
  20. .AppleDesktop
  21. Network Trash Folder
  22. Temporary Items
  23. .apdisk
  24. # ---> VirtualEnv
  25. # Virtualenv
  26. # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
  27. .Python
  28. [Bb]in
  29. [Ii]nclude
  30. [Ll]ib
  31. [Ll]ib64
  32. [Ll]ocal
  33. [Ss]cripts
  34. pyvenv.cfg
  35. .venv
  36. pip-selfcheck.json
  37. # ---> Python
  38. # Byte-compiled / optimized / DLL files
  39. __pycache__/
  40. *.py[cod]
  41. *$py.class
  42. # C extensions
  43. *.so
  44. # Distribution / packaging
  45. .Python
  46. build/
  47. develop-eggs/
  48. dist/
  49. downloads/
  50. eggs/
  51. .eggs/
  52. lib/
  53. lib64/
  54. parts/
  55. sdist/
  56. var/
  57. wheels/
  58. pip-wheel-metadata/
  59. share/python-wheels/
  60. *.egg-info/
  61. .installed.cfg
  62. *.egg
  63. MANIFEST
  64. # PyInstaller
  65. # Usually these files are written by a python script from a template
  66. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  67. *.manifest
  68. *.spec
  69. # Installer logs
  70. pip-log.txt
  71. pip-delete-this-directory.txt
  72. # Unit test / coverage reports
  73. htmlcov/
  74. .tox/
  75. .nox/
  76. .coverage
  77. .coverage.*
  78. .cache
  79. nosetests.xml
  80. coverage.xml
  81. *.cover
  82. *.py,cover
  83. .hypothesis/
  84. .pytest_cache/
  85. # Translations
  86. *.mo
  87. *.pot
  88. # Django stuff:
  89. *.log
  90. local_settings.py
  91. db.sqlite3
  92. db.sqlite3-journal
  93. # Flask stuff:
  94. instance/
  95. .webassets-cache
  96. # Scrapy stuff:
  97. .scrapy
  98. # Sphinx documentation
  99. docs/_build/
  100. # PyBuilder
  101. target/
  102. # Jupyter Notebook
  103. .ipynb_checkpoints
  104. # IPython
  105. profile_default/
  106. ipython_config.py
  107. # pyenv
  108. .python-version
  109. # pipenv
  110. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  111. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  112. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  113. # install all needed dependencies.
  114. Pipfile.lock
  115. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  116. __pypackages__/
  117. # Celery stuff
  118. celerybeat-schedule
  119. celerybeat.pid
  120. # SageMath parsed files
  121. *.sage.py
  122. # Environments
  123. .env
  124. .venv
  125. env/
  126. venv/
  127. ENV/
  128. env.bak/
  129. venv.bak/
  130. # Spyder project settings
  131. .spyderproject
  132. .spyproject
  133. # Rope project settings
  134. .ropeproject
  135. # mkdocs documentation
  136. /site
  137. # mypy
  138. .mypy_cache/
  139. .dmypy.json
  140. dmypy.json
  141. # Pyre type checker
  142. .pyre/
  143. # ---> Linux
  144. *~
  145. # temporary files which can be created if a process still has a handle open of a deleted file
  146. .fuse_hidden*
  147. # KDE directory preferences
  148. .directory
  149. # Linux trash folder which might appear on any partition or disk
  150. .Trash-*
  151. # .nfs files are created when an open file is removed but is still being accessed
  152. .nfs*