Spaces:
Running
title: LLM Web Scraper
emoji: πΈοΈ
colorFrom: blue
colorTo: green
sdk: docker
app_port: 7860
LLM Web Scraper (πΈοΈ β π€ β π§ β β β π)
Scrape any web page, ask questions, and get structured answers powered by LangChain, FireCrawl/Crawl4AI and leading LLMs from NVIDIA and Googleβall wrapped in a clean Gradio interface.
π Live Demo: https://huggingface.co/spaces/frkhan/llm-web-scrapper
π Read Full Story: From Broken Selectors to Intelligent Scraping: A Journey into LLM-Powered Web Automation
π Features
- πΈοΈ Multi-Backend Scraping: Choose between
FireCrawlfor robust, API-driven scraping andCrawl4AIfor local, Playwright-based scraping. - π§ Intelligent Extraction: Use powerful LLMs (NVIDIA or Google Gemini) to understand your query and extract specific information from scraped content.
- π Structured Output: Get answers in markdown tables, JSON, or plain text, as requested.
- π Full Observability: Integrated with
Langfuseto trace both scraping and LLM-extraction steps. - β¨ Interactive UI: A clean and simple interface built with
Gradio. - π³ Docker-Ready: Comes with
Dockerfileanddocker-composeconfigurations for easy local and production deployment.
π οΈ Tech Stack
| Component | Purpose |
|---|---|
| LangChain | Orchestration of LLM calls |
| FireCrawl / Crawl4AI | Web scraping backends |
| NVIDIA / Gemini | LLM APIs for information extraction |
| Langfuse | Tracing and observability for all operations |
| Gradio | Interactive web UI |
| Docker | Containerized deployment |
| Playwright | Web scraping using Crawl4AI |
β οΈ Important Disclaimer
This tool is provided for educational and experimental purposes only. Users are solely responsible for their actions and must comply with the terms of service of any website they scrape. Always respect
robots.txtand be mindful of the website's policies. The developers of this tool are not liable for any misuse.
π¦ Installation
Option 1: Run Locally
Clone the repository:
git clone https://github.com/KI-IAN/llm-web-scrapper.git cd llm-web-scrapperInstall dependencies:
pip install -r requirements.txtInstall Playwright browsers (for Crawl4AI):
playwright installCreate a
.envfile in the root directory with your API keys:GOOGLE_API_KEY=your_google_api_key NVIDIA_API_KEY=your_nvidia_api_key FIRECRAWL_API_KEY=your_firecrawl_api_key # Optional: For Langfuse tracing LANGFUSE_PUBLIC_KEY=pk-lf-... LANGFUSE_SECRET_KEY=sk-lf-... LANGFUSE_HOST=https://cloud.langfuse.comRun the application:
python app.py
Option 2: Run with Docker
For Production: This uses the standard
docker-compose.yml.docker compose up --buildFor Local Development (with live code reload): This uses
docker-compose.dev.ymlto mount your local code into the container.docker compose -f docker-compose.dev.yml up --build
Access the app at http://localhost:12200.
π Getting API Keys
To use this app, you'll need API keys for Google Gemini, NVIDIA NIM, and FireCrawl. For full observability, you'll also need keys for Langfuse.
π Gemini API Key
Gemini is Google's family of generative AI models. To get an API key:
- Visit the Google AI Studio.
- Sign in with your Google account.
- Click "Create API Key" and copy the key shown.
- Use this key in your
.envfile or configuration asGEMINI_API_KEY.
Note: Gemini API access may be limited based on region or account eligibility. Check the Gemini API Rate Limits here
π NVIDIA NIM API Key
NIM (NVIDIA Inference Microservices) provides hosted models via REST APIs. To get started:
- Go to the NVIDIA API Catalog.
- Choose a model (e.g.,
nim-gemma,nim-mistral, etc.) and click "Get API Key". - Sign in or create an NVIDIA account if prompted.
- Copy your key and use it as
NVIDIA_NIM_API_KEYin your environment.
Tip: You can test NIM endpoints directly in the browser before integrating.
π FireCrawl API Key
- Sign up at FireCrawl.
- Find your API key in the dashboard.
π Langfuse API Keys (Optional)
- Sign up or log in at Langfuse Cloud.
- Navigate to your project settings and then to the "API Keys" tab.
- Create a new key pair to get your
LANGFUSE_PUBLIC_KEY(starts withpk-lf-...) andLANGFUSE_SECRET_KEY(starts withsk-lf-...). - Add these to your
.envfile to enable tracing.
π§ͺ How to Use
- Enter a URL: Provide the URL of the web page you want to analyze.
- Define Your Query: Specify what you want to extract (e.g., "product name, price, and rating" or "summarize this article").
- Scrape the Web Page: Choose a scraper (
Crawl4AIorFireCrawl) and click "Scrape Website". - Select Model & Provider: Choose an LLM to process the scraped content.
- Extract Info: Click "Extract Info by LLM" to get a structured answer.
π File Structure
llm-web-scrapper/
βββ .env # Local environment variables (not tracked by git)
βββ .github/ # GitHub Actions workflows
βββ .gitignore
βββ docker-compose.yml # Production Docker configuration
βββ docker-compose.dev.yml# Development Docker configuration
βββ Dockerfile
βββ requirements.txt
βββ app.py # Gradio UI and application logic
βββ config.py # Environment variable loading
βββ crawl4ai_client.py # Client for Crawl4AI scraper
βββ firecrawl_client.py # Client for FireCrawl scraper
βββ llm_inference_service.py # Logic for LLM calls
π License
This project is open-source and distributed under the MIT License. Feel free to use, modify, and distribute it.
π€ Acknowledgements
- LangChain for orchestrating LLM interactions.
- FireCrawl & Crawl4AI for providing powerful scraping backends.
- NVIDIA AI Endpoints & Google Gemini API for their state-of-the-art LLMs.
- Langfuse for providing excellent observability tools.
- Gradio for making UI creation simple and elegant.
- Docker for containerization
- Playwright for web scraping using Crawl4AI