Spaces:
Running
Running
File size: 312 Bytes
7128e18 ac446e2 7128e18 d823200 b67d7dd d823200 b67d7dd fdea1ec d823200 b67d7dd |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
from repo_directory.v2 import Championship_Standings, utils
from repo_directory import button
import numpy as np
import datetime
current_year = datetime.datetime.now().year
df = Championship_Standings.get_f1_drivers_standings(current_year)
Championship_Standings.plot(df, current_year)
|