Queer European MD passionate about IT

__init__.py 747 B

1234567891011121314151617181920212223
  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.8.3"
  13. __maintainer__ = "Davide Testa"
  14. __contact__ = "t.me/davte"
  15. from davtelepot import (administration_tools, api, authorization,
  16. bot, helper, languages, messages, suggestions,
  17. useful_tools, utilities)
  18. __all__ = ['administration_tools', 'api', 'authorization', 'bot', 'helper',
  19. 'languages', 'messages', 'suggestions', 'useful_tools', 'utilities']