Spaces:
Running
Running
File size: 370 Bytes
4730c65 3179558 bbc56cd 4730c65 7ec2c4d a0c6e3c 39aca5d 621f493 8b1263a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from git import Repo
import os
GITHUB_PAT = os.environ['GITHUB']
if not os.path.exists('repo_directory'):
Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/Charts.git', 'repo_directory' )
import repo_directory.app as app
option = app.select_gp()
app.plot_recent_overtakes(option)
app.plot_full_season()
app.plot_circuits()
|