This package can be used in web applications to load data from the ChEMBL's elasticsearch. For example, if you want to load the following data:
GET chembl_molecule/_search
{
"_source": "_id",
"query": {
"bool": {
"filter": [
{
"terms": {
"_metadata.compound_records.src_id": [
55,
54
]
}
},
{
"terms": {
"_metadata.unichem.src_name": [
"PDBe"
]
}
}
]
}
}
}