Spaces:
Running
Running
File size: 339 Bytes
4730c65 3179558 bbc56cd 4730c65 7ec2c4d 3cd24f4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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
app.plot_circuits()
app.plot_recent_overtakes()
app.plot_full_season()
|