2021-06-06 13:31:26 +02:00
|
|
|
import os
|
|
|
|
from dotenv import load_dotenv
|
|
|
|
|
|
|
|
load_dotenv() # take environment variables from .env.
|
|
|
|
|
|
|
|
# Code of your application, which uses environment variables (e.g. from `os.environ` or
|
|
|
|
# `os.getenv`) as if they came from the actual environment.
|
|
|
|
|
|
|
|
# os.system("alias python3=python")
|
|
|
|
|
2021-06-14 07:30:52 +02:00
|
|
|
|
2021-06-06 13:31:26 +02:00
|
|
|
def runSetup():
|
2021-06-14 07:30:52 +02:00
|
|
|
def alert(missing="API_ID , API_HASH"):
|
|
|
|
print(
|
|
|
|
f"\nCopy your {missing} and save it into Secrets(Environment variables) Sidebar!\n"
|
|
|
|
)
|
|
|
|
|
|
|
|
api_id = os.getenv("API_ID")
|
|
|
|
if api_id is None:
|
|
|
|
alert()
|
|
|
|
return
|
2021-06-06 13:31:26 +02:00
|
|
|
|
2021-06-14 07:30:52 +02:00
|
|
|
session_string = os.getenv("SESSION_STRING")
|
|
|
|
if session_string is None:
|
|
|
|
os.system("python app/generate_session_string.py")
|
|
|
|
alert(missing="SESSION_STRING")
|
|
|
|
return
|
2021-06-06 13:31:26 +02:00
|
|
|
|
2021-06-14 07:30:52 +02:00
|
|
|
os.system("python -m app")
|
2021-06-06 13:31:26 +02:00
|
|
|
|
|
|
|
|
2021-06-14 07:30:52 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
runSetup()
|