his video is a demonstration of my implementation of the Full-Text Search application using Elasticsearch and Flask, following the official Elastic Search Labs tutorial sections up to Faceted Search.
🔗 Tutorial Followed:
https://www.elastic.co/search-labs/tutoria...
What I show in the demo:
1) Connecting Python to Elasticsearch
2) Creating the index and loading documents from data.json
3) Running full-text search (match + multi_match)
4) Document detail display
5) Implementing pagination using size and from_
6) Adding category and year filters
7) Implementing faceted search using aggregations
8) Walking through my code: search.py, app.py, templates