Spaces:
Running
Running
File size: 713 Bytes
4730c65 aa20908 0d98e0c 4730c65 3179558 0d98e0c 32835c7 0d98e0c 32835c7 6cb2101 8b1263a 6cb2101 0d98e0c 32835c7 6cb2101 b389ba6 6cb2101 b389ba6 6cb2101 32835c7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
from git import Repo
import os
import streamlit as st
GITHUB_PAT = os.environ['GITHUB']
if not os.path.exists('repo_directory'):
Repo.clone_from(f'https://tracinginsights:{GITHUB_PAT}@github.com/TracingInsights/F1_analysis.git', 'repo_directory' )
from repo_directory import button
# option = app.select_gp()
# app.plot_recent_overtakes(option)
# app.plot_full_season()
# app.plot_circuits()
from multipage import MultiPage
from repo_directory import Race_Launch_Performance_Ratings
# Create an instance of the app
multiapp = MultiPage()
# Add all your application here
multiapp.add_page("Race_Launch_Performance_Ratings", Race_Launch_Performance_Ratings.app)
# The main app
multiapp.run()
|