elm.web.search.duckduckgo.PlaywrightDuckDuckGoLinkSearch
- class PlaywrightDuckDuckGoLinkSearch(**launch_kwargs)[source]
Bases:
PlaywrightSearchEngineLinkSearch
Search for top links on the main DuckDuckGo search engine
- Parameters:
**launch_kwargs – Keyword arguments to be passed to playwright.chromium.launch. For example, you can pass
headless=False, slow_mo=50
for a visualization of the search.
Methods
results
(*queries[, num_results])Retrieve links for the first num_results of each query
Attributes
Number of results displayed per DuckDuckGo page
Default page load timeout value in milliseconds
- MAX_RESULTS_CONSIDERED_PER_PAGE = 10
Number of results displayed per DuckDuckGo page
- PAGE_LOAD_TIMEOUT = 90000
Default page load timeout value in milliseconds
- async results(*queries, num_results=10)
Retrieve links for the first num_results of each query
This function executes a search for each input query and returns a list of links corresponding to the top num_results.
- Parameters:
*queries (str) – One or more queries to search for.
num_results (int, optional) – Number of top results to retrieve for each query. Note that this value can never exceed the number of results per page (typically 10). If you pass in a larger value, it will be reduced to the number of results per page. By default,
10
.
- Returns:
list – List equal to the length of the input queries, where each entry is another list containing the top num_results links.