File size: 14,471 Bytes
9e7090f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
import asyncio
from types import TracebackType
from typing import Dict, List, Optional, Type, Union

from .webscout_search import WEBS


class AsyncWEBS(WEBS):
    def __init__(

        self,

        headers: Optional[Dict[str, str]] = None,

        proxy: Optional[str] = None,

        proxies: Union[Dict[str, str], str, None] = None,  # deprecated

        timeout: Optional[int] = 10,

    ) -> None:
        """Initialize the AsyncWEBS object.



        Args:

            headers (dict, optional): Dictionary of headers for the HTTP client. Defaults to None.

            proxy (str, optional): proxy for the HTTP client, supports http/https/socks5 protocols.

                example: "http://user:pass@example.com:3128". Defaults to None.

            timeout (int, optional): Timeout value for the HTTP client. Defaults to 10.

        """
        super().__init__(headers=headers, proxy=proxy, proxies=proxies, timeout=timeout)
        self._loop = asyncio.get_running_loop()
        self._executor = super()._executor

    async def __aenter__(self) -> "AsyncWEBS":
        return self

    async def __aexit__(

        self,

        exc_type: Optional[Type[BaseException]],

        exc_val: Optional[BaseException],

        exc_tb: Optional[TracebackType],

    ) -> None:
        pass

    async def achat(self, keywords: str, model: str = "gpt-3.5") -> str:
        """Initiates async chat session with Webscout AI.



        Args:

            keywords (str): The initial message or question to send to the AI.

            model (str): The model to use: "gpt-3.5", "claude-3-haiku". Defaults to "gpt-3.5".



        Returns:

            str: The response from the AI.

        """
        result = await self._loop.run_in_executor(self._executor, super().chat, keywords, model)
        return result

    async def atext(

        self,

        keywords: str,

        region: str = "wt-wt",

        safesearch: str = "moderate",

        timelimit: Optional[str] = None,

        backend: str = "api",

        max_results: Optional[int] = None,

    ) -> List[Dict[str, str]]:
        """Webscout async text search. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query.

            region: wt-wt, us-en, uk-en, ru-ru, etc. Defaults to "wt-wt".

            safesearch: on, moderate, off. Defaults to "moderate".

            timelimit: d, w, m, y. Defaults to None.

            backend: api, html, lite. Defaults to api.

                api - collect data from https://duckduckgo.com,

                html - collect data from https://html.duckduckgo.com,

                lite - collect data from https://lite.duckduckgo.com.

            max_results: max number of results. If None, returns results only from the first response. Defaults to None.



        Returns:

            List of dictionaries with search results, or None if there was an error.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor, super().text, keywords, region, safesearch, timelimit, backend, max_results
        )
        return result

    async def aimages(

        self,

        keywords: str,

        region: str = "wt-wt",

        safesearch: str = "moderate",

        timelimit: Optional[str] = None,

        size: Optional[str] = None,

        color: Optional[str] = None,

        type_image: Optional[str] = None,

        layout: Optional[str] = None,

        license_image: Optional[str] = None,

        max_results: Optional[int] = None,

    ) -> List[Dict[str, str]]:
        """Webscout async images search. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query.

            region: wt-wt, us-en, uk-en, ru-ru, etc. Defaults to "wt-wt".

            safesearch: on, moderate, off. Defaults to "moderate".

            timelimit: Day, Week, Month, Year. Defaults to None.

            size: Small, Medium, Large, Wallpaper. Defaults to None.

            color: color, Monochrome, Red, Orange, Yellow, Green, Blue,

                Purple, Pink, Brown, Black, Gray, Teal, White. Defaults to None.

            type_image: photo, clipart, gif, transparent, line.

                Defaults to None.

            layout: Square, Tall, Wide. Defaults to None.

            license_image: any (All Creative Commons), Public (PublicDomain),

                Share (Free to Share and Use), ShareCommercially (Free to Share and Use Commercially),

                Modify (Free to Modify, Share, and Use), ModifyCommercially (Free to Modify, Share, and

                Use Commercially). Defaults to None.

            max_results: max number of results. If None, returns results only from the first response. Defaults to None.



        Returns:

            List of dictionaries with images search results.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().images,
            keywords,
            region,
            safesearch,
            timelimit,
            size,
            color,
            type_image,
            layout,
            license_image,
            max_results,
        )
        return result

    async def avideos(

        self,

        keywords: str,

        region: str = "wt-wt",

        safesearch: str = "moderate",

        timelimit: Optional[str] = None,

        resolution: Optional[str] = None,

        duration: Optional[str] = None,

        license_videos: Optional[str] = None,

        max_results: Optional[int] = None,

    ) -> List[Dict[str, str]]:
        """Webscout async videos search. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query.

            region: wt-wt, us-en, uk-en, ru-ru, etc. Defaults to "wt-wt".

            safesearch: on, moderate, off. Defaults to "moderate".

            timelimit: d, w, m. Defaults to None.

            resolution: high, standart. Defaults to None.

            duration: short, medium, long. Defaults to None.

            license_videos: creativeCommon, youtube. Defaults to None.

            max_results: max number of results. If None, returns results only from the first response. Defaults to None.



        Returns:

            List of dictionaries with videos search results.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().videos,
            keywords,
            region,
            safesearch,
            timelimit,
            resolution,
            duration,
            license_videos,
            max_results,
        )
        return result

    async def anews(

        self,

        keywords: str,

        region: str = "wt-wt",

        safesearch: str = "moderate",

        timelimit: Optional[str] = None,

        max_results: Optional[int] = None,

    ) -> List[Dict[str, str]]:
        """Webscout async news search. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query.

            region: wt-wt, us-en, uk-en, ru-ru, etc. Defaults to "wt-wt".

            safesearch: on, moderate, off. Defaults to "moderate".

            timelimit: d, w, m. Defaults to None.

            max_results: max number of results. If None, returns results only from the first response. Defaults to None.



        Returns:

            List of dictionaries with news search results.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().news,
            keywords,
            region,
            safesearch,
            timelimit,
            max_results,
        )
        return result

    async def aanswers(

        self,

        keywords: str,

    ) -> List[Dict[str, str]]:
        """Webscout async instant answers. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query,



        Returns:

            List of dictionaries with instant answers results.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().answers,
            keywords,
        )
        return result

    async def asuggestions(

        self,

        keywords: str,

        region: str = "wt-wt",

    ) -> List[Dict[str, str]]:
        """Webscout async suggestions. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query.

            region: wt-wt, us-en, uk-en, ru-ru, etc. Defaults to "wt-wt".



        Returns:

            List of dictionaries with suggestions results.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().suggestions,
            keywords,
            region,
        )
        return result

    async def amaps(

        self,

        keywords: str,

        place: Optional[str] = None,

        street: Optional[str] = None,

        city: Optional[str] = None,

        county: Optional[str] = None,

        state: Optional[str] = None,

        country: Optional[str] = None,

        postalcode: Optional[str] = None,

        latitude: Optional[str] = None,

        longitude: Optional[str] = None,

        radius: int = 0,

        max_results: Optional[int] = None,

    ) -> List[Dict[str, str]]:
        """Webscout async maps search. Query params: https://duckduckgo.com/params.



        Args:

            keywords: keywords for query

            place: if set, the other parameters are not used. Defaults to None.

            street: house number/street. Defaults to None.

            city: city of search. Defaults to None.

            county: county of search. Defaults to None.

            state: state of search. Defaults to None.

            country: country of search. Defaults to None.

            postalcode: postalcode of search. Defaults to None.

            latitude: geographic coordinate (north-south position). Defaults to None.

            longitude: geographic coordinate (east-west position); if latitude and

                longitude are set, the other parameters are not used. Defaults to None.

            radius: expand the search square by the distance in kilometers. Defaults to 0.

            max_results: max number of results. If None, returns results only from the first response. Defaults to None.



        Returns:

            List of dictionaries with maps search results, or None if there was an error.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().maps,
            keywords,
            place,
            street,
            city,
            county,
            state,
            country,
            postalcode,
            latitude,
            longitude,
            radius,
            max_results,
        )
        return result

    async def atranslate(

        self,

        keywords: Union[List[str], str],

        from_: Optional[str] = None,

        to: str = "en",

    ) -> List[Dict[str, str]]:
        """Webscout async translate.



        Args:

            keywords: string or list of strings to translate.

            from_: translate from (defaults automatically). Defaults to None.

            to: what language to translate. Defaults to "en".



        Returns:

            List od dictionaries with translated keywords.



        Raises:

            DuckDuckGoSearchException: Base exception for duckduckgo_search errors.

            RatelimitException: Inherits from DuckDuckGoSearchException, raised for exceeding API request rate limits.

            TimeoutException: Inherits from DuckDuckGoSearchException, raised for API request timeouts.

        """
        result = await self._loop.run_in_executor(
            self._executor,
            super().translate,
            keywords,
            from_,
            to,
        )
        return result