Refactor dispatcher. Update docs. Fix tests.

This commit is contained in:
Alex Root Junior 2020-11-18 02:05:52 +02:00
parent 9539c4e2fd
commit d3b488e16d
290 changed files with 2153 additions and 1780 deletions

View file

@ -3,13 +3,13 @@ Bot
###
Bot instance can be created from :code:`aiogram.Bot` (:code:`from aiogram import Bot`) and
you can't use API methods without instance of bot with configured token.
you can't use methods without instance of bot with configured token.
This class has aliases for all API methods and named in :code:`lower_camel_case`.
This class has aliases for all methods and named in :code:`lower_camel_case`.
For example :code:`sendMessage` named :code:`send_message` and has the same specification with all class-based methods.
.. autoclass:: aiogram.api.client.bot.Bot
.. autoclass:: aiogram.client.bot.Bot
:members:
:show-inheritance:
:member-order: bysource