2018-06-05 14:36:37 +00:00
|
|
|
Installation
|
|
|
|
============
|
|
|
|
|
|
|
|
Being a Python library, Pyrogram requires Python to be installed in your system.
|
|
|
|
We recommend using the latest version of Python 3 and pip.
|
|
|
|
|
2018-10-14 09:47:30 +00:00
|
|
|
Get Python 3 from https://www.python.org/downloads/ (or with your package manager) and pip
|
2018-06-05 14:36:37 +00:00
|
|
|
by following the instructions at https://pip.pypa.io/en/latest/installing/.
|
|
|
|
|
2018-10-14 09:47:30 +00:00
|
|
|
.. important::
|
|
|
|
|
|
|
|
Pyrogram supports **Python 3** only, starting from version 3.4. **PyPy** is supported too.
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
Install Pyrogram
|
|
|
|
----------------
|
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
- The easiest way to install and upgrade Pyrogram to its latest stable version is by using **pip**:
|
2018-06-05 14:36:37 +00:00
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
.. code-block:: text
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
$ pip3 install --upgrade pyrogram
|
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
- or, with TgCrypto_ as extra requirement (recommended):
|
2018-06-05 14:36:37 +00:00
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
.. code-block:: text
|
2018-06-05 14:36:37 +00:00
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
$ pip3 install --upgrade pyrogram[fast]
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
Bleeding Edge
|
|
|
|
-------------
|
|
|
|
|
|
|
|
If you want the latest development version of Pyrogram, you can install it straight from the develop_
|
2018-10-14 09:47:30 +00:00
|
|
|
branch using this command (you might need to install **git** first):
|
2018-06-05 14:36:37 +00:00
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
.. code-block:: text
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
$ pip3 install --upgrade git+https://github.com/pyrogram/pyrogram.git
|
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
Asynchronous
|
|
|
|
------------
|
|
|
|
|
|
|
|
Pyrogram heavily depends on IO-bound network code (it's a cloud-based messaging client library after all), and here's
|
|
|
|
where asyncio shines the most by providing extra performance while running on a single OS-level thread only.
|
|
|
|
|
|
|
|
**A fully asynchronous variant of Pyrogram is therefore available** (Python 3.5+ required).
|
|
|
|
Use this command to install:
|
|
|
|
|
|
|
|
.. code-block:: text
|
|
|
|
|
|
|
|
$ pip3 install --upgrade git+https://github.com/pyrogram/pyrogram.git@asyncio
|
|
|
|
|
|
|
|
|
2018-11-03 13:24:02 +00:00
|
|
|
Pyrogram API remains the same and features are kept up to date from the non-async, default develop branch, but you
|
|
|
|
are obviously required Python asyncio knowledge in order to take full advantage of it.
|
2018-10-16 23:07:33 +00:00
|
|
|
|
|
|
|
|
2018-11-03 13:24:02 +00:00
|
|
|
.. tip::
|
2018-10-16 23:07:33 +00:00
|
|
|
|
|
|
|
The idea to turn Pyrogram fully asynchronous is still under consideration, but is wise to expect that in future this
|
|
|
|
would be the one and only way to work with Pyrogram.
|
|
|
|
|
2018-11-03 13:24:02 +00:00
|
|
|
You can start using Pyrogram Async variant right now as an excuse to learn more about asynchronous programming and
|
|
|
|
do experiments with it!
|
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
.. raw:: html
|
|
|
|
|
|
|
|
<script async
|
|
|
|
src="https://telegram.org/js/telegram-widget.js?4"
|
|
|
|
data-telegram-post="Pyrogram/4"
|
|
|
|
data-width="100%">
|
|
|
|
</script>
|
|
|
|
|
|
|
|
.. centered:: Subscribe to `@Pyrogram <https://t.me/Pyrogram>`_ for news and announcements
|
|
|
|
|
2018-06-05 14:36:37 +00:00
|
|
|
Verifying
|
|
|
|
---------
|
|
|
|
|
|
|
|
To verify that Pyrogram is correctly installed, open a Python shell and import it.
|
|
|
|
If no error shows up you are good to go.
|
|
|
|
|
2018-10-16 23:07:33 +00:00
|
|
|
.. code-block:: python
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
>>> import pyrogram
|
|
|
|
>>> pyrogram.__version__
|
2018-11-03 13:24:02 +00:00
|
|
|
'0.9.0'
|
2018-06-05 14:36:37 +00:00
|
|
|
|
|
|
|
.. _TgCrypto: https://docs.pyrogram.ml/resources/TgCrypto
|
2018-10-16 23:07:33 +00:00
|
|
|
.. _develop: http://github.com/pyrogram/pyrogram
|