-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
0 deletions.
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 |
---|---|---|
|
@@ -51,6 +51,8 @@ ddgs text -k "pushkin filetype:pdf" -r wt-wt -m 50 -d -p https://1.2.3.4:1234 | |
ddgs text -k "'to kill a mockingbird' filetype:doc" -m 50 -d -p tb | ||
# find and save to csv | ||
ddgs text -k "'neuroscience exploring the brain' filetype:pdf" -m 70 -o csv | ||
# don't verify SSL when making the request | ||
ddgs text -k "Mississippi Burning" -v false | ||
# find and download images | ||
ddgs images -k "beware of false prophets" -r wt-wt -type photo -m 500 -d | ||
# get news for the last day and save to json | ||
|
@@ -166,6 +168,7 @@ class DDGS: | |
proxy (str, optional): proxy for the HTTP client, supports http/https/socks5 protocols. | ||
example: "http://user:[email protected]:3128". Defaults to None. | ||
timeout (int, optional): Timeout value for the HTTP client. Defaults to 10. | ||
verify (bool): SSL verification when making the request. Defaults to True. | ||
""" | ||
``` | ||
|
||
|