Scrapegraph-ai/examples/openai/script_multi_generator_openai.py

55 lines
1.3 KiB
Python

"""
Basic example of scraping pipeline using ScriptCreatorGraph
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import ScriptCreatorMultiGraph
from scrapegraphai.utils import prettify_exec_info
load_dotenv()
# ************************************************
# Define the configuration for the graph
# ************************************************
openai_key = os.getenv("OPENAI_APIKEY")
graph_config = {
"llm": {
"api_key": openai_key,
"model": "gpt-4o",
},
"library": "beautifulsoup",
"verbose": True,
}
# ************************************************
# Create the ScriptCreatorGraph instance and run it
# ************************************************
urls=[
"https://perinim.github.io/",
"https://perinim.github.io/cv/"
]
# ************************************************
# Create the ScriptCreatorGraph instance and run it
# ************************************************
script_creator_graph = ScriptCreatorMultiGraph(
prompt="Who is Marco Perini?",
source=urls,
config=graph_config
)
result = script_creator_graph.run()
print(result)
# ************************************************
# Get graph execution info
# ************************************************
graph_exec_info = script_creator_graph.get_execution_info()
print(prettify_exec_info(graph_exec_info))