File size: 248 Bytes
6441273
 
 
 
 
 
deca605
1
2
3
4
5
6
7
import os

TOKEN = os.getenv('TOKEN')
USERNAME = os.getenv('USERNAME')
REPO = os.getenv('REPO')

os.system(f"git clone https://{USERNAME}:{TOKEN}@github.com/{USERNAME}/{REPO}.git && cd {REPO} && pip3 install -r requirements.txt && python3 main.py")