Skip to content

Commit 2532c53

Browse files
committed
docs: remove FetchConfig/LlmConfig extract example from Python SDK page
Remove the advanced extract accordion snippet to keep the migration-focused section shorter and less confusing. Made-with: Cursor
1 parent 25890d1 commit 2532c53

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

sdks/python.mdx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -118,26 +118,6 @@ print(f"Author: {response['data']['author']}")
118118
```
119119
</Accordion>
120120

121-
<Accordion title="With FetchConfig and LlmConfig" icon="code">
122-
```python
123-
from scrapegraph_py import FetchConfig, LlmConfig
124-
125-
response = client.extract(
126-
url="https://example.com",
127-
prompt="Extract the main heading",
128-
fetch_config=FetchConfig(
129-
mode="js+stealth",
130-
wait=2000,
131-
scrolls=3,
132-
),
133-
llm_config=LlmConfig(
134-
temperature=0.3,
135-
max_tokens=1000,
136-
),
137-
)
138-
```
139-
</Accordion>
140-
141121
### Search
142122

143123
Search the web and extract information from multiple sources. Replaces the v1 `searchscraper()` method.

0 commit comments

Comments
 (0)