"""
Basic example of scraping pipeline using SmartScraper with a custom rate limit
"""
from scrapegraphai.graphs import SmartScraperGraph
from scrapegraphai.utils import prettify_exec_info
graph_config = {
"llm": {
"api_key": "***************************",
"model": "oneapi/qwen-turbo",
"base_url": "http://127.0.0.1:3000/v1",
"rate_limit": {
"requests_per_second": 1
}
}
}
smart_scraper_graph = SmartScraperGraph(
prompt="List me all the titles",
source="https://www.wired.com/",
config=graph_config
)
result = smart_scraper_graph.run()
print(result)
graph_exec_info = smart_scraper_graph.get_execution_info()
print(prettify_exec_info(graph_exec_info))