Spaces:
Running
Running
tracinginsights
commited on
Commit
•
417af91
1
Parent(s):
4479736
Create Weekend_Results.py
Browse files- pages/Weekend_Results.py +12 -0
pages/Weekend_Results.py
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from repo_directory import Weekend_Results
|
3 |
+
|
4 |
+
from repo_directory import button
|
5 |
+
|
6 |
+
|
7 |
+
GRANDPRIX = st.text_input("Grand Prix Name, eg.Monaco")
|
8 |
+
|
9 |
+
URL = st.text_input(label="GP URL from Formula1.com in this format", value="https://www.formula1.com/en/results.html/2023/races/1211/spain")
|
10 |
+
|
11 |
+
|
12 |
+
Weekend_Results.plot(GRANDPRIX, URL)
|