Hi, to your attention USER BOT TELEGRAM

Use the official documentation or the tips below:
1.Visit https://my.telegram.org/apps and log in with your Telegram Account.
2.Fill out the form with your details and register a new Telegram application.
3.Done. The API key consists of two parts: api_id and api_hash. Keep it secret.
Configuration
Having the API key from the previous step in handy, we can now begin to configure a Pyrogram project. There are two ways to do so, and you can choose what fits better for you:
First option: create a new
config.inifile 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.[pyrogram] api_id = 12345 api_hash = 0123456789abcdef0123456789abcdef
