Guest User

Untitled

a guest
Jun 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. def busca(search):
  2. tags = esClient.search(
  3. index="imagens",
  4. body={
  5. "query":{
  6. "match": {
  7. "labels":{
  8. "query": search,
  9. "operator": "or"
  10. }
  11. }
  12. }
  13. }
  14. )
  15. return tags
Add Comment
Please, Sign In to add comment