File size: 351 Bytes
4730c65
 
 
 
 
 
3cd24f4
4730c65
bbc56cd
4730c65
7ec2c4d
 
3cd24f4
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from git import Repo
import os

GITHUB_PAT = os.environ['GITHUB']

if os.path.exists('repo_directory'):
    
else:       
    Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/Charts.git', 'repo_directory'  )
    
import repo_directory.app as app

app.plot_circuits()
app.plot_recent_overtakes()
app.plot_full_season()