Skip to content

Commit

Permalink
Update README.md (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
blablatdinov authored Aug 4, 2023
1 parent c59ccae commit 85b5f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ print(response.to_curl()) # curl -X GET -H "User-Agent: python-requests/2.24.0"
using **httpx** module:

```python
import curlify2
from curlify2 import Curlify
import httpx

URL = "https://run.mocky.io/v3/b0f4ffd8-6696-4f90-8bab-4a3bcad9ef3f"
Expand All @@ -43,4 +43,4 @@ request = httpx.get(URL)
response = Curlify(request.request)

print(response.to_curl()) # curl -X GET -H "User-Agent: python-requests/2.24.0" -H "Accept-Encoding: gzip, deflate" -H "Accept: */*" -H "Connection: keep-alive" -d 'None' https://run.mocky.io/v3/b0f4ffd8-6696-4f90-8bab-4a3bcad9ef3f
```
```

0 comments on commit 85b5f04

Please sign in to comment.