mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-12 21:01:56 +08:00
35 lines
824 B
Python
35 lines
824 B
Python
"""
|
|
Basic example of scraping pipeline using SmartScraper
|
|
"""
|
|
import os
|
|
import json
|
|
from dotenv import load_dotenv
|
|
from scrapegraphai.graphs import SmartScraperMultiLiteGraph
|
|
from scrapegraphai.utils import prettify_exec_info
|
|
|
|
load_dotenv()
|
|
|
|
graph_config = {
|
|
"llm": {
|
|
"api_key": os.getenv("GOOGLE_API_KEY"),
|
|
"model": "gemini-pro",
|
|
},
|
|
"verbose": True,
|
|
"headless": False,
|
|
}
|
|
|
|
smart_scraper_multi_lite_graph = SmartScraperMultiLiteGraph(
|
|
prompt="Who is Marco Perini?",
|
|
source= [
|
|
"https://perinim.github.io/",
|
|
"https://perinim.github.io/cv/"
|
|
],
|
|
config=graph_config
|
|
)
|
|
|
|
result = smart_scraper_multi_lite_graph.run()
|
|
print(json.dumps(result, indent=4))
|
|
|
|
graph_exec_info = smart_scraper_multi_lite_graph.get_execution_info()
|
|
print(prettify_exec_info(graph_exec_info))
|