Spaces:
Running
Running
tracinginsights
commited on
Commit
•
b2763f7
1
Parent(s):
14a7c66
Update app.py
Browse files
app.py
CHANGED
@@ -8,10 +8,10 @@ GITHUB_PAT = os.environ['GITHUB']
|
|
8 |
if not os.path.exists('repo_directory'):
|
9 |
Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/F1_analysis.git', 'repo_directory' )
|
10 |
|
11 |
-
from repo_directory
|
12 |
-
from repo_directory
|
13 |
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
8 |
if not os.path.exists('repo_directory'):
|
9 |
Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/F1_analysis.git', 'repo_directory' )
|
10 |
|
11 |
+
from repo_directory import button
|
12 |
+
from repo_directory import Overtakes
|
13 |
|
14 |
+
option = Overtakes.select_gp()
|
15 |
+
Overtakes.plot_recent_overtakes(option)
|
16 |
+
Overtakes.plot_full_season()
|
17 |
+
Overtakes.plot_circuits()
|