pyrogram/docs/source/intro/setup.rst

61 lines
2.0 KiB
ReStructuredText
Raw Normal View History

2019-05-10 14:14:10 +00:00
Project Setup
=============
2019-05-28 14:41:55 +00:00
We have just :doc:`installed Pyrogram <install>`. In this page we'll discuss what you need to do in order to set up a
2022-01-07 09:18:51 +00:00
project with the framework.
2019-05-10 14:14:10 +00:00
2020-04-01 18:08:46 +00:00
.. contents:: Contents
:backlinks: none
:depth: 1
2020-04-01 18:08:46 +00:00
:local:
-----
2019-05-10 14:14:10 +00:00
API Keys
--------
The very first step requires you to obtain a valid Telegram API key (API id/hash pair):
#. Visit https://my.telegram.org/apps and log in with your Telegram Account.
2022-01-07 09:18:51 +00:00
#. Fill out the form with your details and register a new Telegram application.
#. Done. The API key consists of two parts: **api_id** and **api_hash**. Keep it secret.
2019-05-10 14:14:10 +00:00
.. note::
2022-01-07 09:18:51 +00:00
The API key defines a token for a Telegram *application* you are going to build.
This means that you are able to authorize multiple users or bots with a single API key.
2019-05-10 14:14:10 +00:00
Configuration
-------------
2019-05-28 14:41:55 +00:00
Having the API key from the previous step in handy, we can now begin to configure a Pyrogram project.
2019-05-10 14:14:10 +00:00
There are two ways to do so, and you can choose what fits better for you:
2022-01-07 09:18:51 +00:00
- First option: create a new ``config.ini`` file next to your main script, copy-paste the following and
replace the *api_id* and *api_hash* values with your own. This method allows you to keep your credentials out of
your code without having to deal with how to load them.
2019-05-10 14:14:10 +00:00
.. code-block:: ini
[pyrogram]
api_id = 12345
api_hash = 0123456789abcdef0123456789abcdef
- Alternatively, you can pass your API key to Pyrogram by simply using the *api_id* and *api_hash* parameters of the
2022-01-07 09:18:51 +00:00
Client class. This way you can have full control on how to store and load your credentials:
2019-05-10 14:14:10 +00:00
.. code-block:: python
from pyrogram import Client
app = Client(
"my_account",
api_id=12345,
api_hash="0123456789abcdef0123456789abcdef"
)
.. note::
To keep code snippets clean and concise, from now on it is assumed you are making use of the ``config.ini`` file,
thus, the *api_id* and *api_hash* parameters usage won't be shown anymore.