Shared Memory Dictionary utilizing Posix IPC semaphores and shared memory segments and offering permanent disk storage of data if required.
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.

180 lines
2.3KB

  1. ####### MacOS Start #######
  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. ####### MacOS End #######
  25. ####### Windows Start #######
  26. # Windows thumbnail cache files
  27. Thumbs.db
  28. ehthumbs.db
  29. ehthumbs_vista.db
  30. # Dump file
  31. *.stackdump
  32. # Folder config file
  33. [Dd]esktop.ini
  34. # Recycle Bin used on file shares
  35. $RECYCLE.BIN/
  36. # Windows Installer files
  37. *.cab
  38. *.msi
  39. *.msix
  40. *.msm
  41. *.msp
  42. # Windows shortcuts
  43. *.lnk
  44. ####### Windows End #######
  45. ####### Python Start #######
  46. # Byte-compiled / optimized / DLL files
  47. __pycache__/
  48. *.py[cod]
  49. *$py.class
  50. # C extensions
  51. *.so
  52. # Distribution / packaging
  53. .Python
  54. build/
  55. develop-eggs/
  56. dist/
  57. downloads/
  58. eggs/
  59. .eggs/
  60. lib/
  61. lib64/
  62. parts/
  63. sdist/
  64. var/
  65. wheels/
  66. *.egg-info/
  67. .installed.cfg
  68. *.egg
  69. MANIFEST
  70. # PyInstaller
  71. # Usually these files are written by a python script from a template
  72. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  73. *.manifest
  74. *.spec
  75. # Installer logs
  76. pip-log.txt
  77. pip-delete-this-directory.txt
  78. pip-selfcheck.json
  79. # Unit test / coverage reports
  80. htmlcov/
  81. .tox/
  82. .nox/
  83. .coverage
  84. .coverage.*
  85. docs/source/coverage/*
  86. !docs/source/coverage/extract_source.py
  87. !docs/source/coverage/*.source.html
  88. docs/source/api/*
  89. .cache
  90. nosetests.xml
  91. coverage.xml
  92. *.cover
  93. .hypothesis/
  94. .pytest_cache/
  95. .pylint.d/
  96. # Translations
  97. *.mo
  98. *.pot
  99. # Django stuff:
  100. *.log
  101. local_settings.py
  102. db.sqlite3
  103. static/*
  104. !static/.touch
  105. # Flask stuff:
  106. instance/
  107. .webassets-cache
  108. # Scrapy stuff:
  109. .scrapy
  110. # Sphinx documentation
  111. docs/_build/
  112. docs/build/
  113. # PyBuilder
  114. target/
  115. # Jupyter Notebook
  116. .ipynb_checkpoints
  117. # IPython
  118. profile_default/
  119. ipython_config.py
  120. # pyenv
  121. .python-version
  122. # celery beat schedule file
  123. celerybeat-schedule
  124. # SageMath parsed files
  125. *.sage.py
  126. # Environments
  127. .env
  128. .envrc
  129. .venv
  130. env/
  131. venv/
  132. ENV/
  133. env.bak/
  134. venv.bak/
  135. # Spyder project settings
  136. .spyderproject
  137. .spyproject
  138. # Rope project settings
  139. .ropeproject
  140. # mkdocs documentation
  141. /site
  142. # mypy
  143. .mypy_cache/
  144. .dmypy.json
  145. dmypy.json
  146. ####### Python End #######