Update quick_start.rst

This commit is contained in:
Pavel Alimpiev 2018-12-18 15:29:13 +03:00 committed by GitHub
parent 1494e28609
commit 2325391d94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,32 +9,32 @@ At first you have to import all necessary modules
.. literalinclude:: ../../examples/echo_bot.py .. literalinclude:: ../../examples/echo_bot.py
:language: python :language: python
:lines: 1-4 :lines: 6-8
Then you have to initialize bot and dispatcher instances. Then you have to initialize bot and dispatcher instances.
Bot token you can get from `@BotFather <https://t.me/BotFather>`_ Bot token you can get from `@BotFather <https://t.me/BotFather>`_
.. literalinclude:: ../../examples/echo_bot.py .. literalinclude:: ../../examples/echo_bot.py
:language: python :language: python
:lines: 10-12 :lines: 10-17
Next step: interaction with bots starts with one command. Register your first command handler: Next step: interaction with bots starts with one command. Register your first command handler:
.. literalinclude:: ../../examples/echo_bot.py .. literalinclude:: ../../examples/echo_bot.py
:language: python :language: python
:lines: 15-17 :lines: 21-25
If you want to handle all messages in the chat simply add handler without filters: If you want to handle all messages in the chat simply add handler without filters:
.. literalinclude:: ../../examples/echo_bot.py .. literalinclude:: ../../examples/echo_bot.py
:language: python :language: python
:lines: 27-29 :lines: 28-30
Last step: run long polling. Last step: run long polling.
.. literalinclude:: ../../examples/echo_bot.py .. literalinclude:: ../../examples/echo_bot.py
:language: python :language: python
:lines: 32-33 :lines: 33-34
Summary Summary
------- -------