Queer European MD passionate about IT

__init__.py 686 B

12345678910111213141516171819202122
  1. """Information about this package.
  2. See `bot.py` for information about Bot class.
  3. ```python3.5+
  4. from davtelepot.bot import Bot
  5. help(Bot)
  6. ```
  7. """
  8. __author__ = "Davide Testa"
  9. __email__ = "davide@davte.it"
  10. __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
  11. __license__ = "GNU General Public License v3.0"
  12. __version__ = "2.6.19"
  13. __maintainer__ = "Davide Testa"
  14. __contact__ = "t.me/davte"
  15. from . import (administration_tools, api, authorization, bot, helper, languages,
  16. messages, suggestions, useful_tools, utilities)
  17. __all__ = [administration_tools, api, authorization, bot, helper, languages,
  18. messages, suggestions, useful_tools, utilities]