mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-28 21:01:55 +08:00
33 lines
796 B
Python
33 lines
796 B
Python
"""
|
|
Basic example of scraping pipeline using SmartScraper
|
|
"""
|
|
import os
|
|
import json
|
|
from dotenv import load_dotenv
|
|
from scrapegraphai.graphs import SmartScraperLiteGraph
|
|
from scrapegraphai.utils import prettify_exec_info
|
|
|
|
load_dotenv()
|
|
|
|
graph_config = {
|
|
"llm": {
|
|
"api_key": os.getenv("ONEAPI_API_KEY"),
|
|
"model": "oneapi/gpt-3.5-turbo",
|
|
"base_url": "http://127.0.0.1:3000/v1",
|
|
},
|
|
"verbose": True,
|
|
"headless": False,
|
|
}
|
|
|
|
smart_scraper_lite_graph = SmartScraperLiteGraph(
|
|
prompt="Who is Marco Perini?",
|
|
source="https://perinim.github.io/",
|
|
config=graph_config
|
|
)
|
|
|
|
result = smart_scraper_lite_graph.run()
|
|
print(json.dumps(result, indent=4))
|
|
|
|
graph_exec_info = smart_scraper_lite_graph.get_execution_info()
|
|
print(prettify_exec_info(graph_exec_info))
|