Finish sentence about help()

Lonami 2017-09-10 14:51:36 +02:00
parent 0460d85982
commit 8aaf9fb904

@ -1,4 +1,4 @@
Since we're working with Python, one must not forget that they can do `help(client)` or `help(TelegramClient)` at any time for a more detailed description and a list of all the available methods. Calling `help()` from an interactive Python session.
Since we're working with Python, one must not forget that they can do `help(client)` or `help(TelegramClient)` at any time for a more detailed description and a list of all the available methods. Calling `help()` from an interactive Python session will always list all the methods for any object, even yours!
Interacting with the Telegram API is done through sending **requests**, this is, any "method" listed on the API. There are a few methods on the `TelegramClient` class that abstract you from the need of manually importing the requests you need.