We are using dash for a school project and had a question pertaining to linking text box with Elastic search.
Tech stack: Front end: Dash, Back end: Elastic search.
Use case description: We are building a person profiler. We will have a text box which will accept names. Let’s say Jeff Bezos. Once we enter the name of Jeff Bezos , a call is made to the Elastic index to get the information for Jeff Bezos. The information is then rendered on the dash web page. Similarly, if I enter Donald Trump’s information the same flow will follow suit.
Question:
How do I connect the name in the text box to my Elastic search request.
I know that text box will be used to enter the name. I know how to execute the elastic search call. I don’t know how to connect the two.
Please advise how I can do this. Also if there is an existing example that I can refer to it would be really great.
Hey thanks for replying. Yeah that I know wanted to know how would the call look from Dash’s side. Any code snippet or example where such a thing happens. Even if not to elastic any back end would be good. I can understand and change the code.