Application which monitors a folder and sends each file via mail
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.

.gitignore 1.8KB

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