-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README:
proxy
section - change socks5://
to socks5h://
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,7 +210,7 @@ results = ddgs.text("something you need", max_results=50) | |
``` | ||
*2. Use any proxy server* (*example with [iproyal rotating residential proxies](https://iproyal.com?r=residential_proxies)*) | ||
```python3 | ||
ddgs = DDGS(proxy="socks5://user:[email protected]:32325", timeout=20) | ||
ddgs = DDGS(proxy="socks5h://user:[email protected]:32325", timeout=20) | ||
results = ddgs.text("something you need", max_results=50) | ||
``` | ||
|
||
|