Skip to content

Commit

Permalink
README: impersonate="chrome_130" in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
deedy5 committed Nov 3, 2024
1 parent 13da848 commit 840ba17
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 @@ -146,7 +146,7 @@ resp.url
```python
import primp

client = primp.Client(impersonate="chrome_127")
client = primp.Client(impersonate="chrome_130")

# GET request
resp = client.get("https://tls.peet.ws/api/all")
Expand Down Expand Up @@ -200,7 +200,7 @@ print(resp.json())
# You can also use convenience functions that use a default Client instance under the hood:
# primp.get() | primp.head() | primp.options() | primp.delete() | primp.post() | primp.patch() | primp.put()
# These functions can accept the `impersonate` parameter:
resp = primp.get("https://httpbin.org/anything", impersonate="chrome_127")
resp = primp.get("https://httpbin.org/anything", impersonate="chrome_130")
print(r.text)
```

Expand Down

0 comments on commit 840ba17

Please sign in to comment.