Queer European MD passionate about IT

__init__.py 507 B

123456789101112131415161718
  1. """This folder contains user data.
  2. Therefore, it must be .gitignored and excluded from python packaging.
  3. Examples of data files
  4. - `ciclopi.db`: bot SQLite database file
  5. - Info and erro logs
  6. - `config.py`: configuration file providing local host and port where web app
  7. should run
  8. ```python
  9. local_host = '127.0.0.1'
  10. port = 8080
  11. ```
  12. - `passwords.py`: secret file where you can store your bot token
  13. ```python
  14. bot_token = "111222333:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
  15. ```
  16. """