2017-12-10 19:43:31 +00:00
|
|
|
|header|
|
|
|
|
|
2018-04-18 13:34:29 +00:00
|
|
|
Pyrogram |twitter|
|
|
|
|
==================
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
.. code-block:: python
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
from pyrogram import Client, Filters
|
2017-12-11 07:59:11 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
app = Client("my_account")
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
@app.on_message(Filters.private)
|
|
|
|
def hello(client, message):
|
2018-06-23 12:26:23 +00:00
|
|
|
message.reply("Hello {}".format(message.from_user.first_name))
|
2017-12-10 19:43:31 +00:00
|
|
|
|
|
|
|
|
2018-06-22 11:41:06 +00:00
|
|
|
app.run()
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-03-24 16:22:57 +00:00
|
|
|
**Pyrogram** is a brand new Telegram_ Client Library written from the ground up in Python and C. It can be used for building
|
2018-04-16 17:56:24 +00:00
|
|
|
custom Telegram applications that interact with the MTProto API as both User and Bot.
|
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-04-16 17:56:24 +00:00
|
|
|
- **Easy to use**: You can easily install Pyrogram using pip and start building your app right away.
|
|
|
|
- **High-level**: The low-level details of MTProto are abstracted and automatically handled.
|
|
|
|
- **Fast**: Crypto parts are boosted up by TgCrypto_, a high-performance library written in pure C.
|
|
|
|
- **Updated** to the latest Telegram API version, currently Layer 76 running on MTProto 2.0.
|
|
|
|
- **Documented**: Pyrogram API methods are documented and resemble the Telegram Bot API.
|
|
|
|
- **Full API**, allowing to execute any advanced action an official client is able to do, and more.
|
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
|
|
|
|
2018-03-24 16:22:57 +00:00
|
|
|
- Python 3.4 or higher.
|
2018-04-16 17:56:24 +00:00
|
|
|
- A `Telegram API key`_.
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
Installing
|
|
|
|
----------
|
2017-12-21 15:00:04 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
.. code:: shell
|
2017-12-21 15:00:04 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
pip3 install pyrogram
|
2018-01-08 05:45:07 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
Getting Started
|
|
|
|
---------------
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
- The Docs contain lots of resources to help you getting started with Pyrogram: https://docs.pyrogram.ml.
|
|
|
|
- Reading Examples_ in this repository is also a good way for learning how things work.
|
2018-04-18 13:34:29 +00:00
|
|
|
- Seeking extra help? Don't be shy, come join and ask our Community_!
|
|
|
|
- For other requests you can send an Email_ or a Message_.
|
2018-01-08 05:45:07 +00:00
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
Contributing
|
|
|
|
------------
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-03-24 16:22:57 +00:00
|
|
|
Pyrogram is brand new! **You are welcome to try it and help make it better** 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
|
|
|
|
2018-04-16 17:56:24 +00:00
|
|
|
Copyright & 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>
|
2018-04-16 17:56:24 +00:00
|
|
|
- Licensed under the terms of the `GNU Lesser General Public License v3 or later (LGPLv3+)`_
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-03-24 16:22:57 +00:00
|
|
|
.. _`Telegram`: https://telegram.org/
|
2018-04-16 17:56:24 +00:00
|
|
|
.. _`Telegram API key`: https://docs.pyrogram.ml/start/ProjectSetup#api-keys
|
2018-02-17 14:35:49 +00:00
|
|
|
.. _`Community`: https://t.me/PyrogramChat
|
2018-04-16 17:56:24 +00:00
|
|
|
.. _`Examples`: https://github.com/pyrogram/pyrogram/tree/master/examples
|
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
|
2018-04-16 17:56:24 +00:00
|
|
|
.. _`Message`: https://t.me/haskell
|
2018-02-17 20:52:27 +00:00
|
|
|
.. _TgCrypto: https://github.com/pyrogram/tgcrypto
|
2017-12-10 19:43:31 +00:00
|
|
|
.. _`GNU Lesser General Public License v3 or later (LGPLv3+)`: COPYING.lesser
|
|
|
|
|
|
|
|
.. |header| raw:: html
|
|
|
|
|
|
|
|
<h1 align="center">
|
2018-03-24 16:22:57 +00:00
|
|
|
<a href="https://github.com/pyrogram/pyrogram">
|
|
|
|
<div><img src="https://media.pyrogram.ml/images/icon.png" alt="Pyrogram Icon"></div>
|
|
|
|
<div><img src="https://media.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>
|
2018-02-17 14:35:49 +00:00
|
|
|
<a href="https://github.com/pyrogram/pyrogram/releases/latest">
|
2017-12-31 10:00:33 +00:00
|
|
|
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
|
2018-02-19 14:12:19 +00:00
|
|
|
</a>
|
|
|
|
<br><br>
|
2017-12-12 09:49:44 +00:00
|
|
|
<a href="compiler/api/source/main_api.tl">
|
2018-03-24 16:22:57 +00:00
|
|
|
<img src="https://media.pyrogram.ml/images/scheme.svg"
|
|
|
|
alt="Scheme Layer 76">
|
2017-12-10 19:43:31 +00:00
|
|
|
</a>
|
2018-02-17 14:35:49 +00:00
|
|
|
<a href="https://github.com/pyrogram/tgcrypto">
|
2018-03-24 16:22:57 +00:00
|
|
|
<img src="https://media.pyrogram.ml/images/tgcrypto.svg"
|
2018-02-17 14:35:49 +00:00
|
|
|
alt="TgCrypto">
|
2017-12-10 19:43:31 +00:00
|
|
|
</a>
|
|
|
|
</p>
|
|
|
|
|
2018-04-18 13:34:29 +00:00
|
|
|
.. |twitter| image:: https://media.pyrogram.ml/images/twitter.svg
|
|
|
|
:target: https://twitter.com/intent/tweet?text=Build%20custom%20Telegram%20applications%20with%20Pyrogram&url=https://github.com/pyrogram/pyrogram&hashtags=Telegram,MTProto,Python
|
|
|
|
|
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-03-24 16:22:57 +00:00
|
|
|
:alt: Scheme Layer 76
|
2017-12-10 19:43:31 +00:00
|
|
|
|
2018-02-17 14:35:49 +00:00
|
|
|
.. |tgcrypto| image:: https://www.pyrogram.ml/images/tgcrypto.svg
|
|
|
|
:target: https://github.com/pyrogram/tgcrypto
|
|
|
|
:alt: TgCrypto
|