mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-15 05:56:36 +03:00
304 lines
11 KiB
HTML
304 lines
11 KiB
HTML
<!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 href="css/docs.css" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito|Source+Code+Pro" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
overflow: scroll;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="main_div">
|
|
<!-- You can append '?q=query' to the URL to default to a search -->
|
|
<input id="searchBox" type="text" onkeyup="updateSearch()"
|
|
placeholder="Search for requests and types…" />
|
|
|
|
<div id="searchDiv">
|
|
<div id="exactMatch" style="display:none;">
|
|
<b>Exact match:</b>
|
|
<ul id="exactList" class="together">
|
|
</ul>
|
|
</div>
|
|
|
|
<details open><summary class="title">Methods (<span id="methodsCount">0</span>)</summary>
|
|
<ul id="methodsList" class="together">
|
|
</ul>
|
|
</details>
|
|
|
|
<details open><summary class="title">Types (<span id="typesCount">0</span>)</summary>
|
|
<ul id="typesList" class="together">
|
|
</ul>
|
|
</details>
|
|
|
|
<details><summary class="title">Constructors (<span id="constructorsCount">0</span>)</summary>
|
|
<ul id="constructorsList" class="together">
|
|
</ul>
|
|
</details>
|
|
</div>
|
|
|
|
<div id="contentDiv">
|
|
<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>Please note that when you see this:</p>
|
|
<pre>---functions---
|
|
users.getUsers#0d91a548 id:Vector<InputUser> = Vector<User></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="http://telethon.readthedocs.io/en/latest/extra/developing/understanding-the-type-language.html">here</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}. The complete list can be seen <a href="methods/index.html">here</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>. You can see the full
|
|
list <a href="types/index.html">here</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>. You can see
|
|
the full list <a href="constructors/index.html">here</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<T></b>:
|
|
If a type <code>T</code> is wrapped around <code>Vector<T></code>,
|
|
then it means that the argument should be a <i>list</i> of it.
|
|
For instance, a valid value for <code>Vector<int></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>true</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> object instead to work
|
|
with date parameters.
|
|
</li>
|
|
</ul>
|
|
|
|
<h3 id="example">Full example</h3>
|
|
<p>Documentation for this is now
|
|
<a href="http://telethon.readthedocs.io/en/latest/extra/advanced-usage/accessing-the-full-api.html">here</a>.
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|
|
<script>
|
|
contentDiv = document.getElementById("contentDiv");
|
|
searchDiv = document.getElementById("searchDiv");
|
|
searchBox = document.getElementById("searchBox");
|
|
|
|
// Search lists
|
|
methodsList = document.getElementById("methodsList");
|
|
methodsCount = document.getElementById("methodsCount");
|
|
|
|
typesList = document.getElementById("typesList");
|
|
typesCount = document.getElementById("typesCount");
|
|
|
|
constructorsList = document.getElementById("constructorsList");
|
|
constructorsCount = document.getElementById("constructorsCount");
|
|
|
|
// Exact match
|
|
exactMatch = document.getElementById("exactMatch");
|
|
exactList = document.getElementById("exactList");
|
|
|
|
try {
|
|
requests = [{request_names}];
|
|
types = [{type_names}];
|
|
constructors = [{constructor_names}];
|
|
|
|
requestsu = [{request_urls}];
|
|
typesu = [{type_urls}];
|
|
constructorsu = [{constructor_urls}];
|
|
} catch (e) {
|
|
requests = [];
|
|
types = [];
|
|
constructors = [];
|
|
requestsu = [];
|
|
typesu = [];
|
|
constructorsu = [];
|
|
}
|
|
|
|
// Given two input arrays "original" and "original urls" and a query,
|
|
// return a pair of arrays with matching "query" elements from "original".
|
|
//
|
|
// TODO Perhaps return an array of pairs instead a pair of arrays (for cache).
|
|
function getSearchArray(original, originalu, query) {
|
|
var destination = [];
|
|
var destinationu = [];
|
|
|
|
for (var i = 0; i < original.length; ++i) {
|
|
if (original[i].toLowerCase().indexOf(query) != -1) {
|
|
destination.push(original[i]);
|
|
destinationu.push(originalu[i]);
|
|
}
|
|
}
|
|
|
|
return [destination, destinationu];
|
|
}
|
|
|
|
// Modify "countSpan" and "resultList" accordingly based on the elements
|
|
// given as [[elements], [element urls]] (both with the same length)
|
|
function buildList(countSpan, resultList, foundElements) {
|
|
var result = "";
|
|
for (var i = 0; i < foundElements[0].length; ++i) {
|
|
result += '<li>';
|
|
result += '<a href="' + foundElements[1][i] + '">';
|
|
result += foundElements[0][i];
|
|
result += '</a></li>';
|
|
}
|
|
|
|
if (countSpan) {
|
|
countSpan.innerHTML = "" + foundElements[0].length;
|
|
}
|
|
resultList.innerHTML = result;
|
|
}
|
|
|
|
function updateSearch() {
|
|
if (searchBox.value) {
|
|
contentDiv.style.display = "none";
|
|
searchDiv.style.display = "";
|
|
|
|
var query = searchBox.value.toLowerCase();
|
|
|
|
var foundRequests = getSearchArray(requests, requestsu, query);
|
|
var foundTypes = getSearchArray(types, typesu, query);
|
|
var foundConstructors = getSearchArray(
|
|
constructors, constructorsu, query
|
|
);
|
|
|
|
buildList(methodsCount, methodsList, foundRequests);
|
|
buildList(typesCount, typesList, foundTypes);
|
|
buildList(constructorsCount, constructorsList, foundConstructors);
|
|
|
|
// Now look for exact matches
|
|
var original = requests.concat(constructors);
|
|
var originalu = requestsu.concat(constructorsu);
|
|
var destination = [];
|
|
var destinationu = [];
|
|
|
|
for (var i = 0; i < original.length; ++i) {
|
|
if (original[i].toLowerCase().replace("request", "") == query) {
|
|
destination.push(original[i]);
|
|
destinationu.push(originalu[i]);
|
|
}
|
|
}
|
|
|
|
if (destination.length == 0) {
|
|
exactMatch.style.display = "none";
|
|
} else {
|
|
exactMatch.style.display = "";
|
|
buildList(null, exactList, [destination, destinationu]);
|
|
}
|
|
} else {
|
|
contentDiv.style.display = "";
|
|
searchDiv.style.display = "none";
|
|
}
|
|
}
|
|
|
|
function getQuery(name) {
|
|
var query = window.location.search.substring(1);
|
|
var vars = query.split("&");
|
|
for (var i = 0; i != vars.length; ++i) {
|
|
var pair = vars[i].split("=");
|
|
if (pair[0] == name)
|
|
return pair[1];
|
|
}
|
|
}
|
|
|
|
var query = getQuery('q');
|
|
if (query) {
|
|
searchBox.value = query;
|
|
}
|
|
|
|
updateSearch();
|
|
</script>
|
|
</body>
|
|
</html>
|