I wanted to implement a date picker in some of my apps, via the code below:
import streamlit as st
import time
import datetime
from datetime import datetime, date, time
st.header("Official Date Picker")
st.date_input('start date')
st.date_input('end date')
All works fine however selecting dates via the date-picker can be slow at times (see an example in the Gif below, where the month value is stuck to “September 2020” despite clicking on the left arrow several times)