gradio-molecule3d


Namegradio-molecule3d JSON
Version 0.0.5 PyPI version JSON
download
home_page
SummaryMolecule3D custom component to visualize pdb or sdf files using 3Dmol.js
upload_time2024-03-16 19:31:50
maintainer
docs_urlNone
author
requires_python>=3.8
license
keywords gradio gradio custom component gradio-template-file machine learning protein reproducibility visualization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# `gradio_molecule3d`
<a href="https://pypi.org/project/gradio_molecule3d/" target="_blank"><img alt="PyPI - Version" src="https://img.shields.io/pypi/v/gradio_molecule3d"></a>  

Molecule3D custom component to visualize pdb or sdf files using 3Dmol.js

## Installation

```bash
pip install gradio_molecule3d
```

## Usage

```python

import gradio as gr
from gradio_molecule3d import Molecule3D

import os

example = Molecule3D().example_inputs()


reps =    [
    {
      "model": 0,
      "chain": "",
      "resname": "",
      "style": "stick",
      "color": "whiteCarbon",
      "residue_range": "",
      "around": 0,
      "byres": False,
      "visible": False
    }
  ]



def predict(x):
    print("predict function", x)
    print(x.name)
    return x

with gr.Blocks() as demo:
    gr.Markdown("# Molecule3D")
    inp = Molecule3D(label="Molecule3D", reps=reps)
    out = Molecule3D(label="Output", reps=reps)

    btn = gr.Button("Predict")
    gr.Markdown(""" 
    You can configure the default rendering of the molecule by adding a list of representations
    <pre>
        reps =    [
        {
          "model": 0,
          "chain": "",
          "resname": "",
          "style": "cartoon",
          "color": "whiteCarbon",
          "residue_range": "",
          "around": 0,
          "byres": False,
          "visible": False,
        },
        {
          "model": 0,
          "chain": "A",
          "resname": "HIS",
          "style": "stick",
          "color": "red",
          "residue_range": "",
          "around": 0,
          "byres": False,
          "visible": False,
        }
      ]
    </pre>
    """)
    btn.click(predict, inputs=inp, outputs=out)


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

```

## `Molecule3D`

### 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
str | list[str] | Callable | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">Default file to display, given as str file path. 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>reps</code></td>
<td align="left" style="width: 25%;">

```python
Any | None
```

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

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

```python
Any | None
```

</td>
<td align="left"><code>{
    "backgroundColor": "white",
    "orthographic": False,
    "disableFog": False,
}</code></td>
<td align="left">dictionary of config options</td>
</tr>

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

```python
str | None
```

</td>
<td align="left"><code>"pLDDT"</code></td>
<td align="left">label for confidence values stored in the bfactor column of a pdb file</td>
</tr>

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

```python
"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 file extensions or types of files to be uploaded (e.g. ['image', '.json', '.mp4']). "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>type</code></td>
<td align="left" style="width: 25%;">

```python
"filepath" | "binary"
```

</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>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>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. Queue must be enabled. The event can be accessed (e.g. to cancel it) via this component's .load_event attribute.</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>height</code></td>
<td align="left" style="width: 25%;">

```python
int | float | None
```

</td>
<td align="left"><code>None</code></td>
<td align="left">The maximum height of the file component, in pixels. If more files are uploaded than can fit in the height, a scrollbar will appear.</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, will allow users to upload a file; if False, can only be used to display files. 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>showviewer</code></td>
<td align="left" style="width: 25%;">

```python
bool
```

</td>
<td align="left"><code>True</code></td>
<td align="left">If True, will display the 3Dmol.js viewer. If False, will not display the 3Dmol.js viewer.</td>
</tr>
</tbody></table>


### Events

| name | description |
|:-----|:------------|
| `change` | Triggered when the value of the Molecule3D 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. |
| `select` | Event listener for when the user selects or deselects the Molecule3D. Uses event data gradio.SelectData to carry `value` referring to the label of the Molecule3D, and `selected` to refer to state of the Molecule3D. See EventData documentation on how to use this event data |
| `clear` | This listener is triggered when the user clears the Molecule3D using the X button for the component. |
| `upload` | This listener is triggered when the user uploads a file into the Molecule3D. |



### 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.

 ```python
 def predict(
     value: bytes
    | gradio.utils.NamedString
    | list[bytes | gradio.utils.NamedString]
    | None
 ) -> str | list[str] | None:
     return value
 ```
 

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "gradio-molecule3d",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "gradio,gradio custom component,gradio-template-File,machine learning,protein,reproducibility,visualization",
    "author": "",
    "author_email": "Simon D\u00fcrr <dev@simonduerr.eu>",
    "download_url": "https://files.pythonhosted.org/packages/3c/1d/88f8fcd0fca1bc7cc6dba722c3aa328b9ce8dea51ff6f6dedd383cb1ff14/gradio_molecule3d-0.0.5.tar.gz",
    "platform": null,
    "description": "\n# `gradio_molecule3d`\n<a href=\"https://pypi.org/project/gradio_molecule3d/\" target=\"_blank\"><img alt=\"PyPI - Version\" src=\"https://img.shields.io/pypi/v/gradio_molecule3d\"></a>  \n\nMolecule3D custom component to visualize pdb or sdf files using 3Dmol.js\n\n## Installation\n\n```bash\npip install gradio_molecule3d\n```\n\n## Usage\n\n```python\n\nimport gradio as gr\nfrom gradio_molecule3d import Molecule3D\n\nimport os\n\nexample = Molecule3D().example_inputs()\n\n\nreps =    [\n    {\n      \"model\": 0,\n      \"chain\": \"\",\n      \"resname\": \"\",\n      \"style\": \"stick\",\n      \"color\": \"whiteCarbon\",\n      \"residue_range\": \"\",\n      \"around\": 0,\n      \"byres\": False,\n      \"visible\": False\n    }\n  ]\n\n\n\ndef predict(x):\n    print(\"predict function\", x)\n    print(x.name)\n    return x\n\nwith gr.Blocks() as demo:\n    gr.Markdown(\"# Molecule3D\")\n    inp = Molecule3D(label=\"Molecule3D\", reps=reps)\n    out = Molecule3D(label=\"Output\", reps=reps)\n\n    btn = gr.Button(\"Predict\")\n    gr.Markdown(\"\"\" \n    You can configure the default rendering of the molecule by adding a list of representations\n    <pre>\n        reps =    [\n        {\n          \"model\": 0,\n          \"chain\": \"\",\n          \"resname\": \"\",\n          \"style\": \"cartoon\",\n          \"color\": \"whiteCarbon\",\n          \"residue_range\": \"\",\n          \"around\": 0,\n          \"byres\": False,\n          \"visible\": False,\n        },\n        {\n          \"model\": 0,\n          \"chain\": \"A\",\n          \"resname\": \"HIS\",\n          \"style\": \"stick\",\n          \"color\": \"red\",\n          \"residue_range\": \"\",\n          \"around\": 0,\n          \"byres\": False,\n          \"visible\": False,\n        }\n      ]\n    </pre>\n    \"\"\")\n    btn.click(predict, inputs=inp, outputs=out)\n\n\nif __name__ == '__main__':\n  demo.launch()\n\n```\n\n## `Molecule3D`\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\nstr | list[str] | Callable | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">Default file to display, given as str file path. 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>reps</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nAny | None\n```\n\n</td>\n<td align=\"left\"><code>[]</code></td>\n<td align=\"left\">None</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>config</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nAny | None\n```\n\n</td>\n<td align=\"left\"><code>{\n    \"backgroundColor\": \"white\",\n    \"orthographic\": False,\n    \"disableFog\": False,\n}</code></td>\n<td align=\"left\">dictionary of config options</td>\n</tr>\n\n<tr>\n<td align=\"left\"><code>confidenceLabel</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nstr | None\n```\n\n</td>\n<td align=\"left\"><code>\"pLDDT\"</code></td>\n<td align=\"left\">label for confidence values stored in the bfactor column of a pdb file</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\n\"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 file extensions or types of files to be uploaded (e.g. ['image', '.json', '.mp4']). \"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>type</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\n\"filepath\" | \"binary\"\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>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>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. Queue must be enabled. 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>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>height</code></td>\n<td align=\"left\" style=\"width: 25%;\">\n\n```python\nint | float | None\n```\n\n</td>\n<td align=\"left\"><code>None</code></td>\n<td align=\"left\">The maximum height of the file component, in pixels. If more files are uploaded than can fit in the height, a scrollbar will appear.</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, will allow users to upload a file; if False, can only be used to display files. 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>showviewer</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 display the 3Dmol.js viewer. If False, will not display the 3Dmol.js viewer.</td>\n</tr>\n</tbody></table>\n\n\n### Events\n\n| name | description |\n|:-----|:------------|\n| `change` | Triggered when the value of the Molecule3D 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| `select` | Event listener for when the user selects or deselects the Molecule3D. Uses event data gradio.SelectData to carry `value` referring to the label of the Molecule3D, and `selected` to refer to state of the Molecule3D. See EventData documentation on how to use this event data |\n| `clear` | This listener is triggered when the user clears the Molecule3D using the X button for the component. |\n| `upload` | This listener is triggered when the user uploads a file into the Molecule3D. |\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, the preprocessed input data sent to the user's function in the backend.\n- **As input:** Should return, the output data received by the component from the user's function in the backend.\n\n ```python\n def predict(\n     value: bytes\n    | gradio.utils.NamedString\n    | list[bytes | gradio.utils.NamedString]\n    | None\n ) -> str | list[str] | None:\n     return value\n ```\n \n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Molecule3D custom component to visualize pdb or sdf files using 3Dmol.js",
    "version": "0.0.5",
    "project_urls": null,
    "split_keywords": [
        "gradio",
        "gradio custom component",
        "gradio-template-file",
        "machine learning",
        "protein",
        "reproducibility",
        "visualization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d927dd5e0c8cc61ae4125d0ad2914510e8d0420a14d8689b8affb8be3334675",
                "md5": "935d0a414e9b2c7a4ebc2ca3583b76c6",
                "sha256": "37432c1b67fb1b6562e358e38174af6478c77b9a93a1ef748c7f27676a26f575"
            },
            "downloads": -1,
            "filename": "gradio_molecule3d-0.0.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "935d0a414e9b2c7a4ebc2ca3583b76c6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 344713,
            "upload_time": "2024-03-16T19:31:48",
            "upload_time_iso_8601": "2024-03-16T19:31:48.563204Z",
            "url": "https://files.pythonhosted.org/packages/0d/92/7dd5e0c8cc61ae4125d0ad2914510e8d0420a14d8689b8affb8be3334675/gradio_molecule3d-0.0.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c1d88f8fcd0fca1bc7cc6dba722c3aa328b9ce8dea51ff6f6dedd383cb1ff14",
                "md5": "925f1ce4a239b330cdd3a393ce13354e",
                "sha256": "10785e04d7e9afafeaed3f4fd0c6a9a6cc51e68c010e5ec290721bd14a728853"
            },
            "downloads": -1,
            "filename": "gradio_molecule3d-0.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "925f1ce4a239b330cdd3a393ce13354e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 401542,
            "upload_time": "2024-03-16T19:31:50",
            "upload_time_iso_8601": "2024-03-16T19:31:50.909836Z",
            "url": "https://files.pythonhosted.org/packages/3c/1d/88f8fcd0fca1bc7cc6dba722c3aa328b9ce8dea51ff6f6dedd383cb1ff14/gradio_molecule3d-0.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-16 19:31:50",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gradio-molecule3d"
}
        
Elapsed time: 0.22794s