Gradio component for selecting dates with a calendar 📆
Project description
gradio_calendar
Gradio component for selecting dates with a calendar 📆
Installation
pip install gradio_calendar
Usage
import gradio as gr
from gradio_calendar import Calendar
import datetime
def is_weekday(date: datetime.datetime):
return date.weekday() < 5
demo = gr.Interface(is_weekday,
[Calendar(type="datetime", label="Select a date", info="Click the calendar icon to bring up the calendar.")],
gr.Label(label="Is it a weekday?"),
examples=["2023-01-01", "2023-12-11"],
cache_examples=True,
title="Is it a weekday?")
if __name__ == "__main__":
demo.launch()
Calendar
Initialization
| name | type | default | description |
|---|---|---|---|
value |
str | datetime.datetime
|
None |
None |
type |
"string" | "datetime"
|
"datetime" |
None |
label |
str | None
|
None |
None |
info |
str | None
|
None |
None |
show_label |
bool | None
|
None |
None |
container |
bool
|
True |
None |
scale |
int | None
|
None |
None |
min_width |
int | None
|
None |
None |
interactive |
bool | None
|
None |
None |
visible |
bool
|
True |
None |
elem_id |
str | None
|
None |
None |
elem_classes |
list[str] | str | None
|
None |
None |
render |
bool
|
True |
None |
load_fn |
typing.Optional[typing.Callable[..., typing.Any]][
typing.Callable[..., typing.Any][Ellipsis, typing.Any],
None,
]
|
None |
None |
every |
float | None
|
None |
None |
Events
| name | description |
|---|---|
change |
|
input |
|
submit |
User function
The impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).
- When used as an Input, the component only impacts the input signature of the user function.
- When used as an output, the component only impacts the return signature of the user function.
The code snippet below is accurate in cases where the component is used as both an input and an output.
- As output: Is passed, the preprocessed input data sent to the user's function in the backend.
- As input: Should return, the output data received by the component from the user's function in the backend.
def predict(
value: str | datetime.datetime | None
) -> str | datetime.datetime | None:
return value
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file gradio_calendar-0.0.6.tar.gz.
File metadata
- Download URL: gradio_calendar-0.0.6.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
728addfc07c350d46b69459447eb1e390d87ada0ddaed3457bd78da480eca2ec
|
|
| MD5 |
8321e552d4ffe6951c0cb21acbf9dea9
|
|
| BLAKE2b-256 |
474a2103583da86778756f8b34de1054d08aba68728ed61a8708ed87c1f3ed17
|
File details
Details for the file gradio_calendar-0.0.6-py3-none-any.whl.
File metadata
- Download URL: gradio_calendar-0.0.6-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2431b84ee2228be96770e907a478a4724cc36cc970a10e2b4209c85aa2373e2c
|
|
| MD5 |
99c26fc8737ea69e48e18f575b704a2f
|
|
| BLAKE2b-256 |
f8e52bdb914682a1b1b82e9d0079e68f02e13ad7dc8103431e545688c5432547
|