docs: replace the test website

This commit is contained in:
Karim shoair
2025-08-30 18:51:31 +03:00
parent c66c48e3ae
commit 8edcd611d3
3 changed files with 28 additions and 28 deletions
+2 -2
View File
@@ -128,7 +128,7 @@ The shell provides a few functions to help you convert curl commands from the br
- **Convert Curl command to Request Object**
```python
>>> curl_cmd = '''curl 'https://httpbin.org/post' \
>>> curl_cmd = '''curl 'https://scrapling.requestcatcher.com/post' \
... -X POST \
... -H 'Content-Type: application/json' \
... -d '{"name": "test", "value": 123}' '''
@@ -137,7 +137,7 @@ The shell provides a few functions to help you convert curl commands from the br
>>> request.method
'post'
>>> request.url
'https://httpbin.org/post'
'https://scrapling.requestcatcher.com/post'
>>> request.headers
{'Content-Type': 'application/json'}
```