Queer European MD passionate about IT

__init__.py 798 B

12345678910111213141516171819202122232425
  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. Legacy `custombot.py` is kept for backward compatibility but will finally
  8. be deprecated.
  9. """
  10. __author__ = "Davide Testa"
  11. __email__ = "davide@davte.it"
  12. __credits__ = ["Marco Origlia", "Nick Lee @Nickoala"]
  13. __license__ = "GNU General Public License v3.0"
  14. __version__ = "2.5.0"
  15. __maintainer__ = "Davide Testa"
  16. __contact__ = "t.me/davte"
  17. # Legacy module; please use `from davtelepot.bot import Bot` from now on
  18. from .custombot import Bot
  19. from . import administration_tools, authorization, bot, helper, languages, suggestions, utilities
  20. __all__ = [administration_tools, authorization, Bot, bot, helper, languages, suggestions, utilities]