MTPyroger/README.rst

124 lines
4.2 KiB
ReStructuredText
Raw Normal View History

2017-12-10 19:43:31 +00:00
|header|
2018-06-24 12:22:50 +00:00
Pyrogram
========
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
**Pyrogram** is a brand new Telegram_ Client Library written from the ground up in Python and C. It can be used for
building 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 91 on top of MTProto 2.0.
2018-06-24 12:22:50 +00:00
- **Documented**: The Pyrogram API is well documented and resembles the Telegram Bot API.
2018-04-16 17:56:24 +00:00
- **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-06-24 12:22:50 +00:00
Pyrogram is brand new, and **you are welcome to try it and help make it even better** by either submitting pull
2018-03-24 16:22:57 +00:00
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
2019-01-03 17:27:47 +00:00
- Copyright (C) 2017-2019 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">
2018-09-19 15:47:14 +00:00
<div><img src="https://raw.githubusercontent.com/pyrogram/logos/master/logos/pyrogram_logo2.png" alt="Pyrogram Logo"></div>
2017-12-10 19:43:31 +00:00
</a>
</h1>
<p align="center">
<b>Telegram MTProto API Client Library for Python</b>
2018-09-19 15:47:14 +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>
2018-10-16 13:13:30 +00:00
<br>
2017-12-12 09:49:44 +00:00
<a href="compiler/api/source/main_api.tl">
<img src="https://img.shields.io/badge/schema-layer%2091-eda738.svg?longCache=true&colorA=262b30"
2018-10-16 13:13:30 +00:00
alt="Schema Layer">
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-10-16 13:13:30 +00:00
<img src="https://img.shields.io/badge/tgcrypto-v1.1.1-eda738.svg?longCache=true&colorA=262b30"
2018-02-17 14:35:49 +00:00
alt="TgCrypto">
2017-12-10 19:43:31 +00:00
</a>
</p>
2018-09-19 15:47:14 +00:00
.. |logo| image:: https://raw.githubusercontent.com/pyrogram/logos/master/logos/pyrogram_logo2.png
2017-12-12 09:49:44 +00:00
:target: https://pyrogram.ml
2017-12-10 19:43:31 +00:00
:alt: Pyrogram
.. |description| replace:: **Telegram MTProto API Client Library for Python**
.. |scheme| image:: "https://img.shields.io/badge/schema-layer%2091-eda738.svg?longCache=true&colorA=262b30"
2017-12-12 09:49:44 +00:00
:target: compiler/api/source/main_api.tl
2018-06-24 12:22:50 +00:00
:alt: Scheme Layer
2017-12-10 19:43:31 +00:00
.. |tgcrypto| image:: "https://img.shields.io/badge/tgcrypto-v1.1.1-eda738.svg?longCache=true&colorA=262b30"
2018-02-17 14:35:49 +00:00
:target: https://github.com/pyrogram/tgcrypto
:alt: TgCrypto