Spaces:
Sleeping
Sleeping
File size: 1,324 Bytes
e3f629e b7d38b4 2b10390 abf5754 e3f629e abf5754 26c97ea abf5754 e3f629e 97f6077 e3f629e 97f6077 e3f629e 97f6077 e3f629e 97f6077 b7d38b4 e3f629e abf5754 e3f629e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
from flask import Flask, render_template, request
import requests
import os
app = Flask(__name__)
BASE_URL = "https://nymbo-webscout-api.hf.space"
@app.route("/", methods=["GET", "POST"])
def index():
return render_template("index.html")
@app.route("/api/suggestions", methods=["GET"])
def get_suggestions():
search_query = request.args.get("q")
api_endpoint = f"{BASE_URL}/api/suggestions?q={search_query}"
response = requests.get(api_endpoint)
return response.json()
@app.route("/api/search", methods=["GET"])
def perform_search():
search_query = request.args.get("q")
results = request.args.get("max_results", "10")
time_limit = request.args.get("timelimit", "none")
safe_search = request.args.get("safesearch", "off")
api_endpoint = f"{BASE_URL}/api/search?q={search_query}&max_results={results}&timelimit={time_limit}&safesearch={safe_search}"
response = requests.get(api_endpoint)
return response.json()
@app.route("/api/answers", methods=["GET"])
def get_people_also_search():
search_query = request.args.get("q")
api_endpoint = f"{BASE_URL}/api/answers?q={search_query}"
response = requests.get(api_endpoint)
return response.json()
if __name__ == "__main__":
port = int(os.environ.get('PORT', 7860))
app.run(host='0.0.0.0', port=port) |