---
tags: [gradio-custom-component, CheckboxGroup]
title: gradio_checkboxmarkdowngroup
short_description: A gradio custom component
colorFrom: blue
colorTo: yellow
sdk: gradio
pinned: false
app_file: space.py
---
# `gradio_checkboxmarkdowngroup`
<img alt="Static Badge" src="https://img.shields.io/badge/version%20-%200.0.1%20-%20orange">
Python library for easily interacting with trained machine learning models
## Installation
```bash
pip install gradio_checkboxmarkdowngroup
```
## Usage
```python
from typing import List
import gradio as gr
from gradio_checkboxmarkdowngroup.checkboxmarkdowngroup import Choice
from gradio_checkboxmarkdowngroup import CheckboxMarkdownGroup
choices = [
Choice(id="art_101", title="Understanding Neural Networks", content="# Understanding Neural Networks\nThis article explains the basics of neural networks, their architecture, and how they learn from data."),
Choice(id="art_102", title="A Gentle Introduction to Transformers", content="# A Gentle Introduction to Transformers\nTransformers have revolutionized NLP. Learn about attention mechanisms, encoder-decoder architecture, and the future of large language models."),
Choice(id="art_103", title="Reinforcement Learning Basics", content="# Reinforcement Learning Basics\nAn overview of RL concepts like agents, environments, rewards, and how RL differs from supervised and unsupervised learning."),
Choice(id="art_104", title="Generative Adversarial Networks (GANs)", content="# Generative Adversarial Networks (GANs)\nDiscover how GANs pair a generator and discriminator to create realistic images, text, and other synthetic data."),
Choice(id="art_105", title="Convolutional Neural Networks (CNNs)", content="# Convolutional Neural Networks (CNNs)\nLearn about convolution, pooling, and how CNNs excel at image recognition tasks."),
Choice(id="art_106", title="Graph Neural Networks", content="# Graph Neural Networks\nAn intro to applying neural networks to graph-structured data, covering message passing and graph embeddings."),
]
def sentence_builder(selected):
if not selected:
return "You haven't selected any articles yet."
if isinstance(selected[0], dict) and "title" in selected[0]:
formatted_choices = []
for choice in selected:
formatted_choices.append(
f"ID: {choice['id']}\nTitle: {choice['title']}\nContent: {choice['content']}"
)
return "Selected articles are:\n\n" + "\n\n".join(formatted_choices)
else:
return (
"Selected articles are :\n\n- "
+ "\n- ".join(selected)
)
with gr.Blocks() as demo:
with gr.Row():
checkbox_group = CheckboxMarkdownGroup(
choices=choices,
label="Select Articles",
info="Choose articles to include in your collection",
type="all"
)
output_text = gr.Textbox(
label="Selected Articles",
placeholder="Make selections to see results...",
info="Selected articles will be displayed here",
)
checkbox_group.change(
fn=sentence_builder,
inputs=checkbox_group,
outputs=output_text
)
if __name__ == '__main__':
demo.launch()
```
## `CheckboxMarkdownGroup`
### 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>choices</code></td>
<td align="left" style="width: 25%;">
```python
list[Choice] | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">A list of string or numeric options to select from. An option can also be a tuple of the form (name, value), where name is the displayed name of the checkbox button and value is the value to be passed to the function, or returned by the function.</td>
</tr>
<tr>
<td align="left"><code>value</code></td>
<td align="left" style="width: 25%;">
```python
Sequence[str | float | int]
| str
| float
| int
| Callable
| None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">Default selected list of options. If a single choice is selected, it can be passed in as a string or numeric type. If callable, the function will be called whenever the app loads to set the initial value of the component.</td>
</tr>
<tr>
<td align="left"><code>type</code></td>
<td align="left" style="width: 25%;">
```python
ChoiceType
```
</td>
<td align="left"><code>"value"</code></td>
<td align="left">Type of value to be returned by component. "value" returns the list of strings of the choices selected, "index" returns the list of indices of the choices selected.</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, displayed above the component if `show_label` is `True` 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 corresponds to.</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, appears below the label in smaller font. Supports markdown / HTML syntax.</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>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>container</code></td>
<td align="left" style="width: 25%;">
```python
bool
```
</td>
<td align="left"><code>True</code></td>
<td align="left">If True, will place the component in a container - providing some extra padding around the border.</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 width compared to adjacent Components in a Row. For example, if Component A has scale=2, and Component B has scale=1, A will be twice as wide as B. Should be an integer.</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>interactive</code></td>
<td align="left" style="width: 25%;">
```python
bool | None
```
</td>
<td align="left"><code>None</code></td>
<td align="left">If True, choices in this checkbox group will be checkable; if False, checking will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</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">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>
</tbody></table>
### Events
| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the CheckboxMarkdownGroup 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. |
| `input` | This listener is triggered when the user changes the value of the CheckboxMarkdownGroup. |
| `select` | Event listener for when the user selects or deselects the CheckboxMarkdownGroup. Uses event data gradio.SelectData to carry `value` referring to the label of the CheckboxMarkdownGroup, and `selected` to refer to state of the CheckboxMarkdownGroup. See EventData documentation on how to use this event data |
### 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 list of checked checkboxes as a `list[str | int | float]` or their indices as a `list[int]` into the function, depending on `type`.
- **As input:** Should return, expects a `list[str | int | float]` of values or a single `str | int | float` value, the checkboxes with these values are checked.
```python
def predict(
value: typing.Union[list[str], list[int], list[dict]][
list[str], list[int], list[dict]
]
) -> list[str | int | float] | str | int | float | None:
return value
```
Raw data
{
"_id": null,
"home_page": null,
"name": "gradio-checkboxmarkdowngroup",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "gradio-custom-component, gradio-template-CheckboxGroup",
"author": null,
"author_email": "Feiz <feiznouri@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/87/d3/fb9d6b9eca3eba46a38f0a22ea37c82e82a313df0163a90c27d0ee47ea02/gradio_checkboxmarkdowngroup-0.0.1.tar.gz",
"platform": null,
"description": "---\ntags: [gradio-custom-component, CheckboxGroup]\ntitle: gradio_checkboxmarkdowngroup\nshort_description: A gradio custom component\ncolorFrom: blue\ncolorTo: yellow\nsdk: gradio\npinned: false\napp_file: space.py\n---\n\n# `gradio_checkboxmarkdowngroup`\n<img alt=\"Static Badge\" src=\"https://img.shields.io/badge/version%20-%200.0.1%20-%20orange\"> \n\nPython library for easily interacting with trained machine learning models\n\n## Installation\n\n```bash\npip install gradio_checkboxmarkdowngroup\n```\n\n## Usage\n\n```python\nfrom typing import List\nimport gradio as gr\n\nfrom gradio_checkboxmarkdowngroup.checkboxmarkdowngroup import Choice\nfrom gradio_checkboxmarkdowngroup import CheckboxMarkdownGroup\n\n\nchoices = [\n Choice(id=\"art_101\", title=\"Understanding Neural Networks\", content=\"# Understanding Neural Networks\\nThis article explains the basics of neural networks, their architecture, and how they learn from data.\"),\n Choice(id=\"art_102\", title=\"A Gentle Introduction to Transformers\", content=\"# A Gentle Introduction to Transformers\\nTransformers have revolutionized NLP. Learn about attention mechanisms, encoder-decoder architecture, and the future of large language models.\"),\n Choice(id=\"art_103\", title=\"Reinforcement Learning Basics\", content=\"# Reinforcement Learning Basics\\nAn overview of RL concepts like agents, environments, rewards, and how RL differs from supervised and unsupervised learning.\"),\n Choice(id=\"art_104\", title=\"Generative Adversarial Networks (GANs)\", content=\"# Generative Adversarial Networks (GANs)\\nDiscover how GANs pair a generator and discriminator to create realistic images, text, and other synthetic data.\"),\n Choice(id=\"art_105\", title=\"Convolutional Neural Networks (CNNs)\", content=\"# Convolutional Neural Networks (CNNs)\\nLearn about convolution, pooling, and how CNNs excel at image recognition tasks.\"),\n Choice(id=\"art_106\", title=\"Graph Neural Networks\", content=\"# Graph Neural Networks\\nAn intro to applying neural networks to graph-structured data, covering message passing and graph embeddings.\"),\n]\n\n\ndef sentence_builder(selected):\n if not selected:\n return \"You haven't selected any articles yet.\"\n \n if isinstance(selected[0], dict) and \"title\" in selected[0]:\n formatted_choices = []\n for choice in selected:\n formatted_choices.append(\n f\"ID: {choice['id']}\\nTitle: {choice['title']}\\nContent: {choice['content']}\"\n )\n return \"Selected articles are:\\n\\n\" + \"\\n\\n\".join(formatted_choices)\n else:\n return (\n \"Selected articles are :\\n\\n- \"\n + \"\\n- \".join(selected)\n )\n\nwith gr.Blocks() as demo:\n \n with gr.Row():\n \n checkbox_group = CheckboxMarkdownGroup(\n choices=choices,\n label=\"Select Articles\",\n info=\"Choose articles to include in your collection\",\n type=\"all\"\n )\n \n output_text = gr.Textbox(\n label=\"Selected Articles\",\n placeholder=\"Make selections to see results...\",\n info=\"Selected articles will be displayed here\",\n )\n \n checkbox_group.change(\n fn=sentence_builder,\n inputs=checkbox_group,\n outputs=output_text\n )\n\nif __name__ == '__main__':\n demo.launch()\n\n```\n\n## `CheckboxMarkdownGroup`\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>choices</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nlist[Choice] | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">A list of string or numeric options to select from. An option can also be a tuple of the form (name, value), where name is the displayed name of the checkbox button and value is the value to be passed to the function, or returned by the function.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>value</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nSequence[str | float | int]\n | str\n | float\n | int\n | Callable\n | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Default selected list of options. If a single choice is selected, it can be passed in as a string or numeric type. If callable, the function will be called whenever the app loads to set the initial value of the component.</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nChoiceType\n```\n\n</td>\n<td align=\"left\"><code>\"value\"</code></td>\n<td align=\"left\">Type of value to be returned by component. \"value\" returns the list of strings of the choices selected, \"index\" returns the list of indices of the choices selected.</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, displayed above the component if `show_label` is `True` 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 corresponds to.</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, appears below the label in smaller font. Supports markdown / HTML syntax.</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>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>container</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, will place the component in a container - providing some extra padding around the border.</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 width compared to adjacent Components in a Row. For example, if Component A has scale=2, and Component B has scale=1, A will be twice as wide as B. Should be an integer.</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>interactive</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, choices in this checkbox group will be checkable; if False, checking will be disabled. If not provided, this is inferred based on whether the component is used as an input or output.</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\">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</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the CheckboxMarkdownGroup 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| `input` | This listener is triggered when the user changes the value of the CheckboxMarkdownGroup. |\n| `select` | Event listener for when the user selects or deselects the CheckboxMarkdownGroup. Uses event data gradio.SelectData to carry `value` referring to the label of the CheckboxMarkdownGroup, and `selected` to refer to state of the CheckboxMarkdownGroup. See EventData documentation on how to use this event data |\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 list of checked checkboxes as a `list[str | int | float]` or their indices as a `list[int]` into the function, depending on `type`.\n- **As input:** Should return, expects a `list[str | int | float]` of values or a single `str | int | float` value, the checkboxes with these values are checked.\n\n ```python\n def predict(\n value: typing.Union[list[str], list[int], list[dict]][\n list[str], list[int], list[dict]\n]\n ) -> list[str | int | float] | str | int | float | None:\n return value\n ```\n \n",
"bugtrack_url": null,
"license": null,
"summary": "Python library for easily interacting with trained machine learning models",
"version": "0.0.1",
"project_urls": null,
"split_keywords": [
"gradio-custom-component",
" gradio-template-checkboxgroup"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "048f18a264c739e391db5cac5e2d8fe3f60e2614f9d50c9ac6a2dca2908b3030",
"md5": "58f0bbd99e347ad552529b3717a9a9ca",
"sha256": "287160b9bb575eb9dd8753cb44333475a6c48e657044e56876cddf6305a377cf"
},
"downloads": -1,
"filename": "gradio_checkboxmarkdowngroup-0.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "58f0bbd99e347ad552529b3717a9a9ca",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 1146330,
"upload_time": "2024-12-20T15:17:09",
"upload_time_iso_8601": "2024-12-20T15:17:09.662911Z",
"url": "https://files.pythonhosted.org/packages/04/8f/18a264c739e391db5cac5e2d8fe3f60e2614f9d50c9ac6a2dca2908b3030/gradio_checkboxmarkdowngroup-0.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87d3fb9d6b9eca3eba46a38f0a22ea37c82e82a313df0163a90c27d0ee47ea02",
"md5": "447c02b976f38c68fd032ca3719aea4a",
"sha256": "e40b96c37ae52cfa59cd8827eaf3e238898401f8c11bc5d297565544920a98f1"
},
"downloads": -1,
"filename": "gradio_checkboxmarkdowngroup-0.0.1.tar.gz",
"has_sig": false,
"md5_digest": "447c02b976f38c68fd032ca3719aea4a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1190894,
"upload_time": "2024-12-20T15:17:25",
"upload_time_iso_8601": "2024-12-20T15:17:25.002168Z",
"url": "https://files.pythonhosted.org/packages/87/d3/fb9d6b9eca3eba46a38f0a22ea37c82e82a313df0163a90c27d0ee47ea02/gradio_checkboxmarkdowngroup-0.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-20 15:17:25",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "gradio-checkboxmarkdowngroup"
}