File size: 1,411 Bytes
e8a3017
 
 
2e9deee
b05b246
e8a3017
f877b1c
 
 
 
 
 
 
 
 
 
 
 
e8a3017
 
 
 
 
b05b246
 
2e9deee
4069b44
 
 
 
 
 
 
 
c346f95
4069b44
 
 
 
 
 
 
9a959bf
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
32
33
34
35
36
37
38
39
40
41
42
43
44
from git import Repo
import os
import streamlit as st    

from PIL import Image

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!"
    # }
)

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.st_functions import st_button, load_css
from repo_directory import button

load_css()

col1, col2, col3 = st.columns(3)
col2.image(Image.open('Logo.png'))


st.header('Tracing Insights')

st.info("Home for F1 data-driven analytics, pre-race predictions, post-race analysis, dank memes you won't find anywhere else")

icon_size = 20

st_button('youtube', 'https://www.youtube.com/@TracingInsights', 'Tracing Insights YouTube channel', icon_size)
st_button('twitter', 'https://twitter.com/tracinginsights', 'Follow me on Twitter', icon_size)
st_button('newsletter', 'https://tracinginsights.substack.com/', 'Sign up for my Newsletter', icon_size)
st_button('cup', 'https://www.buymeacoffee.com/tracinginsights', 'Buy me a Coffee', icon_size)