WIP repository for a ncurses fediverse/mastodon client, using python mastodon.py

.gitignore 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # ---> Vim
  2. # swap
  3. [._]*.s[a-v][a-z]
  4. [._]*.sw[a-p]
  5. [._]s[a-v][a-z]
  6. [._]sw[a-p]
  7. # session
  8. Session.vim
  9. # temporary
  10. .netrwhist
  11. *~
  12. # auto-generated tag files
  13. tags
  14. # ---> Python
  15. # Byte-compiled / optimized / DLL files
  16. __pycache__/
  17. *.py[cod]
  18. *$py.class
  19. # C extensions
  20. *.so
  21. # Distribution / packaging
  22. .Python
  23. env/
  24. build/
  25. develop-eggs/
  26. dist/
  27. downloads/
  28. eggs/
  29. .eggs/
  30. lib/
  31. lib64/
  32. parts/
  33. sdist/
  34. var/
  35. wheels/
  36. *.egg-info/
  37. .installed.cfg
  38. *.egg
  39. # PyInstaller
  40. # Usually these files are written by a python script from a template
  41. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  42. *.manifest
  43. *.spec
  44. # Installer logs
  45. pip-log.txt
  46. pip-delete-this-directory.txt
  47. # Unit test / coverage reports
  48. htmlcov/
  49. .tox/
  50. .coverage
  51. .coverage.*
  52. .cache
  53. nosetests.xml
  54. coverage.xml
  55. *,cover
  56. .hypothesis/
  57. # Translations
  58. *.mo
  59. *.pot
  60. # Django stuff:
  61. *.log
  62. local_settings.py
  63. # Flask stuff:
  64. instance/
  65. .webassets-cache
  66. # Scrapy stuff:
  67. .scrapy
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. target/
  72. # Jupyter Notebook
  73. .ipynb_checkpoints
  74. # pyenv
  75. .python-version
  76. # celery beat schedule file
  77. celerybeat-schedule
  78. # SageMath parsed files
  79. *.sage.py
  80. # dotenv
  81. .env
  82. # virtualenv
  83. .venv
  84. venv/
  85. ENV/
  86. # Spyder project settings
  87. .spyderproject
  88. # Rope project settings
  89. .ropeproject
  90. # mastodon.py secret files
  91. *.secret