Spaces:
Running
Running
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/Charts.git', 'repo_directory' ) | |
st.set_page_config( | |
page_title="TRACING INSIGHTS", | |
page_icon=None, | |
layout="wide", | |
initial_sidebar_state="expanded", | |
# menu_items={ | |
# 'Get Help': 'https://www.extremelycoolapp.com/help', | |
# 'Report a bug': "https://www.extremelycoolapp.com/bug", | |
# 'About': "# This is a header. This is an *extremely* cool app!" | |
# } | |
) | |
import repo_directory.app as app | |
option = app.select_gp() | |
app.plot_recent_overtakes(option) | |
app.plot_full_season() | |
app.plot_circuits() | |