From 8aaf9fb9045e8b091f801515f83193c0475df2a5 Mon Sep 17 00:00:00 2001 From: Lonami Date: Sun, 10 Sep 2017 14:51:36 +0200 Subject: [PATCH] Finish sentence about help() --- Sending-Requests.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sending-Requests.md b/Sending-Requests.md index 9af3665..86ccc4f 100644 --- a/Sending-Requests.md +++ b/Sending-Requests.md @@ -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.