docs: migrate homes-forsale SDK cookbook to v2 API (4/N)#94
Merged
Conversation
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
This was referenced May 11, 2026
- Client -> ScrapeGraphAI (auto-reads SGAI_API_KEY) - smartscraper(website_url=, user_prompt=, output_schema=) -> extract(prompt, url=, schema=model_json_schema()) - Add FetchConfig(stealth=True) since homes.com has anti-bot defenses - Response shape: response['result'] -> response.data.json_data - Fix broken async example link - Update dashboard URL: dashboard.scrapegraphai.com -> scrapegraphai.com/dashboard - Swap outdated banner image Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
408d59f to
7a6fe9d
Compare
VinciGit00
approved these changes
May 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fourth of N PRs (follows #91, #92, #93) restoring + migrating the cookbook notebooks that were removed in 1f3b123 to the v2 SDK API. This PR migrates
cookbook/homes-forsale/scrapegraph_sdk.ipynb.Migration
from scrapegraph_py import Clientfrom scrapegraph_py import ScrapeGraphAI, FetchConfigClient(api_key=...)ScrapeGraphAI()(auto-readsSGAI_API_KEY)smartscraper(website_url=, user_prompt=, output_schema=HouseListingsSchema)extract(prompt, url=, schema=HouseListingsSchema.model_json_schema(), fetch_config=FetchConfig(stealth=True))response['result']/response['request_id']response.data.json_data+.status/.errorcheckexamples/async_smartscraper_example.py(404)examples/extract/extract_basic_async.pyhttps://dashboard.scrapegraphai.com/https://scrapegraphai.com/dashboardNotes
homes.comhas anti-bot defenses; passingFetchConfig(stealth=True)is necessary for the live API run to return real data.Follow-ups (separate PRs, not blocking)
cookbook/chat-webpage-simple-rag/scrapegraph_burr_lancedb.ipynb(PR docs: migrate chat-webpage-simple-rag cookbook to v2 API (5/N) #95)🤖 Generated with Claude Code