File: core.html

package info (click to toggle)
python-telethon 1.42.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,520 kB
  • sloc: python: 16,285; javascript: 200; makefile: 16; sh: 11
file content (179 lines) | stat: -rw-r--r-- 7,730 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Telethon API</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link id="style" href="css/docs.dark.css" rel="stylesheet">
    <script>
        (function () {
            var style = document.getElementById('style');

            // setTheme(<link />, 'light' / 'dark')
            function setTheme(theme) {
                localStorage.setItem('theme', theme);
                return style.href = 'css/docs.' + theme + '.css';
            }

            // setThemeOnClick(<link />, 'light' / 'dark', <a />)
            function setThemeOnClick(theme, button) {
                return button.addEventListener('click', function (e) {
                    setTheme(theme);
                    e.preventDefault();
                    return false;
                });
            }

            setTheme(localStorage.getItem('theme') || 'light');

            document.addEventListener('DOMContentLoaded', function () {
                setThemeOnClick('light', document.getElementById('themeLight'));
                setThemeOnClick('dark', document.getElementById('themeDark'));
            });
        })();
    </script>
    <link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro" rel="stylesheet">
</head>
<body>
<div id="main_div">
    <noscript>Please enable JavaScript if you would like to use search.</noscript>
    <h1>Telethon API</h1>
    <p>This documentation was generated straight from the <code>scheme.tl</code>
    provided by Telegram. However, there is no official documentation per se
    on what the methods, constructors and types mean. Nevertheless, this
    page aims to provide easy access to all the available methods, their
    definition and parameters.</p>
    <p id="themeSelect">
        <a href="#" id="themeLight">light</a> /
        <a href="#" id="themeDark">dark</a> theme.
    </p>
    <p>Please note that when you see this:</p>
    <pre>---functions---
users.getUsers#0d91a548 id:Vector&lt;InputUser&gt; = Vector&lt;User&gt;</pre>

    <p>This is <b>not</b> Python code. It's the "TL definition". It's
    an easy-to-read line that gives a quick overview on the parameters
    and its result. You don't need to worry about this. See
    <a href="https://docs.telethon.dev/en/stable/developing/understanding-the-type-language.html">Understanding
    the Type Language</a> for more details on it.</p>

    <h3>Index</h3>
    <ul>
        <li>
            <a href="#methods">Methods</a>
            (<a href="methods/index.html">full list</a>)
        </li>
        <li>
            <a href="#types">Types</a>
            (<a href="types/index.html">full list</a>)
        </li>
        <li>
            <a href="#constructors">Constructors</a>
            (<a href="constructors/index.html">full list</a>)
        </li>
        <li><a href="#core">Core types</a></li>
        <li><a href="#example">Full example</a></li>
    </ul>

    <h3 id="methods">Methods</h3>
    <p>Currently there are <b>{method_count} methods</b> available for the layer
    {layer}. <a href="methods/index.html">See the complete method list</a>.
    <br /><br />
    Methods, also known as <i>requests</i>, are used to interact with the
    Telegram API itself and are invoked through <code>client(Request(...))</code>.
    <b>Only these</b> can be used like that! You cannot invoke types or
    constructors, only requests. After this, Telegram will return a
    <code>result</code>, which may be, for instance, a bunch of messages,
    some dialogs, users, etc.</p>

    <h3 id="types">Types</h3>
    <p>Currently there are <b>{type_count} types</b>.
    <a href="types/index.html">See the complete list of types</a>.</p>

    <p>The Telegram types are the <i>abstract</i> results that you receive
    after invoking a request. They are "abstract" because they can have
    multiple constructors. For instance, the abstract type <code>User</code>
    can be either <code>UserEmpty</code> or <code>User</code>. You should,
    most of the time, make sure you received the desired type by using
    the <code>isinstance(result, Constructor)</code> Python function.

    When a request needs a Telegram type as argument, you should create
    an instance of it by using one of its, possibly multiple, constructors.</p>

    <h3 id="constructors">Constructors</h3>
    <p>Currently there are <b>{constructor_count} constructors</b>.
    <a href="constructors/index.html">See the list of all constructors</a>.</p>

    <p>Constructors are the way you can create instances of the abstract types
    described above, and also the instances which are actually returned from
    the functions although they all share a common abstract type.</p>

    <h3 id="core">Core types</h3>
    <p>Core types are types from which the rest of Telegram types build upon:</p>
    <ul>
    <li id="int"><b>int</b>:
        The value should be an integer type, like <span class="sh1">42</span>.
        It should have 32 bits or less. You can check the bit length by
        calling <code>a.bit_length()</code>, where <code>a</code> is an
        integer variable.
    </li>
    <li id="long"><b>long</b>:
        Different name for an integer type. The numbers given should have
        64 bits or less.
    </li>
    <li id="int128"><b>int128</b>:
        Another integer type, should have 128 bits or less.
    </li>
    <li id="int256"><b>int256</b>:
        The largest integer type, allowing 256 bits or less.
    </li>
    <li id="double"><b>double</b>:
        The value should be a floating point value, such as
        <span class="sh1">123.456</span>.
    </li>
    <li id="vector"><b>Vector&lt;T&gt;</b>:
        If a type <code>T</code> is wrapped around <code>Vector&lt;T&gt;</code>,
        then it means that the argument should be a <i>list</i> of it.
        For instance, a valid value for <code>Vector&lt;int&gt;</code>
        would be <code>[1, 2, 3]</code>.
    </li>
    <li id="string"><b>string</b>:
        A valid UTF-8 string should be supplied. This is right how
        Python strings work, no further encoding is required.
    </li>
    <li id="bool"><b>Bool</b>:
        Either <code>True</code> or <code>False</code>.
    </li>
    <li id="true"><b>flag</b>:
        These arguments aren't actually sent but rather encoded as flags.
        Any truthy value (<code>True</code>, <code>7</code>) will enable
        this flag, although it's recommended to use <code>True</code> or
        <code>None</code> to symbolize that it's not present.
    </li>
    <li id="bytes"><b>bytes</b>:
        A sequence of bytes, like <code>b'hello'</code>, should be supplied.
    </li>
    <li id="date"><b>date</b>:
        Although this type is internally used as an <code>int</code>,
        you can pass a <code>datetime</code> or <code>date</code> object
        instead to work with date parameters.<br />
        Note that the library uses the date in <b>UTC+0</b>, since timezone
        conversion is not responsibility of the library. Furthermore, this
        eases converting into any other timezone without the need for a middle
        step.
    </li>
    </ul>

    <h3 id="example">Full example</h3>
    <p>All methods shown here have dummy examples on how to write them,
    so you don't get confused with their TL definition. However, this may
    not always run. They are just there to show the right syntax.</p>

    <p>You should check out
    <a href="https://docs.telethon.dev/en/stable/concepts/full-api.html">how
    to access the full API</a> in ReadTheDocs.
    </p>
</div>
<script src="js/search.js"></script>
</body>
</html>