rest.py 642 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/python3
  2. from flask import Flask
  3. from flask import jsonify
  4. from flask_cors import CORS, cross_origin
  5. from whoosh.qparser import MultifieldParser
  6. from whoosh import index
  7. from . import api
  8. app = Flask(__name__)
  9. cors = CORS(app)
  10. app.config['CORS_HEADERS'] = 'Content-Type'
  11. ix = index.open_dir("data")
  12. @app.route("/search/<query>")
  13. @cross_origin()
  14. def search(query):
  15. with ix.searcher() as searcher:
  16. query = MultifieldParser(["title", "description"], ix.schema).parse(query)
  17. results = searcher.search(query, limit=10)
  18. return jsonify([dict(r) for r in results])
  19. if __name__ == '__main__':
  20. app.run()