A modular AI-powered web scraper for data pipelines.
Project description
WebSense
"Making sense of the web."
WebSense is a Python library that transforms raw websites into structured, meaningful data. It leverages AI through the ask2api library to semantically understand page content, allowing you to extract complex data structures without writing brittle CSS selectors or XPath expressions.
Features
- Semantic Understanding: Uses LLMs to interpret content meaning, not just match patterns
- Resilient: Adapts to layout changes—if the meaning is there, WebSense finds it
- Minimalist API: Extract data in 3 lines of code
- Auto-Cleaning: Intelligent noise removal filters focus on meaningful content
- Flexible Schemas: Use JSON schemas or provide examples for schema inference
- Modular Design: Fetch, clean, and parse stages can be customized independently
Installation
pip install websense
For development:
git clone https://github.com/atasoglu/websense.git
cd websense
pip install -e ".[dev]"
Quick Start
Extract data with just an example:
from websense import Scraper
scraper = Scraper()
data = scraper.scrape(
"https://github.com/atasoglu/ask2api",
example={
"project_name": "string",
"description": "string",
"stars": 0,
"is_active": True
}
)
print(data)
You can provide a strict JSON schema for validation:
schema = {
"type": "object",
"properties": {
"title": {"type": "string"},
"price": {"type": "number"},
"in_stock": {"type": "boolean"}
},
"required": ["title", "price"]
}
data = scraper.scrape("https://example.com/product", schema=schema)
Specify a different language model for extraction:
scraper = Scraper(model="gpt-4")
CLI Usage
WebSense provides a command-line interface for quick data extraction:
# Extract structured data from a webpage
websense scrape https://example.com --example schema.json --verbose
# Get cleaned content only
websense content https://example.com --output content.md
# With custom options
websense scrape https://example.com -e schema.json --model gpt-4 --timeout 30
Available options for scrape command:
| Option | Description |
|---|---|
--model, -m |
LLM model name |
--schema, -s |
JSON schema (file path or raw JSON string) |
--example, -e |
JSON example (file path or raw JSON string) |
--output, -o |
Output file path |
--timeout, -t |
Request timeout (default: 10) |
--retries, -r |
Retry attempts (default: 3) |
--verbose, -v |
Enable verbose output |
Pro Tip: You can pass raw JSON strings directly to the CLI:
websense scrape https://example.com -e '{"title": "string"}'
How It Works
WebSense follows a three-stage pipeline:
- Fetch (
fetcher.py): Downloads and retrieves the webpage - Clean (
cleaner.py): Removes noise and extracts meaningful text - Parse (
parser.py): Uses AI to extract structured data based on your schema/example
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/my-feature) - Commit changes (
git commit -m 'Add my feature') - Push to the branch (
git push origin feature/my-feature) - Open a Pull Request
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file websense-0.3.0.tar.gz.
File metadata
- Download URL: websense-0.3.0.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46e3201710dfba7c59c50042ffba5fd56fed7842ea044e81954b4227d8c9895d
|
|
| MD5 |
65789e951bac793f0bf7774a96d99674
|
|
| BLAKE2b-256 |
b40adc9a53cd0b5f2180fcaf3c85d8d9ae6679268f2a145dfc15f625ab71d613
|
File details
Details for the file websense-0.3.0-py3-none-any.whl.
File metadata
- Download URL: websense-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd51d25ce26f850f9708e5831da9d668f32dbc32db2d57c4667de7a4e1e9a2d7
|
|
| MD5 |
cb49660ff060531c02ca5da3693c04e5
|
|
| BLAKE2b-256 |
7eb2e7338c16bd35b9242f8b7dc63f218cd403fb55518628bee56c2288ab626e
|