---
tags: [gradio-custom-component, UploadButton]
title: gradio_neouploadbutton
short_description: A gradio custom component
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---
# `gradio_neouploadbutton`
<a href="https://pypi.org/project/gradio_neouploadbutton/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_neouploadbutton"></a>
A custom upload button for Gradio that allows users to upload with a loading message
## Installation
```bash
pip install gradio_neouploadbutton
```
## Usage
```python
import gradio as gr
from gradio_neouploadbutton import NeoUploadButton
example = NeoUploadButton().example_value()
with gr.Blocks() as demo:
button = NeoUploadButton(
value=example, label="Load a file", loading_message="... Loading ..."
) # populated component
button2 = NeoUploadButton(
label="Charger un fichier", loading_message="... Chargement ..."
) # empty component
file = gr.File() # output component
button.upload(fn=lambda x: x, inputs=button, outputs=file)
button2.upload(fn=lambda x: x, inputs=button2, outputs=file)
if __name__ == "__main__":
demo.launch()
```
## `NeoUploadButton`
### 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>label</code></td>
<td align="left" style="width: 25%;">
```python
str
```
</td>
<td align="left"><code>"Upload a File"</code></td>
<td align="left">Text to display on the button. Defaults to "Upload a File".</td>
</tr>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">
```python
str | list[str] | Callable | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">File or list of files to upload by default.</td>
</tr>
<tr>
<td align="left"><code>every</code></td>
<td align="left" style="width: 25%;">
```python
Timer | float | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>
</tr>
<tr>
<td align="left"><code>inputs</code></td>
<td align="left" style="width: 25%;">
```python
Component | Sequence[Component] | set[Component] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>
</tr>
<tr>
<td align="left"><code>variant</code></td>
<td align="left" style="width: 25%;">
```python
Literal["primary", "secondary", "stop"]
```
</td>
<td align="left"><code>"secondary"</code></td>
<td align="left">'primary' for main call-to-action, 'secondary' for a more subdued style, 'stop' for a stop button.</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>size</code></td>
<td align="left" style="width: 25%;">
```python
Literal["sm", "lg"] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Size of the button. Can be "sm" or "lg".</td>
</tr>
<tr>
<td align="left"><code>icon</code></td>
<td align="left" style="width: 25%;">
```python
str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">URL or path to the icon file to display within the button. If None, no icon will be displayed.</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 | None
```
</td>
<td align="left"><code>None</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>interactive</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If False, the NeoUploadButton will be in a disabled state.</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">An optional string that is assigned as the id of this component in the HTML DOM. Can be used for targeting CSS styles.</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>
<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">
```python
Literal["filepath", "bytes"]
```
</td>
<td align="left"><code>"filepath"</code></td>
<td align="left">Type of value to be returned by component. "file" returns a temporary file object with the same base name as the uploaded file, whose full path can be retrieved by file_obj.name, "binary" returns an bytes object.</td>
</tr>
<tr>
<td align="left"><code>file_count</code></td>
<td align="left" style="width: 25%;">
```python
Literal["single", "multiple", "directory"]
```
</td>
<td align="left"><code>"single"</code></td>
<td align="left">if single, allows user to upload one file. If "multiple", user uploads multiple files. If "directory", user uploads all files in selected directory. Return type will be list for each file in case of "multiple" or "directory".</td>
</tr>
<tr>
<td align="left"><code>file_types</code></td>
<td align="left" style="width: 25%;">
```python
list[str] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">List of type of files to be uploaded. "file" allows any file to be uploaded, "image" allows only image files to be uploaded, "audio" allows only audio files to be uploaded, "video" allows only video files to be uploaded, "text" allows only text files to be uploaded.</td>
</tr>
<tr>
<td align="left"><code>loading_message</code></td>
<td align="left" style="width: 25%;">
```python
str | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">the custom message displayed while loading. If None, no message will be displayed.</td>
</tr>
</tbody></table>
### Events
| name | description |
|:-----|:------------|
| `click` | Triggered when the NeoUploadButton is clicked. |
| `upload` | This listener is triggered when the user uploads a file into the NeoUploadButton. |
### 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 the file as a `str` or `bytes` object, or a list of `str` or list of `bytes` objects, depending on `type` and `file_count`.
- **As input:** Should return, expects a `str` filepath or URL, or a `list[str]` of filepaths/URLs.
```python
def predict(
value: bytes | str | list[bytes] | list[str] | None
) -> str | list[str] | None:
return value
```
Raw data
{
"_id": null,
"home_page": null,
"name": "gradio-neouploadbutton",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "gradio-custom-component, gradio-template-UploadButton",
"author": null,
"author_email": "ngaudemet <nicolaenji@yahoo.com>",
"download_url": "https://files.pythonhosted.org/packages/c5/27/efc6b6d0ad898c3a4470461182f6293921bbed29797abf1fa7e1992114cf/gradio_neouploadbutton-0.0.9.tar.gz",
"platform": null,
"description": "---\ntags: [gradio-custom-component, UploadButton]\ntitle: gradio_neouploadbutton\nshort_description: A gradio custom component\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_neouploadbutton`\n<a href=\"https://pypi.org/project/gradio_neouploadbutton/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_neouploadbutton\"></a> \n\nA custom upload button for Gradio that allows users to upload with a loading message\n\n## Installation\n\n```bash\npip install gradio_neouploadbutton\n```\n\n## Usage\n\n```python\nimport gradio as gr\nfrom gradio_neouploadbutton import NeoUploadButton\n\n\nexample = NeoUploadButton().example_value()\n\nwith gr.Blocks() as demo:\n button = NeoUploadButton(\n value=example, label=\"Load a file\", loading_message=\"... Loading ...\"\n ) # populated component\n button2 = NeoUploadButton(\n label=\"Charger un fichier\", loading_message=\"... Chargement ...\"\n ) # empty component\n\n file = gr.File() # output component\n button.upload(fn=lambda x: x, inputs=button, outputs=file)\n button2.upload(fn=lambda x: x, inputs=button2, outputs=file)\n\n\nif __name__ == \"__main__\":\n demo.launch()\n\n```\n\n## `NeoUploadButton`\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>label</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr\n```\n\n</td>\n<td align=\"left\"><code>\"Upload a File\"</code></td>\n<td align=\"left\">Text to display on the button. Defaults to \"Upload a File\".</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | list[str] | Callable | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">File or list of files to upload by default.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>every</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nTimer | float | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Continously calls `value` to recalculate it if `value` is a function (has no effect otherwise). Can provide a Timer whose tick resets `value`, or a float that provides the regular interval for the reset Timer.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>inputs</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nComponent | Sequence[Component] | set[Component] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Components that are used as inputs to calculate `value` if `value` is a function (has no effect otherwise). `value` is recalculated any time the inputs change.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>variant</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"primary\", \"secondary\", \"stop\"]\n```\n\n</td>\n<td align=\"left\"><code>\"secondary\"</code></td>\n<td align=\"left\">'primary' for main call-to-action, 'secondary' for a more subdued style, 'stop' for a stop button.</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>size</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"sm\", \"lg\"] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Size of the button. Can be \"sm\" or \"lg\".</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>icon</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\">URL or path to the icon file to display within the button. If None, no icon will be displayed.</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 | None\n```\n\n</td>\n<td align=\"left\"><code>None</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>interactive</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, the NeoUploadButton will be in a disabled state.</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\">An optional string that is assigned as the id 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>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\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"filepath\", \"bytes\"]\n```\n\n</td>\n<td align=\"left\"><code>\"filepath\"</code></td>\n<td align=\"left\">Type of value to be returned by component. \"file\" returns a temporary file object with the same base name as the uploaded file, whose full path can be retrieved by file_obj.name, \"binary\" returns an bytes object.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>file_count</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nLiteral[\"single\", \"multiple\", \"directory\"]\n```\n\n</td>\n<td align=\"left\"><code>\"single\"</code></td>\n<td align=\"left\">if single, allows user to upload one file. If \"multiple\", user uploads multiple files. If \"directory\", user uploads all files in selected directory. Return type will be list for each file in case of \"multiple\" or \"directory\".</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>file_types</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[str] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">List of type of files to be uploaded. \"file\" allows any file to be uploaded, \"image\" allows only image files to be uploaded, \"audio\" allows only audio files to be uploaded, \"video\" allows only video files to be uploaded, \"text\" allows only text files to be uploaded.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>loading_message</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 custom message displayed while loading. If None, no message will be displayed.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `click` | Triggered when the NeoUploadButton is clicked. |\n| `upload` | This listener is triggered when the user uploads a file into the NeoUploadButton. |\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 the file as a `str` or `bytes` object, or a list of `str` or list of `bytes` objects, depending on `type` and `file_count`.\n- **As input:** Should return, expects a `str` filepath or URL, or a `list[str]` of filepaths/URLs.\n\n ```python\n def predict(\n value: bytes | str | list[bytes] | list[str] | None\n ) -> str | list[str] | None:\n return value\n ```\n \n",
"bugtrack_url": null,
"license": null,
"summary": "A custom upload button for Gradio that allows users to upload with a loading message",
"version": "0.0.9",
"project_urls": null,
"split_keywords": [
"gradio-custom-component",
" gradio-template-uploadbutton"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e6d96f1612ab0d31d4b9329f340ace86044d2e0fe9558fa02fcfc9afd3ef791f",
"md5": "e0739a7b2a22d20542ee5c3af227ed62",
"sha256": "31d35b2ce6041c02422ae79b9b06dccad6f4815b2878d6f306ad3c30c10a12de"
},
"downloads": -1,
"filename": "gradio_neouploadbutton-0.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "e0739a7b2a22d20542ee5c3af227ed62",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 22651,
"upload_time": "2024-11-09T17:07:44",
"upload_time_iso_8601": "2024-11-09T17:07:44.232460Z",
"url": "https://files.pythonhosted.org/packages/e6/d9/6f1612ab0d31d4b9329f340ace86044d2e0fe9558fa02fcfc9afd3ef791f/gradio_neouploadbutton-0.0.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c527efc6b6d0ad898c3a4470461182f6293921bbed29797abf1fa7e1992114cf",
"md5": "631f7b7b84f80f40277410d74710118e",
"sha256": "965fae1502056cf0a1fd4937c0e59ec55f9a9eb5801cd495101c9caf78359282"
},
"downloads": -1,
"filename": "gradio_neouploadbutton-0.0.9.tar.gz",
"has_sig": false,
"md5_digest": "631f7b7b84f80f40277410d74710118e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 70124,
"upload_time": "2024-11-09T17:07:45",
"upload_time_iso_8601": "2024-11-09T17:07:45.453489Z",
"url": "https://files.pythonhosted.org/packages/c5/27/efc6b6d0ad898c3a4470461182f6293921bbed29797abf1fa7e1992114cf/gradio_neouploadbutton-0.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-09 17:07:45",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "gradio-neouploadbutton"
}