Ersilia Client is a Python client to interact with served Ersilia models. It is developed by the Ersilia Open Source Initiative.
You can install Ersilia Client directly from the source code:
git clone https://github.com/ersilia-os/ersilia-client.git
cd ersilia-client
pip install -e .
from ersilia_client import ErsiliaClient, example_url
ec = ErsiliaClient(url=example_url)
input = ["CCCCOC", "CCCCCN"]
result = ec.run(input)
print(result)
app.py
file containing a FastAPI implementation. We may want to use it here or move it elsewhere, for example, as part of a new template.Compound
inputs, for now. Accept other input types.This package is part of the Ersilia Open Source Initiative. Please see the Ersilia's main repository for more information.