forked from SiapadiAx/blum-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabc
30 lines (22 loc) · 876 Bytes
/
abc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Software for Blum telegram Bot
## Requirements
- Python 3.11 (you can install it [here](https://www.python.org/downloads/release/python-3110/))
- Telegram API_ID and API_HASH (you can get them [here](https://my.telegram.org/auth?to=apps))
1. Install the required dependencies:
```bash
pip install -r requirements.txt
```
2. Get your API_ID and API_HASH:
- Go to [my.telegram.org](https://my.telegram.org/auth?to=apps)
- Sign in with your Telegram account
- Create a new application to get your API_ID and API_HASH
3. Configure the application:
- Open `config.py` and add your `API_ID` and `API_HASH`:
```python
API_ID = your_api_id
API_HASH = 'your_api_hash'
```
- If you want to use a proxy, set `USE_PROXY` in `config.py` to `True`, otherwise set it to `False`:
```python
USE_PROXY = True # or False
```