-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathcreds.py
More file actions
18 lines (13 loc) · 717 Bytes
/
creds.py
File metadata and controls
18 lines (13 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv())
class cred():
BOT_TOKEN = os.getenv("BOT_TOKEN") #From botfather
API_ID = os.getenv("API_ID") #"Get this value from my.telegram.org! Please do not steal"
API_HASH = os.getenv("API_HASH") #"Get this value from my.telegram.org! Please do not steal"
DB_URL = os.getenv("DB_URL") #From Firebase database
####From Truecaller and Eyecon app request headers respectively########
T_AUTH = os.getenv("T_AUTH") # Truecaller auth id CA
E_AUTH = os.getenv("E_AUTH") # Eyecon auth id
E_AUTH_V=os.getenv("E_AUTH_V") # Eyecon auth_v
E_AUTH_C=os.getenv("E_AUTH_C") # Eyecon auth_c