What is the best way to have a user enter a time in Flask WT Forms?

Solution
from wtforms_components import TimeField

class YourForm(FlaskForm):
    ...
    time = TimeField('Time')