2017-11-20 07:12:31 +03:00
|
|
|
.. Telethon documentation master file, created by
|
|
|
|
sphinx-quickstart on Fri Nov 17 15:36:11 2017.
|
|
|
|
You can adapt this file completely to your liking, but it should at least
|
|
|
|
contain the root `toctree` directive.
|
|
|
|
|
2018-01-05 02:59:53 +03:00
|
|
|
===============
|
|
|
|
Getting Started
|
|
|
|
===============
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
Simple Installation
|
2018-01-05 02:59:53 +03:00
|
|
|
*******************
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2018-01-12 12:08:40 +03:00
|
|
|
``pip3 install telethon``
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2017-11-20 12:26:31 +03:00
|
|
|
**More details**: :ref:`installation`
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
Creating a client
|
2018-01-05 02:59:53 +03:00
|
|
|
*****************
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from telethon import TelegramClient
|
|
|
|
|
|
|
|
# These example values won't work. You must get your own api_id and
|
|
|
|
# api_hash from https://my.telegram.org, under API Development.
|
|
|
|
api_id = 12345
|
|
|
|
api_hash = '0123456789abcdef0123456789abcdef'
|
|
|
|
|
|
|
|
client = TelegramClient('session_name', api_id, api_hash)
|
2018-01-11 14:45:59 +03:00
|
|
|
client.start()
|
2017-11-20 07:12:31 +03:00
|
|
|
|
2017-11-20 12:26:31 +03:00
|
|
|
**More details**: :ref:`creating-a-client`
|
2017-11-20 07:12:31 +03:00
|
|
|
|
|
|
|
|
2018-01-05 02:59:53 +03:00
|
|
|
Basic Usage
|
|
|
|
***********
|
|
|
|
|
2017-11-20 07:12:31 +03:00
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
print(me.stringify())
|
|
|
|
|
|
|
|
client.send_message('username', 'Hello! Talking to you from Telethon')
|
|
|
|
client.send_file('username', '/home/myself/Pictures/holidays.jpg')
|
|
|
|
|
|
|
|
client.download_profile_photo(me)
|
2018-01-05 15:30:21 +03:00
|
|
|
messages = client.get_message_history('username')
|
2017-11-20 07:12:31 +03:00
|
|
|
client.download_media(messages[0])
|
|
|
|
|
2018-01-05 02:59:53 +03:00
|
|
|
**More details**: :ref:`telegram-client`
|