Telethon/client/doc/index.rst

130 lines
3.4 KiB
ReStructuredText
Raw Normal View History

2023-09-13 20:01:16 +03:00
.. |svglogo| image:: ../../logo.svg
:width: 24pt
:height: 24pt
.. only:: html
.. highlights:: |svglogo| **Welcome to Telethon's documentation!**
.. only:: not html
.. highlights:: **Welcome to Telethon's documentation!**
.. code-block:: python
import asyncio
from telethon import Client, events
from telethon.events import filters
async def main():
async with Client('name', api_id, api_hash) as client:
me = await client.interactive_login()
await client.send_message(me, f'Hello, {me.name}!')
2023-09-13 20:01:16 +03:00
@client.on(events.NewMessage, filters.Text(r'(?i)hello'))
async def handler(event):
await event.reply('Hey!')
await client.run_until_disconnected()
asyncio.run(main())
* Are you new here? Jump straight into :doc:`basic/installation`!
2023-10-12 20:31:41 +03:00
* Looking for the Client API reference? See the :doc:`Client class <modules/client>`.
2023-09-13 20:01:16 +03:00
* Did you upgrade the library? Please read :doc:`developing/changelog`.
* Coming from Bot API or want to create new bots? See :doc:`concepts/botapi-vs-mtproto`.
* Used Telethon before v2.0? See :doc:`developing/migration-guide`.
* Want to hack away with the raw API? Search in `Telethon Raw API <https://tl.telethon.dev/>`_.
Preface
=======
.. rubric:: What is this?
Telegram is a popular messaging application.
This library is meant to make it easy for you to write Python programs that can interact with Telegram.
Think of it as a wrapper that has already done the hard work for you, so you can focus on developing an application.
.. rubric:: How should I use the documentation?
This documentation is divided in multiple sections. The first few sections are a guide, while others contain the API reference or a glossary of terms.
The documentation assumes some familiarity with Python.
If you are getting started with the library, you should follow the documentation in order by pressing the "Next" button at the bottom-right of every page.
You can also use the menu on the left to quickly skip over sections if you're looking for something in particular or want to continue where you left off.
First steps
===========
In this section you will learn how to install the library and login to your Telegram account.
:doc:`‣ Start reading Installation <basic/installation>`
.. toctree::
:hidden:
:caption: First steps
basic/installation
basic/signing-in
basic/next-steps
Concepts
========
A more in-depth explanation of some of the concepts and words used in Telethon.
2024-03-18 20:55:23 +03:00
:doc:`‣ Start reading Chat concept <concepts/peers>`
2023-09-03 11:59:27 +03:00
.. toctree::
2023-09-13 20:01:16 +03:00
:hidden:
:caption: Concepts
2024-03-18 20:55:23 +03:00
concepts/peers
2023-09-13 20:01:16 +03:00
concepts/updates
concepts/messages
2023-09-13 20:01:16 +03:00
concepts/sessions
concepts/errors
concepts/botapi-vs-mtproto
concepts/full-api
concepts/datacenters
2023-09-13 20:01:16 +03:00
concepts/glossary
2023-09-03 11:59:27 +03:00
2023-10-16 21:12:16 +03:00
API reference
=============
This section contains all the functions and types offered by the library.
:doc:`‣ Start reading Client API <modules/client>`
.. toctree::
:hidden:
:caption: API reference
modules/client
modules/events
modules/types
modules/sessions
Development resources
=====================
2023-09-03 11:59:27 +03:00
2023-09-13 20:01:16 +03:00
Tips and tricks to develop both with the library and for the library.
2023-09-03 11:59:27 +03:00
2023-09-13 20:01:16 +03:00
:doc:`‣ Start reading Changelog <developing/changelog>`
.. toctree::
:hidden:
:caption: Development resources
2023-09-03 11:59:27 +03:00
2023-09-13 20:01:16 +03:00
developing/changelog
developing/migration-guide
developing/faq
developing/contributing