Puchi01x/Court_Data_Fetcher_App
1
1---2title: Court Data Fetcher App3emoji: ๐4colorFrom: pink5colorTo: red6sdk: docker7pinned: false8license: mit9short_description: Its an application which provides ongoing case's details.10---11 12Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference13 14# ๐ Court-Data Fetcher (Delhi High Court)15 16A Flask-based app that fetches case details from the Delhi High Court website using automated headless browsing.17 18## Features19 20- Submit case type, number, and filing year21- Scrapes case data using undetected-chromedriver22- Logs each query in an SQLite database23- Dockerized for deployment on Hugging Face Spaces24 25## ๐ณ Run Locally with Docker26 27```bash28docker build -t court-data-fetcher .29docker run -p 7860:7860 court-data-fetcher30 31 