chembl-elasticsearch-service
v0.0.1
Published
Functions to retreive data from elasticsearch in web apps
Downloads
3
Readme
ChEMBL Elasticsearch Service
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"
]
}
}
]
}
}
}