mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-06-25 21:11:11 +08:00
40 lines
946 B
Python
40 lines
946 B
Python
"""
|
|
Basic example of scraping pipeline using SmartScraper
|
|
"""
|
|
|
|
import os, json
|
|
from dotenv import load_dotenv
|
|
from scrapegraphai.graphs import SmartScraperMultiGraph
|
|
|
|
load_dotenv()
|
|
|
|
# ************************************************
|
|
# Define the configuration for the graph
|
|
# ************************************************
|
|
|
|
gemini_key = os.getenv("GOOGLE_APIKEY")
|
|
|
|
graph_config = {
|
|
"llm": {
|
|
"api_key": gemini_key,
|
|
"model": "gemini-pro",
|
|
},
|
|
}
|
|
|
|
# *******************************************************
|
|
# Create the SmartScraperMultiGraph instance and run it
|
|
# *******************************************************
|
|
|
|
multiple_search_graph = SmartScraperMultiGraph(
|
|
prompt="Who is Marco Perini?",
|
|
source= [
|
|
"https://perinim.github.io/",
|
|
"https://perinim.github.io/cv/"
|
|
],
|
|
schema=None,
|
|
config=graph_config
|
|
)
|
|
|
|
result = multiple_search_graph.run()
|
|
print(json.dumps(result, indent=4))
|