WebQuest is an extensible Python toolkit for high-level web scraping, built around a generic Playwright-based scraper interface for quickly building, running, and reusing custom scrapers.
Project description
WebQuest
WebQuest is an extensible Python toolkit for high-level web scraping, built around a generic Playwright-based scraper interface for quickly building, running, and reusing custom scrapers.
For detailed usage instructions and API reference, please visit the documentation.
To use WebQuest as a Model Context Protocol (MCP) server, please visit the WebQuest MCP repository.
Scrapers
- Any Article: Extracts readable content from arbitrary web articles.
- DuckDuckGo Search: General web search using DuckDuckGo.
- Google News Search: News-focused search via Google News.
- YouTube Search: Search YouTube videos, channels, posts, and shorts.
- YouTube Transcript: Fetch transcripts for YouTube videos.
Browsers
- Hyperbrowser: A cloud-based browser service for running Playwright scrapers without managing infrastructure.
Installation
Installing using pip:
pip install webquest
Installing using uv:
uv add webquest
Usage
To use Hyperbrowser, you need to set the HYPERBROWSER_API_KEY environment variable.
Example usage of the DuckDuckGo Search scraper:
import asyncio
from webquest.browsers import Hyperbrowser
from webquest.scrapers import DuckDuckGoSearch
async def main() -> None:
scraper = DuckDuckGoSearch(browser=Hyperbrowser())
response = await scraper.run(
scraper.request_model(query="Pizza Toppings"),
)
print(response.model_dump_json(indent=4))
if __name__ == "__main__":
asyncio.run(main())
You can also run multiple requests at the same time:
import asyncio
from webquest.browsers import Hyperbrowser
from webquest.scrapers import DuckDuckGoSearch
async def main() -> None:
scraper = DuckDuckGoSearch(browser=Hyperbrowser())
responses = await scraper.run(
scraper.request_model(query="Pizza Toppings"),
scraper.request_model(query="AI News"),
)
for response in responses:
print(response.model_dump_json(indent=4))
if __name__ == "__main__":
asyncio.run(main())
Disclaimer
This tool is for educational and research purposes only. The developers of WebQuest are not responsible for any misuse of this tool. Scraping websites may violate their Terms of Service. Users are solely responsible for ensuring their activities comply with all applicable laws and website policies.
Project details
Release history Release notifications | RSS feed
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 webquest-0.12.3.tar.gz.
File metadata
- Download URL: webquest-0.12.3.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
738bb53aaddc250fb1948a6b42841219edfc38c425e375baaf41f9aecd67ef7d
|
|
| MD5 |
34a0fe69c1cb0014ba98882c9f3bc46d
|
|
| BLAKE2b-256 |
f0ecd941b8c7704ea0955143338cdc29cd3cc2e7ee4b6feb927c53749f9c0a30
|
File details
Details for the file webquest-0.12.3-py3-none-any.whl.
File metadata
- Download URL: webquest-0.12.3-py3-none-any.whl
- Upload date:
- Size: 24.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d84b5ae840cafa06b273a840a9393596a9c54906365c76de076ab88ec24081a6
|
|
| MD5 |
9470bb796004a39f8aaf46bf7e9be19c
|
|
| BLAKE2b-256 |
3b9e09f5c12c5be948de82af258d3368663cb169135614b3834a55317a42afd9
|