2017-12-10 19:43:31 +00:00
|
|
|
|header|
|
|
|
|
|
|
|
|
Table of Contents
|
|
|
|
=================
|
|
|
|
|
|
|
|
- `Overview`_
|
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
- `Features`_
|
|
|
|
|
|
|
|
- `Requirements`_
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
- `Getting Started`_
|
2018-01-02 15:29:15 +00:00
|
|
|
|
|
|
|
- `Installation`_
|
|
|
|
|
|
|
|
- `Setup`_
|
|
|
|
|
|
|
|
- `Usage`_
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-11 07:59:11 +00:00
|
|
|
- `Development`_
|
|
|
|
|
|
|
|
- `Documentation`_
|
|
|
|
|
2017-12-10 19:43:31 +00:00
|
|
|
- `Contribution`_
|
|
|
|
|
|
|
|
- `Feedback`_
|
|
|
|
|
2017-12-17 13:22:03 +00:00
|
|
|
- `License`_
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
2017-12-11 07:59:11 +00:00
|
|
|
Overview
|
2017-12-10 19:43:31 +00:00
|
|
|
========
|
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
**Pyrogram** is a fully functional Telegram Client Library written from the ground up in Python.
|
|
|
|
It offers simple and complete access to the `Telegram Messenger API`_ and is designed for Python
|
|
|
|
developers keen on building custom Telegram applications.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
Features
|
|
|
|
--------
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
- **Easy to setup**: Pyrogram can be easily installed and upgraded using ``pip``, requires
|
|
|
|
a minimal set of dependencies (which are also automatically managed) and very few lines
|
|
|
|
of code to get started with.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
- **Easy to use**: Pyrogram provides idiomatic, developer-friendly, clean and readable
|
|
|
|
Python code (either generated or hand-written) making the Telegram API simple to use.
|
|
|
|
|
|
|
|
- **High level**: Pyrogram automatically handles all the low-level details of
|
|
|
|
communication with the Telegram servers by implementing the
|
|
|
|
`MTProto Mobile Protocol v2.0`_ and the mechanisms needed for establishing
|
|
|
|
a reliable connection.
|
|
|
|
|
2018-01-03 10:10:32 +00:00
|
|
|
- **Updated**: Pyrogram makes use of the latest Telegram API version, currently `Layer 74`_.
|
2018-01-01 20:47:12 +00:00
|
|
|
|
|
|
|
- **Documented**: Pyrogram API public methods are documented and resemble the well
|
|
|
|
established Telegram Bot API, thus offering a familiar look to Bot developers.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-01 20:47:12 +00:00
|
|
|
- **Full API support**: Beside the simple, bot-like methods offered by the Pyrogram API,
|
|
|
|
the library also provides a complete, low-level access to every single Telegram API method.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
Requirements
|
2018-01-01 20:47:12 +00:00
|
|
|
------------
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
- Python 3.3 or higher.
|
|
|
|
|
|
|
|
- A Telegram API key.
|
2018-01-02 15:29:15 +00:00
|
|
|
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
Getting Started
|
|
|
|
===============
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
Installation
|
2018-01-02 15:29:15 +00:00
|
|
|
------------
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
- You can easily install and upgrade the library using standard Python tools:
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
.. code:: shell
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
$ pip install --upgrade pyrogram
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
Setup
|
|
|
|
-----
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-21 15:00:04 +00:00
|
|
|
- Create a new ``config.ini`` file at the root of your working directory, copy-paste
|
|
|
|
the following and replace the **api_id** and **api_hash** values with `your own`_:
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-21 15:00:04 +00:00
|
|
|
.. code:: ini
|
|
|
|
|
|
|
|
[pyrogram]
|
|
|
|
api_id = 12345
|
|
|
|
api_hash = 0123456789abcdef0123456789abcdef
|
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
Usage
|
|
|
|
-----
|
|
|
|
|
|
|
|
- You can now start by running the code below from a new Python file.
|
2017-12-21 15:00:04 +00:00
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
from pyrogram import Client
|
2018-01-02 15:29:15 +00:00
|
|
|
|
|
|
|
# Create and start a new Client
|
2017-12-21 15:00:04 +00:00
|
|
|
client = Client(session_name="example")
|
|
|
|
client.start()
|
2018-01-02 15:29:15 +00:00
|
|
|
|
|
|
|
# Send a text message to yourself (Saved Messages)
|
2017-12-31 10:00:33 +00:00
|
|
|
client.send_message(
|
|
|
|
chat_id="me",
|
|
|
|
text="Hi there! I'm using Pyrogram"
|
|
|
|
)
|
2018-01-02 15:29:15 +00:00
|
|
|
|
|
|
|
# When done, stop the Client
|
|
|
|
client.stop()
|
2017-12-21 15:00:04 +00:00
|
|
|
|
|
|
|
That's all you need for getting started with Pyrogram. For more detailed information,
|
2017-12-31 11:05:44 +00:00
|
|
|
please refer to the documentation:
|
2017-12-21 15:00:04 +00:00
|
|
|
|
2017-12-31 11:05:44 +00:00
|
|
|
- Docs: https://docs.pyrogram.ml.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-11 07:59:11 +00:00
|
|
|
Development
|
|
|
|
===========
|
|
|
|
|
|
|
|
The library is still in its early stages, thus lots of functionalities aiming to
|
2017-12-17 13:28:16 +00:00
|
|
|
make working with Telegram's API easy are yet to be added and documented.
|
2017-12-11 07:59:11 +00:00
|
|
|
|
|
|
|
However, being the core functionalities already implemented, every Telegram API
|
|
|
|
method listed in the API scheme can be used right away; the goal is therefore to
|
|
|
|
build a powerful, simple to use, `bot-like`_ interface on top of those low-level
|
|
|
|
functions.
|
|
|
|
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
=============
|
|
|
|
|
2018-01-06 12:55:22 +00:00
|
|
|
- The entire Pyrogram's documentation resides at https://docs.pyrogram.ml.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
Contribution
|
|
|
|
============
|
|
|
|
|
2017-12-11 07:59:11 +00:00
|
|
|
**You are very welcome to contribute** by either submitting pull requests or
|
|
|
|
reporting issues/bugs as well as suggesting best practices, ideas, enhancements
|
|
|
|
on both code and documentation. Any help is appreciated!
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
Feedback
|
|
|
|
========
|
|
|
|
|
2017-12-11 07:59:11 +00:00
|
|
|
Means for getting in touch:
|
|
|
|
|
2017-12-10 19:43:31 +00:00
|
|
|
- `Telegram`_
|
2017-12-15 08:48:14 +00:00
|
|
|
- `GitHub`_
|
2017-12-10 19:43:31 +00:00
|
|
|
- `Email`_
|
|
|
|
|
2017-12-17 13:22:03 +00:00
|
|
|
|
|
|
|
License
|
|
|
|
=======
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-01 12:44:33 +00:00
|
|
|
- Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
- Licensed under the terms of the
|
|
|
|
`GNU Lesser General Public License v3 or later (LGPLv3+)`_
|
|
|
|
|
|
|
|
|
|
|
|
.. _`Telegram Messenger API`: https://core.telegram.org/api#telegram-api
|
|
|
|
|
|
|
|
.. _`MTProto Mobile Protocol v2.0`: https://core.telegram.org/mtproto
|
|
|
|
|
2018-01-03 10:10:32 +00:00
|
|
|
.. _`Layer 74`: compiler/api/source/main_api.tl
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-21 15:00:04 +00:00
|
|
|
.. _`your own`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started#api-keys
|
|
|
|
|
|
|
|
.. _`Introduction`: https://github.com/pyrogram/pyrogram/wiki/Getting-Started
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-01-02 15:29:15 +00:00
|
|
|
.. _`Telegram`: https://t.me/haskell
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
.. _`bot-like`: https://core.telegram.org/bots/api#available-methods
|
|
|
|
|
2017-12-15 08:48:14 +00:00
|
|
|
.. _`GitHub`: https://github.com/pyrogram/pyrogram/issues
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
.. _`Email`: admin@pyrogram.ml
|
|
|
|
|
|
|
|
.. _`GNU Lesser General Public License v3 or later (LGPLv3+)`: COPYING.lesser
|
|
|
|
|
|
|
|
.. |header| raw:: html
|
|
|
|
|
|
|
|
<h1 align="center">
|
2017-12-12 09:49:44 +00:00
|
|
|
<a href="https://pyrogram.ml">
|
2017-12-27 18:20:17 +00:00
|
|
|
<div><img src="https://pyrogram.ml/images/icon.png" alt="Pyrogram Icon"></div>
|
|
|
|
<div><img src="https://pyrogram.ml/images/label.png" alt="Pyrogram Label"></div>
|
2017-12-10 19:43:31 +00:00
|
|
|
</a>
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<p align="center">
|
|
|
|
<b>Telegram MTProto API Client Library for Python</b>
|
2017-12-21 15:00:04 +00:00
|
|
|
|
2017-12-17 13:22:03 +00:00
|
|
|
<br>
|
2017-12-31 10:00:33 +00:00
|
|
|
<a href="https://pypi.python.org/pypi/Pyrogram">
|
|
|
|
Download
|
|
|
|
</a>
|
|
|
|
•
|
2017-12-30 20:51:51 +00:00
|
|
|
<a href="https://docs.pyrogram.ml">
|
|
|
|
Documentation
|
|
|
|
</a>
|
|
|
|
•
|
2018-01-07 12:11:14 +00:00
|
|
|
<a href="https://t.me/PyrogramChat">
|
2018-01-01 12:44:33 +00:00
|
|
|
Community
|
2017-12-17 13:22:03 +00:00
|
|
|
</a
|
|
|
|
<br><br><br>
|
2017-12-12 09:49:44 +00:00
|
|
|
<a href="compiler/api/source/main_api.tl">
|
2017-12-18 14:02:19 +00:00
|
|
|
<img src="https://www.pyrogram.ml/images/scheme.svg"
|
2018-01-03 10:10:32 +00:00
|
|
|
alt="Scheme Layer 74">
|
2017-12-10 19:43:31 +00:00
|
|
|
</a>
|
2017-12-12 09:49:44 +00:00
|
|
|
<a href="https://core.telegram.org/mtproto">
|
2017-12-18 14:02:19 +00:00
|
|
|
<img src="https://www.pyrogram.ml/images/mtproto.svg"
|
2017-12-10 19:43:31 +00:00
|
|
|
alt="MTProto v2.0">
|
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
|
2017-12-12 09:49:44 +00:00
|
|
|
.. |logo| image:: https://pyrogram.ml/images/logo.png
|
|
|
|
:target: https://pyrogram.ml
|
2017-12-10 19:43:31 +00:00
|
|
|
:alt: Pyrogram
|
|
|
|
|
|
|
|
.. |description| replace:: **Telegram MTProto API Client Library for Python**
|
|
|
|
|
2017-12-18 14:02:19 +00:00
|
|
|
.. |scheme| image:: https://www.pyrogram.ml/images/scheme.svg
|
2017-12-12 09:49:44 +00:00
|
|
|
:target: compiler/api/source/main_api.tl
|
2018-01-03 10:10:32 +00:00
|
|
|
:alt: Scheme Layer 74
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2017-12-18 14:02:19 +00:00
|
|
|
.. |mtproto| image:: https://www.pyrogram.ml/images/mtproto.svg
|
2017-12-12 09:49:44 +00:00
|
|
|
:target: https://core.telegram.org/mtproto
|
|
|
|
:alt: MTProto v2.0
|