Time Input
Allows selection of a specific time.
Examples
Basic Example
The following example demonstrate some of the available functionality for read_time
from abstra.forms import read_time
ans = read_time("Select a time below")
# ans = 00:00:00
Parameters
Name | Description | Type |
---|---|---|
label | The label to display to the user | str |
initial_value | The initial value to display to the user. Defaults to "00:00". | str or datetime.time |
format | Whether the input is in the format 24hs or AM/PM. Defaults to "24hs". | str |
disabled | whether the input is disabled. Defaults to False. | bool |
required | Whether the input is required or not eg. "this field is required". Defaults to True. | Union[bool, str] |
hint | A tooltip displayed to the user. Defaults to None. | str |
full_width | Whether the input should use full screen width. Defaults to False. | bool |
button_text | What text to display on the button when the widget is not part of a Page. Defaults to 'Next'. | str |
Return Values
Type | Description |
---|---|
datetime.time | A datetime.time object representing the value entered by the user |