Last active
April 28, 2019 12:53
-
-
Save dineshsonachalam/ade047b8efb0e78af64f8251433d5d6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Blueprint,render_template,request,jsonify | |
import requests,json | |
# creating a Blueprint class | |
search_blueprint = Blueprint('search',__name__,template_folder="templates") | |
search_term = "" | |
headers = { | |
'Content-Type': "application/json", | |
'cache-control': "no-cache", | |
} | |
@search_blueprint.route("/",methods=['GET','POST'],endpoint='index') | |
def index(): | |
if request.method=='GET': | |
res ={ | |
'hits': {'total': 0, 'hits': []} | |
} | |
return render_template("index.html",res=res) | |
elif request.method =='POST': | |
if request.method == 'POST': | |
print("-----------------Calling search Result----------") | |
search_term = request.form["input"] | |
print("Search Term:", search_term) | |
payload = { | |
"query": { | |
"query_string": { | |
"analyze_wildcard": True, | |
"query": str(search_term), | |
"fields": ["topic", "title", "url", "labels"] | |
} | |
}, | |
"size": 50, | |
"sort": [ | |
] | |
} | |
payload = json.dumps(payload) | |
url = "http://localhost:9200/hacker/tutorials/_search" | |
response = requests.request("GET", url, data=payload, headers=headers) | |
response_dict_data = json.loads(str(response.text)) | |
return render_template('index.html', res=response_dict_data) | |
@search_blueprint.route("/autocomplete",methods=['POST'],endpoint='autocomplete') | |
def autocomplete(): | |
if request.method == 'POST': | |
search_term = request.form["input"] | |
print("POST request called") | |
print(search_term) | |
payload ={ | |
"autocomplete" : { | |
"text" : str(search_term), | |
"completion" : { | |
"field" : "title_suggest" | |
} | |
} | |
} | |
payload = json.dumps(payload) | |
url="http://localhost:9200/autocomplete/_suggest" | |
response = requests.request("GET", url, data=payload, headers=headers) | |
response_dict_data = json.loads(str(response.text)) | |
return json.dumps(response_dict_data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment