gradio-gradio-datetime


Namegradio-gradio-datetime JSON
Version 0.0.4 PyPI version JSON
download
home_pageNone
Summarydatetime for safari
upload_time2024-08-12 10:33:09
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords datetime gradio-custom-component gradio-template-datetime safari
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ---
tags: [gradio-custom-component, DateTime, datetime, safari]
title: gradio_gradio_datetime
short_description: datetime for safari
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---

# `gradio_gradio_datetime`
<a href="https://pypi.org/project/gradio_gradio_datetime/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_gradio_datetime"></a>  

datetime for safari

## Installation

```bash
pip install gradio_gradio_datetime
```

## Usage

```python

import gradio as gr
from gradio_gradio_datetime import gradio_datetime


example = gradio_datetime().example_value()

demo = gr.Interface(
    lambda x:x,
    gradio_datetime(),  # interactive version of your component
    gradio_datetime(),  # static version of your component
    # examples=[[example]],  # uncomment this line to view the "example version" of your component
)


if __name__ == "__main__":
    demo.launch()


```

## `gradio_datetime`

### Initialization

<table>
<thead>
<tr>
<th align="left">name</th>
<th align="left" style="width: 25%;">type</th>
<th align="left">default</th>
<th align="left">description</th>
</tr>
</thead>
<tbody>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">

```python
float | str | datetime.datetime | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">default value for datetime.</td>
</tr>

<tr>
<td align="left"><code>include_time</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True, the component will include time selection. If False, only date selection will be available.</td>
</tr>

<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">

```python
"timestamp" | "datetime" | "string"
```

</td>
<td align="left"><code>"timestamp"</code></td>
<td align="left">The type of the value. Can be "timestamp", "datetime", or "string". If "timestamp", the value will be a number representing the start and end date in seconds since epoch. If "datetime", the value will be a datetime object. If "string", the value will be the date entered by the user.</td>
</tr>

<tr>
<td align="left"><code>timezone</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The timezone to use for timestamps, such as "US/Pacific" or "Europe/Paris". If None, the timezone will be the local timezone.</td>
</tr>

<tr>
<td align="left"><code>label</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The label for this component. Appears above the component and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component is assigned to.</td>
</tr>

<tr>
<td align="left"><code>show_label</code></td>
<td align="left" style="width: 25%;">

```python
bool | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if True, will display label.</td>
</tr>

<tr>
<td align="left"><code>info</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">additional component description.</td>
</tr>

<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">

```python
float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</td>
</tr>

<tr>
<td align="left"><code>scale</code></td>
<td align="left" style="width: 25%;">

```python
int | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>
</tr>

<tr>
<td align="left"><code>min_width</code></td>
<td align="left" style="width: 25%;">

```python
int
```

</td>
<td align="left"><code>160</code></td>
<td align="left">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>
</tr>

<tr>
<td align="left"><code>visible</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will be hidden.</td>
</tr>

<tr>
<td align="left"><code>elem_id</code></td>
<td align="left" style="width: 25%;">

```python
str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">None</td>
</tr>

<tr>
<td align="left"><code>elem_classes</code></td>
<td align="left" style="width: 25%;">

```python
list[str] | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>
</tr>

<tr>
<td align="left"><code>render</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>
</tr>

<tr>
<td align="left"><code>key</code></td>
<td align="left" style="width: 25%;">

```python
int | str | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>
</tr>
</tbody></table>


### Events

| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the gradio_datetime changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |
| `submit` | This listener is triggered when the user presses the Enter key while the gradio_datetime is focused. |



### 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, passes text value as a {str} into the function.
- **As input:** Should return, expects a tuple pair of datetimes.

 ```python
 def predict(
     value: str | float | datetime.datetime | None
 ) -> float | datetime.datetime | str | None:
     return value
 ```
 

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "gradio-gradio-datetime",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "datetime, gradio-custom-component, gradio-template-DateTime, safari",
    "author": null,
    "author_email": "YOUR NAME <YOUREMAIL@domain.com>",
    "download_url": "https://files.pythonhosted.org/packages/72/e5/29a7a304c9b43729d892697296b07e227db64290c744fd5839d9b9cfa648/gradio_gradio_datetime-0.0.4.tar.gz",
    "platform": null,
    "description": "---\ntags: [gradio-custom-component, DateTime, datetime, safari]\ntitle: gradio_gradio_datetime\nshort_description: datetime for safari\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_gradio_datetime`\n<a href=\"https://pypi.org/project/gradio_gradio_datetime/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_gradio_datetime\"></a>  \n\ndatetime for safari\n\n## Installation\n\n```bash\npip install gradio_gradio_datetime\n```\n\n## Usage\n\n```python\n\nimport gradio as gr\nfrom gradio_gradio_datetime import gradio_datetime\n\n\nexample = gradio_datetime().example_value()\n\ndemo = gr.Interface(\n    lambda x:x,\n    gradio_datetime(),  # interactive version of your component\n    gradio_datetime(),  # static version of your component\n    # examples=[[example]],  # uncomment this line to view the \"example version\" of your component\n)\n\n\nif __name__ == \"__main__\":\n    demo.launch()\n\n\n```\n\n## `gradio_datetime`\n\n### Initialization\n\n<table>\n<thead>\n<tr>\n<th align=\"left\">name</th>\n<th align=\"left\" style=\"width: 25%;\">type</th>\n<th align=\"left\">default</th>\n<th align=\"left\">description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nfloat | str | datetime.datetime | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">default value for datetime.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>include_time</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If True, the component will include time selection. If False, only date selection will be available.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\n\"timestamp\" | \"datetime\" | \"string\"\n```\n\n</td>\n<td align=\"left\"><code>\"timestamp\"</code></td>\n<td align=\"left\">The type of the value. Can be \"timestamp\", \"datetime\", or \"string\". If \"timestamp\", the value will be a number representing the start and end date in seconds since epoch. If \"datetime\", the value will be a datetime object. If \"string\", the value will be the date entered by the user.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>timezone</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The timezone to use for timestamps, such as \"US/Pacific\" or \"Europe/Paris\". If None, the timezone will be the local timezone.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The label for this component. Appears above the component and is also used as the header if there are a table of examples for this component. If None and used in a `gr.Interface`, the label will be the name of the parameter this component is assigned to.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>show_label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if True, will display label.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>info</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">additional component description.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nfloat | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">If `value` is a callable, run the function 'every' number of seconds while the client connection is open. Has no effect otherwise. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>scale</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. scale applies in Rows, and to top-level Components in Blocks where fill_height=True.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>min_width</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint\n```\n\n</td>\n<td align=\"left\"><code>160</code></td>\n<td align=\"left\">minimum pixel width, will wrap if not sufficient screen space to satisfy this value. If a certain scale value results in this Component being narrower than min_width, the min_width parameter will be respected first.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>visible</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will be hidden.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_id</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">None</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>elem_classes</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">An optional list of strings that are assigned as the classes of this component in the HTML DOM. Can be used for targeting CSS styles.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>render</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nbool\n```\n\n</td>\n<td align=\"left\"><code>True</code></td>\n<td align=\"left\">If False, component will not render be rendered in the Blocks context. Should be used if the intention is to assign event listeners now but render the component later.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>key</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | str | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">if assigned, will be used to assume identity across a re-render. Components that have the same key across a re-render will have their value preserved.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the gradio_datetime changes either because of user input (e.g. a user types in a textbox) OR because of a function update (e.g. an image receives a value from the output of an event trigger). See `.input()` for a listener that is only triggered by user input. |\n| `submit` | This listener is triggered when the user presses the Enter key while the gradio_datetime is focused. |\n\n\n\n### User function\n\nThe impact on the users predict function varies depending on whether the component is used as an input or output for an event (or both).\n\n- When used as an Input, the component only impacts the input signature of the user function.\n- When used as an output, the component only impacts the return signature of the user function.\n\nThe code snippet below is accurate in cases where the component is used as both an input and an output.\n\n- **As output:** Is passed, passes text value as a {str} into the function.\n- **As input:** Should return, expects a tuple pair of datetimes.\n\n ```python\n def predict(\n     value: str | float | datetime.datetime | None\n ) -> float | datetime.datetime | str | None:\n     return value\n ```\n \n",
    "bugtrack_url": null,
    "license": null,
    "summary": "datetime for safari",
    "version": "0.0.4",
    "project_urls": null,
    "split_keywords": [
        "datetime",
        " gradio-custom-component",
        " gradio-template-datetime",
        " safari"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8059621dc98fbf1caa2fa929067426e87bd74a29236531a8298144821147ba9f",
                "md5": "10641118e007995f7e8b365673ff9ee5",
                "sha256": "fda658fd08e93c80f8af2d6b7504c89aa3b06f29b1fdd87510a6548751e56dd4"
            },
            "downloads": -1,
            "filename": "gradio_gradio_datetime-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "10641118e007995f7e8b365673ff9ee5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 20226,
            "upload_time": "2024-08-12T10:33:07",
            "upload_time_iso_8601": "2024-08-12T10:33:07.626488Z",
            "url": "https://files.pythonhosted.org/packages/80/59/621dc98fbf1caa2fa929067426e87bd74a29236531a8298144821147ba9f/gradio_gradio_datetime-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e529a7a304c9b43729d892697296b07e227db64290c744fd5839d9b9cfa648",
                "md5": "1808731feff2493058322da236804f06",
                "sha256": "ba490df8fc4c700d740ecfe5866a3cc1130e01961aad89675b83bd24d5750ddc"
            },
            "downloads": -1,
            "filename": "gradio_gradio_datetime-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "1808731feff2493058322da236804f06",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 71391,
            "upload_time": "2024-08-12T10:33:09",
            "upload_time_iso_8601": "2024-08-12T10:33:09.897674Z",
            "url": "https://files.pythonhosted.org/packages/72/e5/29a7a304c9b43729d892697296b07e227db64290c744fd5839d9b9cfa648/gradio_gradio_datetime-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-12 10:33:09",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gradio-gradio-datetime"
}
        
Elapsed time: 0.95120s