Spaces:
Runtime error
Runtime error
File size: 661 Bytes
d0f68b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# gradio_molgallery2d
A Gradio component designed for displaying a gallery of 2D molecular structures. It is designed to accept inputs consisting of [`RDKit`](https://www.rdkit.org/docs/source/rdkit.Chem.rdchem.html#rdkit.Chem.rdchem.Mol) objects.
## Installation
This component can be installed through `pip`:
```bash
pip install gradio_molgallery2d
```
## Example usage
```python
import gradio as gr
from gradio_molgallery import MolGallery2D
gallery2d = MolGallery2D(columns=5, height=1000, label="3D Interactive Structures")
```
# Information
For any questions and comments, contact [Davide Rigoni](mailto:davide.rigoni.1@unipd.it).
# Licenze
GPL-3.0
|