webscout 7.3__py3-none-any.whl → 7.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of webscout might be problematic. Click here for more details.
- webscout/Provider/AISEARCH/__init__.py +4 -3
- webscout/Provider/AISEARCH/genspark_search.py +208 -0
- webscout/Provider/AllenAI.py +282 -0
- webscout/Provider/Deepinfra.py +43 -44
- webscout/Provider/ElectronHub.py +634 -0
- webscout/Provider/Glider.py +7 -41
- webscout/Provider/HeckAI.py +200 -0
- webscout/Provider/Jadve.py +49 -63
- webscout/Provider/PI.py +106 -93
- webscout/Provider/Perplexitylabs.py +395 -0
- webscout/Provider/QwenLM.py +7 -61
- webscout/Provider/TTI/__init__.py +1 -0
- webscout/Provider/TTI/piclumen/__init__.py +23 -0
- webscout/Provider/TTI/piclumen/async_piclumen.py +268 -0
- webscout/Provider/TTI/piclumen/sync_piclumen.py +233 -0
- webscout/Provider/TextPollinationsAI.py +3 -2
- webscout/Provider/TwoAI.py +200 -0
- webscout/Provider/Venice.py +200 -0
- webscout/Provider/WiseCat.py +1 -18
- webscout/Provider/__init__.py +12 -0
- webscout/Provider/akashgpt.py +312 -0
- webscout/Provider/chatglm.py +5 -5
- webscout/Provider/freeaichat.py +251 -221
- webscout/Provider/koala.py +9 -1
- webscout/Provider/yep.py +4 -24
- webscout/version.py +1 -1
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/METADATA +44 -49
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/RECORD +32 -21
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/LICENSE.md +0 -0
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/WHEEL +0 -0
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/entry_points.txt +0 -0
- {webscout-7.3.dist-info → webscout-7.4.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.4
|
|
4
4
|
Summary: Search for anything using Google, DuckDuckGo, phind.com, Contains AI models, can transcribe yt videos, temporary email and phone number generation, has TTS support, webai (terminal gpt and open interpreter) and offline LLMs and more
|
|
5
5
|
Author: OEvortex
|
|
6
6
|
Author-email: helpingai5@gmail.com
|
|
@@ -31,6 +31,7 @@ Requires-Dist: mistune
|
|
|
31
31
|
Requires-Dist: tenacity
|
|
32
32
|
Requires-Dist: curl-cffi
|
|
33
33
|
Requires-Dist: nest-asyncio
|
|
34
|
+
Requires-Dist: websocket-client
|
|
34
35
|
Requires-Dist: rich
|
|
35
36
|
Requires-Dist: markdownify
|
|
36
37
|
Requires-Dist: requests
|
|
@@ -67,13 +68,11 @@ Requires-Dist: numpy; extra == "local"
|
|
|
67
68
|
Requires-Dist: huggingface-hub[cli]; extra == "local"
|
|
68
69
|
Requires-Dist: unicorn; extra == "local"
|
|
69
70
|
|
|
70
|
-
|
|
71
|
-
[](https://t.me/official_helpingai)
|
|
71
|
+
[](https://t.me/PyscoutAI)
|
|
72
72
|
[](https://www.instagram.com/oevortex/)
|
|
73
73
|
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
74
74
|
[](https://buymeacoffee.com/oevortex)
|
|
75
75
|
|
|
76
|
-
|
|
77
76
|
<div align="center">
|
|
78
77
|
<a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> •
|
|
79
78
|
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> •
|
|
@@ -97,9 +96,11 @@ Requires-Dist: unicorn; extra == "local"
|
|
|
97
96
|
---
|
|
98
97
|
|
|
99
98
|
## 🚀 Features
|
|
99
|
+
|
|
100
100
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
|
|
101
101
|
* **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
|
|
102
102
|
* **[YouTube Toolkit](webscout/Extra/YTToolkit):** Advanced YouTube video and transcript management with multi-language support, versatile downloading, and intelligent data extraction
|
|
103
|
+
* **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit for seamless repository and user information retrieval, featuring commit tracking, issue management, and comprehensive user analytics - all without authentication requirements for public data
|
|
103
104
|
* **Tempmail & Temp Number:** Generate temporary email addresses and phone numbers for enhanced privacy.
|
|
104
105
|
* **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers like ElevenLabs, StreamElements, and Voicepods.
|
|
105
106
|
* **Offline LLMs:** Utilize powerful language models offline with GGUF support.
|
|
@@ -113,8 +114,10 @@ Requires-Dist: unicorn; extra == "local"
|
|
|
113
114
|
* **[LitAgent](webscout/litagent/Readme.md):** Powerful and modern user agent generator that keeps your requests fresh and undetectable
|
|
114
115
|
* **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
115
116
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
|
|
117
|
+
* **[AISearch](webscout/Provider/AISEARCH/README.md):** AI Search Providers offer powerful and flexible AI-powered search Search Engine
|
|
116
118
|
|
|
117
119
|
## ⚙️ Installation
|
|
120
|
+
|
|
118
121
|
```python
|
|
119
122
|
pip install -U webscout
|
|
120
123
|
```
|
|
@@ -134,12 +137,13 @@ python -m webscout --help
|
|
|
134
137
|
| python -m webscout suggestions -k Text | CLI function to perform a suggestions search using Webscout. |
|
|
135
138
|
| python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
|
|
136
139
|
| python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
|
|
137
|
-
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
140
|
+
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
138
141
|
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
139
142
|
|
|
140
|
-
[Go To TOP](#webscout-️)
|
|
143
|
+
[Go To TOP](#webscout-️)
|
|
141
144
|
|
|
142
145
|
## 🌍 Regions
|
|
146
|
+
|
|
143
147
|
<details>
|
|
144
148
|
<summary>Expand</summary>
|
|
145
149
|
|
|
@@ -212,17 +216,14 @@ python -m webscout --help
|
|
|
212
216
|
vn-vi for Vietnam
|
|
213
217
|
wt-wt for No region
|
|
214
218
|
|
|
215
|
-
|
|
216
219
|
</details>
|
|
217
220
|
|
|
218
|
-
|
|
219
221
|
[Go To TOP](#webscout-️)
|
|
220
222
|
|
|
221
|
-
|
|
222
|
-
|
|
223
223
|
## ☀️ Weather
|
|
224
224
|
|
|
225
|
-
### 1. Weather
|
|
225
|
+
### 1. Weather
|
|
226
|
+
|
|
226
227
|
```python
|
|
227
228
|
from webscout import weather as w
|
|
228
229
|
weather = w.get("Qazigund")
|
|
@@ -230,6 +231,7 @@ print(weather)
|
|
|
230
231
|
```
|
|
231
232
|
|
|
232
233
|
### 2. Weather ASCII
|
|
234
|
+
|
|
233
235
|
```python
|
|
234
236
|
from webscout import weather_ascii as w
|
|
235
237
|
weather = w.get("Qazigund")
|
|
@@ -323,7 +325,6 @@ for result in results:
|
|
|
323
325
|
print(result)
|
|
324
326
|
```
|
|
325
327
|
|
|
326
|
-
|
|
327
328
|
## 🦆 WEBS and AsyncWEBS
|
|
328
329
|
|
|
329
330
|
The `WEBS` and `AsyncWEBS` classes are used to retrieve search results from DuckDuckGo.com.
|
|
@@ -393,7 +394,7 @@ await main()
|
|
|
393
394
|
|
|
394
395
|
## 💻 Usage of WEBS
|
|
395
396
|
|
|
396
|
-
### 1. `text()` - Text Search by DuckDuckGo.com
|
|
397
|
+
### 1. `text()` - Text Search by DuckDuckGo.com
|
|
397
398
|
|
|
398
399
|
```python
|
|
399
400
|
from webscout import WEBS
|
|
@@ -407,7 +408,7 @@ with WEBS() as WEBS:
|
|
|
407
408
|
print(r)
|
|
408
409
|
```
|
|
409
410
|
|
|
410
|
-
### 2. `answers()` - Instant Answers by DuckDuckGo.com
|
|
411
|
+
### 2. `answers()` - Instant Answers by DuckDuckGo.com
|
|
411
412
|
|
|
412
413
|
```python
|
|
413
414
|
from webscout import WEBS
|
|
@@ -418,7 +419,7 @@ with WEBS() as WEBS:
|
|
|
418
419
|
print(r)
|
|
419
420
|
```
|
|
420
421
|
|
|
421
|
-
### 3. `images()` - Image Search by DuckDuckGo.com
|
|
422
|
+
### 3. `images()` - Image Search by DuckDuckGo.com
|
|
422
423
|
|
|
423
424
|
```python
|
|
424
425
|
from webscout import WEBS
|
|
@@ -440,7 +441,7 @@ with WEBS() as WEBS:
|
|
|
440
441
|
print(r)
|
|
441
442
|
```
|
|
442
443
|
|
|
443
|
-
### 4. `videos()` - Video Search by DuckDuckGo.com
|
|
444
|
+
### 4. `videos()` - Video Search by DuckDuckGo.com
|
|
444
445
|
|
|
445
446
|
```python
|
|
446
447
|
from webscout import WEBS
|
|
@@ -461,7 +462,7 @@ with WEBS() as WEBS:
|
|
|
461
462
|
print(r)
|
|
462
463
|
```
|
|
463
464
|
|
|
464
|
-
### 5. `news()` - News Search by DuckDuckGo.com
|
|
465
|
+
### 5. `news()` - News Search by DuckDuckGo.com
|
|
465
466
|
|
|
466
467
|
```python
|
|
467
468
|
from webscout import WEBS
|
|
@@ -554,19 +555,17 @@ with WEBS() as webs:
|
|
|
554
555
|
|
|
555
556
|
```
|
|
556
557
|
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
## ALL Acts
|
|
558
|
+
## ALL Acts
|
|
560
559
|
|
|
561
560
|
<details>
|
|
562
561
|
<summary>Expand</summary>
|
|
563
562
|
|
|
564
|
-
## Webscout Supported Acts
|
|
563
|
+
## Webscout Supported Acts
|
|
565
564
|
|
|
566
565
|
1. Free-mode
|
|
567
566
|
2. Linux Terminal
|
|
568
567
|
3. English Translator and Improver
|
|
569
|
-
4. `position` Interviewer
|
|
568
|
+
4. `position` Interviewer
|
|
570
569
|
5. JavaScript Console
|
|
571
570
|
6. Excel Sheet
|
|
572
571
|
7. English Pronunciation Helper
|
|
@@ -724,7 +723,7 @@ with WEBS() as webs:
|
|
|
724
723
|
159. Wikipedia page
|
|
725
724
|
160. Japanese Kanji quiz machine
|
|
726
725
|
161. note-taking assistant
|
|
727
|
-
162. `language` Literary Critic
|
|
726
|
+
162. `language` Literary Critic
|
|
728
727
|
163. Cheap Travel Ticket Advisor
|
|
729
728
|
164. DALL-E
|
|
730
729
|
165. MathBot
|
|
@@ -749,7 +748,7 @@ with WEBS() as webs:
|
|
|
749
748
|
184. Hypothetical response
|
|
750
749
|
185. BH
|
|
751
750
|
186. Text Continuation
|
|
752
|
-
187. Dude v3
|
|
751
|
+
187. Dude v3
|
|
753
752
|
188. SDA (Superior DAN)
|
|
754
753
|
189. AntiGPT
|
|
755
754
|
190. BasedGPT v2
|
|
@@ -798,19 +797,19 @@ with WEBS() as webs:
|
|
|
798
797
|
233. LiveGPT
|
|
799
798
|
234. DAN Jailbreak
|
|
800
799
|
235. Cooper
|
|
801
|
-
236. Steve
|
|
800
|
+
236. Steve
|
|
802
801
|
237. DAN 5.0
|
|
803
802
|
238. Axies
|
|
804
803
|
239. OMNI
|
|
805
804
|
240. Burple
|
|
806
|
-
241. JOHN
|
|
805
|
+
241. JOHN
|
|
807
806
|
242. An Ethereum Developer
|
|
808
807
|
243. SEO Prompt
|
|
809
808
|
244. Prompt Enhancer
|
|
810
809
|
245. Data Scientist
|
|
811
810
|
246. League of Legends Player
|
|
812
811
|
|
|
813
|
-
**Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
|
|
812
|
+
**Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
|
|
814
813
|
___
|
|
815
814
|
</details>
|
|
816
815
|
|
|
@@ -904,7 +903,7 @@ for chunk in response:
|
|
|
904
903
|
|
|
905
904
|
```
|
|
906
905
|
|
|
907
|
-
###
|
|
906
|
+
### ⬛ `BlackBox` - Search/Chat with BlackBox
|
|
908
907
|
|
|
909
908
|
```python
|
|
910
909
|
from webscout import BLACKBOXAI
|
|
@@ -931,8 +930,7 @@ r = ai.chat(prompt)
|
|
|
931
930
|
print(r)
|
|
932
931
|
```
|
|
933
932
|
|
|
934
|
-
|
|
935
|
-
### 🤖 `Meta AI` - Chat with Meta AI
|
|
933
|
+
### 🤖 `Meta AI` - Chat with Meta AI
|
|
936
934
|
|
|
937
935
|
```python
|
|
938
936
|
from webscout import Meta
|
|
@@ -966,7 +964,7 @@ for media in response["media"]:
|
|
|
966
964
|
|
|
967
965
|
```
|
|
968
966
|
|
|
969
|
-
###
|
|
967
|
+
### `KOBOLDAI`
|
|
970
968
|
|
|
971
969
|
```python
|
|
972
970
|
from webscout import KOBOLDAI
|
|
@@ -986,7 +984,7 @@ print(message)
|
|
|
986
984
|
|
|
987
985
|
```
|
|
988
986
|
|
|
989
|
-
###
|
|
987
|
+
### `Reka` - Chat with Reka
|
|
990
988
|
|
|
991
989
|
```python
|
|
992
990
|
from webscout import REKA
|
|
@@ -998,7 +996,7 @@ response_str = a.chat(prompt)
|
|
|
998
996
|
print(response_str)
|
|
999
997
|
```
|
|
1000
998
|
|
|
1001
|
-
###
|
|
999
|
+
### `Cohere` - Chat with Cohere
|
|
1002
1000
|
|
|
1003
1001
|
```python
|
|
1004
1002
|
from webscout import Cohere
|
|
@@ -1010,7 +1008,7 @@ response_str = a.chat(prompt)
|
|
|
1010
1008
|
print(response_str)
|
|
1011
1009
|
```
|
|
1012
1010
|
|
|
1013
|
-
###
|
|
1011
|
+
### `Deepinfra`
|
|
1014
1012
|
|
|
1015
1013
|
```python
|
|
1016
1014
|
from webscout import DeepInfra
|
|
@@ -1037,8 +1035,7 @@ message = ai.get_message(response)
|
|
|
1037
1035
|
print(message)
|
|
1038
1036
|
```
|
|
1039
1037
|
|
|
1040
|
-
|
|
1041
|
-
### `GROQ`
|
|
1038
|
+
### `GROQ`
|
|
1042
1039
|
|
|
1043
1040
|
```python
|
|
1044
1041
|
from webscout import GROQ
|
|
@@ -1125,7 +1122,7 @@ print(response_search)
|
|
|
1125
1122
|
|
|
1126
1123
|
```
|
|
1127
1124
|
|
|
1128
|
-
###
|
|
1125
|
+
### `LLama 70b` - Chat with Meta's Llama 3 70b
|
|
1129
1126
|
|
|
1130
1127
|
```python
|
|
1131
1128
|
|
|
@@ -1137,7 +1134,7 @@ r = llama.chat("What is the meaning of life?")
|
|
|
1137
1134
|
print(r)
|
|
1138
1135
|
```
|
|
1139
1136
|
|
|
1140
|
-
###
|
|
1137
|
+
### `AndiSearch`
|
|
1141
1138
|
|
|
1142
1139
|
```python
|
|
1143
1140
|
from webscout import AndiSearch
|
|
@@ -1145,8 +1142,7 @@ a = AndiSearch()
|
|
|
1145
1142
|
print(a.chat("HelpingAI-9B"))
|
|
1146
1143
|
```
|
|
1147
1144
|
|
|
1148
|
-
|
|
1149
|
-
### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek
|
|
1145
|
+
### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek, FreeAIChat, AkashGPT, PerplexityLabs, AllenAI, HeckAI, TwoAI, Venice
|
|
1150
1146
|
|
|
1151
1147
|
Code is similar to other providers.
|
|
1152
1148
|
|
|
@@ -1170,7 +1166,7 @@ response = vlm.chat([{
|
|
|
1170
1166
|
}])
|
|
1171
1167
|
```
|
|
1172
1168
|
|
|
1173
|
-
##
|
|
1169
|
+
## 💻 Local-LLM
|
|
1174
1170
|
|
|
1175
1171
|
Webscout can now run GGUF models locally. You can download and run your favorite models with minimal configuration.
|
|
1176
1172
|
|
|
@@ -1282,7 +1278,7 @@ while True:
|
|
|
1282
1278
|
|
|
1283
1279
|
```
|
|
1284
1280
|
|
|
1285
|
-
##
|
|
1281
|
+
## GGUF
|
|
1286
1282
|
|
|
1287
1283
|
Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
|
|
1288
1284
|
|
|
@@ -1321,21 +1317,22 @@ autollama.main(model_path, gguf_file)
|
|
|
1321
1317
|
**Command Line Usage:**
|
|
1322
1318
|
|
|
1323
1319
|
* **GGUF Conversion:**
|
|
1320
|
+
|
|
1324
1321
|
```bash
|
|
1325
1322
|
python -m webscout.Extra.gguf -m "OEvortex/HelpingAI-Lite-1.5T" -u "your_username" -t "your_hf_token" -q "q4_k_m,q5_k_m"
|
|
1326
1323
|
```
|
|
1327
1324
|
|
|
1328
1325
|
* **Autollama:**
|
|
1326
|
+
|
|
1329
1327
|
```bash
|
|
1330
1328
|
python -m webscout.Extra.autollama -m "OEvortex/HelpingAI-Lite-1.5T" -g "HelpingAI-Lite-1.5T.q4_k_m.gguf"
|
|
1331
1329
|
```
|
|
1332
1330
|
|
|
1333
|
-
**Note:**
|
|
1331
|
+
**Note:**
|
|
1334
1332
|
|
|
1335
1333
|
* Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
|
|
1336
1334
|
* The `model_path` in `autollama` is the Hugging Face model ID, and `gguf_file` is the GGUF file ID.
|
|
1337
1335
|
|
|
1338
|
-
|
|
1339
1336
|
<div align="center">
|
|
1340
1337
|
<!-- Replace `#` with your actual links -->
|
|
1341
1338
|
<a href="https://t.me/official_helpingai"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
@@ -1346,13 +1343,13 @@ autollama.main(model_path, gguf_file)
|
|
|
1346
1343
|
|
|
1347
1344
|
<div align="center">
|
|
1348
1345
|
<!-- Replace `#` with your actual links -->
|
|
1349
|
-
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
1346
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
1350
1347
|
</div>
|
|
1351
1348
|
<div align="center">
|
|
1352
|
-
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
1349
|
+
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
1353
1350
|
</div>
|
|
1354
1351
|
<div align="center">
|
|
1355
|
-
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
1352
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
1356
1353
|
</div>
|
|
1357
1354
|
|
|
1358
1355
|
## 🤝 Contributing
|
|
@@ -1365,9 +1362,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
1365
1362
|
4. Push your branch to your forked repository.
|
|
1366
1363
|
5. Submit a pull request to the main repository.
|
|
1367
1364
|
|
|
1368
|
-
|
|
1369
1365
|
## 🙏 Acknowledgments
|
|
1370
1366
|
|
|
1371
1367
|
* All the amazing developers who have contributed to the project!
|
|
1372
1368
|
* The open-source community for their support and inspiration.
|
|
1373
|
-
|
|
@@ -14,7 +14,7 @@ webscout/prompt_manager.py,sha256=Jc0demWN6M6QcwRp14aHZR05r_PVPOaG8PnQkO7pDZ4,98
|
|
|
14
14
|
webscout/tempid.py,sha256=hxzPVBjxAa5GLBQ9fE6ob5ixJpQeU-mgdfTzh33EHvE,4926
|
|
15
15
|
webscout/update_checker.py,sha256=DuibA_i2if47V40luhPBY0AeVEo8RjkDFzPElRISQn4,4867
|
|
16
16
|
webscout/utils.py,sha256=LVW7U0XcGYqigqxV6D5YXeGMrc_mt7PnNG_YnKf9bBM,3059
|
|
17
|
-
webscout/version.py,sha256=
|
|
17
|
+
webscout/version.py,sha256=8MMpUMYCxhOeS8LAtRcGSnOca3mFGqIIRAG-mTjB9mQ,44
|
|
18
18
|
webscout/webscout_search.py,sha256=Kl2gDj03xZeg4g-szln7R_f8oAbZ4_tjKtrXVgBfG1U,49854
|
|
19
19
|
webscout/webscout_search_async.py,sha256=wlLv4vn8UP54R76vsTwvnUgpP0a6nPAPDdX2Cz8F_Dg,27310
|
|
20
20
|
webscout/yep_search.py,sha256=IuuhtTN6_H__EwtMpXs_o_0SEeujV68hfAS2teAgoZc,10132
|
|
@@ -65,6 +65,7 @@ webscout/Local/thread.py,sha256=ctnoJtkOpKbpdlqCjsnyM2sI-3_AKg9PzNwS3QAIifQ,2360
|
|
|
65
65
|
webscout/Local/ui.py,sha256=FhqBcC7SVHwRfvrnTduoa7gpQNWYzrSc7OGm89ErNPY,15064
|
|
66
66
|
webscout/Local/utils.py,sha256=kYXfR9h4JFojkiKQhF1XHclqX0vB0qPKOkfYKjrgwuc,13216
|
|
67
67
|
webscout/Provider/AI21.py,sha256=JBh-xnspxTZNMcl-Gd0Cgseqht9gTM64TUv9I4Imc9k,6218
|
|
68
|
+
webscout/Provider/AllenAI.py,sha256=wvelD3lHyaLiOPPH-C2EGJJOQDkY4Jdfr9xQXRi2LnA,10949
|
|
68
69
|
webscout/Provider/Amigo.py,sha256=LkZuvFUwkmdzgMhUEMYvXKpNpLstjznRMe-CQydYO7g,11637
|
|
69
70
|
webscout/Provider/Andi.py,sha256=-vqXWlJcHzhfZ-iW4qJy9yxzctPKp2RdmdW02hf4XLs,8863
|
|
70
71
|
webscout/Provider/Bing.py,sha256=zxIzq7dlqaLskx9LsYppbMJuwfGtYid3Uh0gIhZ0hps,9001
|
|
@@ -76,15 +77,17 @@ webscout/Provider/Cloudflare.py,sha256=DgIYvYMZpuolh6JTFWiJEKL-WRWF6fBdmpMg0LmkY
|
|
|
76
77
|
webscout/Provider/Cohere.py,sha256=oL9kAv--RSkEQxwkPTq1Wi57Wkgg0WNvL82CpTj22YY,8264
|
|
77
78
|
webscout/Provider/DARKAI.py,sha256=kVElPYVh_VchfGylR4YzC3orrPJPyPoOpSolc62b5eY,8944
|
|
78
79
|
webscout/Provider/DeepSeek.py,sha256=xa_ct5ux6K7GGoaruKWUdykNpMQQvnkMWAl5BhWvj1A,8435
|
|
79
|
-
webscout/Provider/Deepinfra.py,sha256=
|
|
80
|
+
webscout/Provider/Deepinfra.py,sha256=ZuKmzg0j3_C8kPv9MuJucMkP3MXllQ07Jbsw2gtFzEc,8701
|
|
80
81
|
webscout/Provider/DiscordRocks.py,sha256=fRkVBCyDMZf0SoaNPK7KXAsh8mQj0JWDb7ifYpL9PQQ,11372
|
|
81
82
|
webscout/Provider/EDITEE.py,sha256=9rq7c84XoIoRBqd0qgW-Ebu3lyffhicSOtUvMtAjO0s,7742
|
|
83
|
+
webscout/Provider/ElectronHub.py,sha256=FYSWV-ujltkRR0dn7xLmDuSgiZE8-sfn1O5NjW4a5DU,20777
|
|
82
84
|
webscout/Provider/Free2GPT.py,sha256=3c1tLsYhYCBdjBStLfQvUII3Vojw9-DZpgjyK_T13a4,9197
|
|
83
85
|
webscout/Provider/GPTWeb.py,sha256=xh_mnBko6RDyz2v3KhMux-yIipipkZfVVVoUJWkbzcQ,7466
|
|
84
86
|
webscout/Provider/Gemini.py,sha256=0ohprs4SZsH2hRCYXWWMXiBP5qCvAmFoJAdnP6BR5yA,7295
|
|
85
|
-
webscout/Provider/Glider.py,sha256=
|
|
87
|
+
webscout/Provider/Glider.py,sha256=6WjnnxwBm7uIlHidbMI-aSFJalmJAwmCRCTSO1X8UDA,7325
|
|
86
88
|
webscout/Provider/Groq.py,sha256=N6iRcxBhtsKdaJNAD5oMauPZFW8Kti2Lpiss7GN5mJ4,29062
|
|
87
|
-
webscout/Provider/
|
|
89
|
+
webscout/Provider/HeckAI.py,sha256=mulDtFUsWniNvSh1xh1hQZhniWGpgIOhnErVKeP2cho,7505
|
|
90
|
+
webscout/Provider/Jadve.py,sha256=MFMsTPbZC9QJjyS23zvzU6HMq31rqKpos7vp-LEhIk8,10112
|
|
88
91
|
webscout/Provider/Koboldai.py,sha256=gpRgyDe4OQWwNqT7MWnNrJx4dnFmCW23KUx0Ezjgchk,15185
|
|
89
92
|
webscout/Provider/Llama.py,sha256=N01p3ZVD1HgRnNNxhjRhBVD4m_qiextdyF1KDfJlqbE,7703
|
|
90
93
|
webscout/Provider/Llama3.py,sha256=O2XJKoQD2bYq9T_PyFW36mFy3yNXYMuGSBzlfFzVdo8,8106
|
|
@@ -92,33 +95,37 @@ webscout/Provider/Marcus.py,sha256=UkCr3GgoF6YB6x3PdA2iZOPivfkD8lXh--yM16iPAh0,7
|
|
|
92
95
|
webscout/Provider/Netwrck.py,sha256=MgzLg-Z6QOPUlnK08oKoPw2JDvZrHClacbiU1YmC06w,9465
|
|
93
96
|
webscout/Provider/OLLAMA.py,sha256=RQXJt-PJYnA15_IXhUy4mM9qwm4PcBMfINaZm2KG6zE,7018
|
|
94
97
|
webscout/Provider/Openai.py,sha256=mpJ9VgIyvW6uo0-jIcx5Qcz4PIUAj3xVLOgKrB1z9pU,20074
|
|
95
|
-
webscout/Provider/PI.py,sha256=
|
|
98
|
+
webscout/Provider/PI.py,sha256=A2Tr7DJXf3jkB8JVcWfQSmL4hAHwrXdUcKrfv50I2-E,11988
|
|
99
|
+
webscout/Provider/Perplexitylabs.py,sha256=_g6J91ca4qlRDPBaUvAL5ZZaOJjdmUVamjomS8itZ8M,15687
|
|
96
100
|
webscout/Provider/Phind.py,sha256=FaE10xQJ_TluRnzA_t7SxXsqgKzTfXR5lLGla2DQVBM,19467
|
|
97
101
|
webscout/Provider/PizzaGPT.py,sha256=sYijGNHFKry1Uai4CPcsaBl2UQ_rB3lksIdAvpqW6FA,9070
|
|
98
|
-
webscout/Provider/QwenLM.py,sha256=
|
|
102
|
+
webscout/Provider/QwenLM.py,sha256=PA7Sq00E-eAjmePqnDYmLgzjdHbriwH6lIiivpJWLwM,10478
|
|
99
103
|
webscout/Provider/Reka.py,sha256=dWw4vX91nJhAn-X1SXK72gttRaTqWNGUBFaeRJobTJg,8519
|
|
100
104
|
webscout/Provider/TeachAnything.py,sha256=6scp1tzcc5z_TKUALArQ4APCNElHJ7SzsJoiB71o0V0,7169
|
|
101
|
-
webscout/Provider/TextPollinationsAI.py,sha256=
|
|
102
|
-
webscout/Provider/
|
|
105
|
+
webscout/Provider/TextPollinationsAI.py,sha256=2UyorUNaOxe58RyblbAdkHPrIg5zgS7WvUEMqAJ216o,9869
|
|
106
|
+
webscout/Provider/TwoAI.py,sha256=QmUC5DzkaxxJQ7lkn4EN3XS6RnuEwho4C3qzaVul3Zk,7240
|
|
107
|
+
webscout/Provider/Venice.py,sha256=Jce4282i9pkr6-nwOvNqvwGzotGjBcU7PXr9kqvr1q4,7223
|
|
108
|
+
webscout/Provider/WiseCat.py,sha256=OKDe-p4puC70BLslD12_cUfFZAls8K55MJ7M5pVwOEc,5988
|
|
103
109
|
webscout/Provider/Youchat.py,sha256=LmPskUWaOJlJSYsGeHsu5riD1X6Rp6pFmdApZh_t98I,10205
|
|
104
|
-
webscout/Provider/__init__.py,sha256=
|
|
110
|
+
webscout/Provider/__init__.py,sha256=Sir3adO8HK_kEcWfsuL_xSVd4IQ4MiQTVuYXLGJ-34o,3367
|
|
105
111
|
webscout/Provider/ai4chat.py,sha256=av96iS4QPt9IzhcswowmDY2F8IUSLl1YVHZ4bAbfO-s,8140
|
|
106
112
|
webscout/Provider/aimathgpt.py,sha256=BdXNxEHQP11p6m0wl2Q-uben46A6lMKOg89utV1S7aI,7320
|
|
113
|
+
webscout/Provider/akashgpt.py,sha256=S9sZ3VoAOlBG6d-138Mrc_YfQyAhkTYA9t3eIVhopkI,11626
|
|
107
114
|
webscout/Provider/askmyai.py,sha256=MX3883xxpMe5GUahyQOwR4ZR_Oa_zAg4N7ksZ4zhB9s,5904
|
|
108
115
|
webscout/Provider/bagoodex.py,sha256=OdYIyvypX-Vkok9zAr6F5NwFQx_z0bKhiw8U4tTFw5o,5023
|
|
109
116
|
webscout/Provider/cerebras.py,sha256=6lbXnzTsTgcWQFgNA5dBI1MumSEc6EljJ5GI_YQoyMQ,8586
|
|
110
|
-
webscout/Provider/chatglm.py,sha256=
|
|
117
|
+
webscout/Provider/chatglm.py,sha256=QPqUd9Wb_waoYe6ctMvTZpRigCuWlbvFozfwHRSd6o4,8191
|
|
111
118
|
webscout/Provider/cleeai.py,sha256=ZIPm2dT8H8BxGSLHsgp6aDWn3DVOxAOcFfkMNH1UK0I,7979
|
|
112
119
|
webscout/Provider/dgaf.py,sha256=KMzeAnKR12cGWcqQGZi56VoN6JChIrryCBOYSB0aQOE,8881
|
|
113
120
|
webscout/Provider/elmo.py,sha256=I7qq2YvKht28Z2KFTxj3wNyekJM6gAJCExilB-_UkzQ,9308
|
|
114
|
-
webscout/Provider/freeaichat.py,sha256=
|
|
121
|
+
webscout/Provider/freeaichat.py,sha256=VIyW9Yrlu6GCx4CwnEHOeQeOGjAkOgtqR9J_vG8qwFw,9424
|
|
115
122
|
webscout/Provider/gaurish.py,sha256=-eZapN28Fsp9SPwF2KpakaB8mPChQDsEWHYMKwPovEc,10079
|
|
116
123
|
webscout/Provider/geminiapi.py,sha256=-_QbDBF_IiYyOJ0_uAIcE-gfzIs8H86nA5VWX52SRoY,8505
|
|
117
124
|
webscout/Provider/geminiprorealtime.py,sha256=DQdChZRryg9bvXiKpos7wFlu0Q6QNq9lYkbb-FJubWk,5766
|
|
118
125
|
webscout/Provider/granite.py,sha256=kj2KK_ak1ZaJY116Hir_F8TfZkCDyCUtWkzmaMqFVwg,9366
|
|
119
126
|
webscout/Provider/hermes.py,sha256=NhVAwefvPYyIaWVctw_6iNoDLVJw5nR3Zd4mmA0Dl9M,8452
|
|
120
127
|
webscout/Provider/julius.py,sha256=unD3UUnW8-Bie4o0__Vn7cXfqnaVvlE3MWI-LYGb5VE,8576
|
|
121
|
-
webscout/Provider/koala.py,sha256=
|
|
128
|
+
webscout/Provider/koala.py,sha256=JQBBkC1IoT8UERpXhAWRXU-UJeuEqn5W3PADkYMnAeQ,10336
|
|
122
129
|
webscout/Provider/learnfastai.py,sha256=xANWSHF3e6kTKgwbAHYdjNWIwYvr5Bin0NDENmJvruE,9763
|
|
123
130
|
webscout/Provider/lepton.py,sha256=ocex934Pb0AXiDrTLh67KhouoHh4EIl5giQbW6cgeDQ,7513
|
|
124
131
|
webscout/Provider/llama3mitril.py,sha256=zRd9fVplpYWxDr83peayC_KLoYdmC9FMqWp3V6RpPBs,6624
|
|
@@ -132,14 +139,15 @@ webscout/Provider/turboseek.py,sha256=uEoL5eJFvnpDCymTufrC8O9Ni3i8acb0GBy4JweFeI
|
|
|
132
139
|
webscout/Provider/tutorai.py,sha256=hgjYrI1zqNRhHEoi8t1OU8m9i80EQCay5UtmKqbNS9w,11205
|
|
133
140
|
webscout/Provider/typegpt.py,sha256=UYczMtQD3iJa4681O3aIt_oZ-8tjws69CFx_65mMC0E,13630
|
|
134
141
|
webscout/Provider/x0gpt.py,sha256=eKDEbUIkY1Cc8mCad-CFA4ZgBXOmR7T7rKf89lh16-8,9383
|
|
135
|
-
webscout/Provider/yep.py,sha256=
|
|
142
|
+
webscout/Provider/yep.py,sha256=h0XuPE867mChw1b1T31UUsVVJ2iiIJEPw_-fqoUlEuc,9049
|
|
136
143
|
webscout/Provider/AISEARCH/DeepFind.py,sha256=u7jendlE27jY3H_PRB5I5ne_z2oZCeEVBTbXkQ7Msn0,10293
|
|
137
144
|
webscout/Provider/AISEARCH/ISou.py,sha256=Gpud30sMwoLGngkIvi6YH0rXcWiAAFTemZnIW4Zdtbc,10720
|
|
138
|
-
webscout/Provider/AISEARCH/__init__.py,sha256=
|
|
145
|
+
webscout/Provider/AISEARCH/__init__.py,sha256=mO1mvCXUK7pAkjD7LAg3CFqqr0TbiX_B72e7P7niGIo,104
|
|
139
146
|
webscout/Provider/AISEARCH/felo_search.py,sha256=uR89JwDXH5HB_EHdVwHC6CMpPeLvHFYmi6PO-YQmAyw,8879
|
|
147
|
+
webscout/Provider/AISEARCH/genspark_search.py,sha256=37RDY4yUp46yOm3IgmrVSLOLfCeyJYkFwrYzewwzKaM,8155
|
|
140
148
|
webscout/Provider/HF_space/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
149
|
webscout/Provider/HF_space/qwen_qwen2.py,sha256=KP7KiPa_OavNh_dF4B2qAv6sX5O6LgD6FeEep5wRNM4,7627
|
|
142
|
-
webscout/Provider/TTI/__init__.py,sha256=
|
|
150
|
+
webscout/Provider/TTI/__init__.py,sha256=_C-bHeJqixz8Xii-5Ee8GwRaoIrfns03bw3jRgskko8,285
|
|
143
151
|
webscout/Provider/TTI/AiForce/__init__.py,sha256=R8r6XYBUoGB_26jSyjGwHpw8GtZ0wbnkBoHxu26T_QU,685
|
|
144
152
|
webscout/Provider/TTI/AiForce/async_aiforce.py,sha256=Soq-h0BK20nVU1IcRrg4Sb8a4XAJ7_DDQMdFYP5_4Tg,9847
|
|
145
153
|
webscout/Provider/TTI/AiForce/sync_aiforce.py,sha256=eGAveKtkp-h5kSZ-bQo4b2LlNSGpFyGklPm80ECwsto,8859
|
|
@@ -167,6 +175,9 @@ webscout/Provider/TTI/huggingface/sync_huggingface.py,sha256=wS900jmz1nVl7ji06hx
|
|
|
167
175
|
webscout/Provider/TTI/imgninza/__init__.py,sha256=z9HSgDhhjeVBglzhjGY-YbXVntBROOf7fEwKw4ss55A,129
|
|
168
176
|
webscout/Provider/TTI/imgninza/async_ninza.py,sha256=ilCNzviqBlzy9nRerY8wKDkkOJp-Wj7DdXCUmFKDy88,8541
|
|
169
177
|
webscout/Provider/TTI/imgninza/sync_ninza.py,sha256=7WATZJt5v-L9ys5t69Hq5rQuaUfTDneox531rH97s_o,8427
|
|
178
|
+
webscout/Provider/TTI/piclumen/__init__.py,sha256=-UH3nxe3O_xDAHGYGh9g11HG37enJAiZvyraQDnf9os,814
|
|
179
|
+
webscout/Provider/TTI/piclumen/async_piclumen.py,sha256=VaeI21pHpUjxZNQXSm6AYHsE9cGQJl6SesGjgZF5R_M,10119
|
|
180
|
+
webscout/Provider/TTI/piclumen/sync_piclumen.py,sha256=LV8WkHZVrOJayO3JyW9vKZGLsX6ebl95G8WND7iiUjk,8466
|
|
170
181
|
webscout/Provider/TTI/talkai/__init__.py,sha256=3gAbrtt0GvnpwNN4N6ZpGgP489S6yhipRJo04RS5ilY,135
|
|
171
182
|
webscout/Provider/TTI/talkai/async_talkai.py,sha256=Rw8dHO_qKje0hH58NSZmLEDcjq-PIpLEzRPyQL0kSDM,9411
|
|
172
183
|
webscout/Provider/TTI/talkai/sync_talkai.py,sha256=cShwwaLBbCdgW4DdoaYIMGK5DuR6f0aZRx2UQ-idqxM,8300
|
|
@@ -215,9 +226,9 @@ webstoken/sentiment.py,sha256=yHtaHXJNS_sH1UTHZsOIgyhdijr8oi1pMlg_QE2wtxw,8202
|
|
|
215
226
|
webstoken/stemmer.py,sha256=VXWkBpPaH328WEQxw9e9ff-p2e27xDdbpVSy0nTnXYE,2624
|
|
216
227
|
webstoken/tagger.py,sha256=p4ScFnxn5sShYDVRoHK5pn_mzaDTsEtx3EHRvuvOlfE,2306
|
|
217
228
|
webstoken/tokenizer.py,sha256=XJ-d1MFRp0Trw6gtOtZ8_wAcaSQidnSCHLNpV1-OFJc,6016
|
|
218
|
-
webscout-7.
|
|
219
|
-
webscout-7.
|
|
220
|
-
webscout-7.
|
|
221
|
-
webscout-7.
|
|
222
|
-
webscout-7.
|
|
223
|
-
webscout-7.
|
|
229
|
+
webscout-7.4.dist-info/LICENSE.md,sha256=5mkWS6cgjGxJClmN7n--h0beF3uFAOV_Ngr1YTK33Tk,9203
|
|
230
|
+
webscout-7.4.dist-info/METADATA,sha256=UpPqLPSx9vJ69R4CuU0aQbpDSdWzNLHdY7bo4kUtchQ,41415
|
|
231
|
+
webscout-7.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
232
|
+
webscout-7.4.dist-info/entry_points.txt,sha256=7thMsVUoHiXGoIH1NeoocKpxlszWflNsNyrnDqGzvO0,70
|
|
233
|
+
webscout-7.4.dist-info/top_level.txt,sha256=KQtbgkA3gxcsADB0hIIx-heydmEYXpAY7xn3LjwDx0E,19
|
|
234
|
+
webscout-7.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|