Files
wehub-resource-sync fbfefa28d3
CodeQL / Analyze (python) (push) Failing after 0s
Release / Build (push) Failing after 1s
Test Suite / Unit Tests (push) Failing after 0s
Release / Release (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:18:10 +08:00

24 lines
586 B
Python

"""
Extract structured data from a webpage using scrapegraph-py v2 API.
Replaces the old smartscraper() call with extract().
"""
import json
import os
from dotenv import load_dotenv
from scrapegraph_py import Client
load_dotenv()
api_key = os.getenv("SCRAPEGRAPH_API_KEY")
if not api_key:
raise ValueError("SCRAPEGRAPH_API_KEY not found in environment variables")
with Client(api_key=api_key) as client:
response = client.extract(
url="https://scrapegraphai.com",
prompt="Extract the founders' informations",
)
print(json.dumps(response, indent=2))