webscout 7.0__tar.gz → 7.2__tar.gz
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-7.0/webscout.egg-info → webscout-7.2}/PKG-INFO +21 -28
- {webscout-7.0 → webscout-7.2}/README.md +18 -25
- {webscout-7.0 → webscout-7.2}/setup.py +93 -93
- {webscout-7.0 → webscout-7.2}/webscout/AIauto.py +191 -191
- {webscout-7.0 → webscout-7.2}/webscout/AIbase.py +122 -122
- {webscout-7.0 → webscout-7.2}/webscout/AIutel.py +440 -440
- webscout-7.2/webscout/Bard.py +547 -0
- {webscout-7.0 → webscout-7.2}/webscout/DWEBS.py +489 -492
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/YTdownloader.py +995 -995
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/__init__.py +2 -2
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/transcriber.py +476 -479
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/channel.py +307 -307
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/playlist.py +58 -58
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/pool.py +7 -7
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/utils.py +62 -62
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/video.py +103 -103
- {webscout-7.0 → webscout-7.2}/webscout/Extra/autocoder/__init__.py +9 -9
- {webscout-7.0 → webscout-7.2}/webscout/Extra/autocoder/autocoder_utiles.py +199 -199
- {webscout-7.0 → webscout-7.2}/webscout/Extra/autocoder/rawdog.py +5 -7
- {webscout-7.0 → webscout-7.2}/webscout/Extra/autollama.py +230 -230
- {webscout-7.0 → webscout-7.2}/webscout/Extra/gguf.py +3 -3
- {webscout-7.0 → webscout-7.2}/webscout/Extra/weather.py +171 -171
- {webscout-7.0 → webscout-7.2}/webscout/LLM.py +442 -442
- webscout-7.2/webscout/Litlogger/__init__.py +67 -0
- webscout-7.2/webscout/Litlogger/core/__init__.py +6 -0
- webscout-7.2/webscout/Litlogger/core/level.py +20 -0
- webscout-7.2/webscout/Litlogger/core/logger.py +123 -0
- webscout-7.2/webscout/Litlogger/handlers/__init__.py +12 -0
- webscout-7.2/webscout/Litlogger/handlers/console.py +50 -0
- webscout-7.2/webscout/Litlogger/handlers/file.py +143 -0
- webscout-7.2/webscout/Litlogger/handlers/network.py +174 -0
- webscout-7.2/webscout/Litlogger/styles/__init__.py +7 -0
- webscout-7.2/webscout/Litlogger/styles/colors.py +231 -0
- webscout-7.2/webscout/Litlogger/styles/formats.py +377 -0
- webscout-7.2/webscout/Litlogger/styles/text.py +87 -0
- webscout-7.2/webscout/Litlogger/utils/__init__.py +6 -0
- webscout-7.2/webscout/Litlogger/utils/detectors.py +154 -0
- webscout-7.2/webscout/Litlogger/utils/formatters.py +200 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/AISEARCH/DeepFind.py +250 -250
- webscout-7.2/webscout/Provider/Blackboxai.py +229 -0
- webscout-7.2/webscout/Provider/ChatGPTGratis.py +226 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Cloudflare.py +91 -78
- webscout-7.2/webscout/Provider/DeepSeek.py +218 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Deepinfra.py +59 -35
- webscout-7.2/webscout/Provider/Free2GPT.py +241 -0
- webscout-7.2/webscout/Provider/Gemini.py +179 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Glider.py +74 -59
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Groq.py +30 -18
- webscout-7.2/webscout/Provider/Jadve.py +265 -0
- webscout-7.2/webscout/Provider/Llama3.py +212 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Marcus.py +191 -137
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Netwrck.py +62 -50
- {webscout-7.0 → webscout-7.2}/webscout/Provider/PI.py +79 -124
- webscout-7.2/webscout/Provider/PizzaGPT.py +239 -0
- webscout-7.2/webscout/Provider/QwenLM.py +311 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/AiForce/__init__.py +22 -22
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/AiForce/async_aiforce.py +257 -257
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/AiForce/sync_aiforce.py +242 -242
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/Nexra/__init__.py +22 -22
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/Nexra/async_nexra.py +286 -286
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/Nexra/sync_nexra.py +258 -258
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/PollinationsAI/__init__.py +23 -23
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +330 -330
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +285 -285
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/artbit/__init__.py +22 -22
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/artbit/async_artbit.py +184 -184
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/artbit/sync_artbit.py +176 -176
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/blackbox/__init__.py +4 -4
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/blackbox/async_blackbox.py +212 -212
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/blackbox/sync_blackbox.py +199 -199
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/deepinfra/__init__.py +4 -4
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/deepinfra/async_deepinfra.py +227 -227
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/deepinfra/sync_deepinfra.py +199 -199
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/huggingface/__init__.py +22 -22
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/huggingface/async_huggingface.py +199 -199
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/huggingface/sync_huggingface.py +195 -195
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/imgninza/__init__.py +4 -4
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/imgninza/async_ninza.py +214 -214
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/imgninza/sync_ninza.py +209 -209
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/talkai/__init__.py +4 -4
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/talkai/async_talkai.py +229 -229
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/talkai/sync_talkai.py +207 -207
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/deepgram.py +182 -182
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/elevenlabs.py +136 -136
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/gesserit.py +150 -150
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/murfai.py +138 -138
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/parler.py +133 -134
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/streamElements.py +360 -360
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/utils.py +280 -280
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/voicepod.py +116 -116
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TextPollinationsAI.py +74 -47
- webscout-7.2/webscout/Provider/WiseCat.py +193 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/__init__.py +144 -136
- {webscout-7.0 → webscout-7.2}/webscout/Provider/cerebras.py +242 -227
- {webscout-7.0 → webscout-7.2}/webscout/Provider/chatglm.py +204 -204
- {webscout-7.0 → webscout-7.2}/webscout/Provider/dgaf.py +67 -39
- webscout-7.2/webscout/Provider/gaurish.py +246 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/geminiapi.py +208 -208
- webscout-7.2/webscout/Provider/granite.py +223 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/hermes.py +218 -218
- {webscout-7.0 → webscout-7.2}/webscout/Provider/llama3mitril.py +179 -179
- {webscout-7.0 → webscout-7.2}/webscout/Provider/llamatutor.py +72 -62
- {webscout-7.0 → webscout-7.2}/webscout/Provider/llmchat.py +60 -35
- {webscout-7.0 → webscout-7.2}/webscout/Provider/meta.py +794 -794
- webscout-7.2/webscout/Provider/multichat.py +331 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/typegpt.py +359 -356
- {webscout-7.0 → webscout-7.2}/webscout/Provider/yep.py +5 -5
- {webscout-7.0 → webscout-7.2}/webscout/__main__.py +5 -5
- {webscout-7.0 → webscout-7.2}/webscout/cli.py +319 -319
- {webscout-7.0 → webscout-7.2}/webscout/conversation.py +241 -242
- {webscout-7.0 → webscout-7.2}/webscout/exceptions.py +328 -328
- {webscout-7.0 → webscout-7.2}/webscout/litagent/__init__.py +28 -28
- {webscout-7.0 → webscout-7.2}/webscout/litagent/agent.py +2 -3
- {webscout-7.0 → webscout-7.2}/webscout/litprinter/__init__.py +0 -58
- {webscout-7.0 → webscout-7.2}/webscout/scout/__init__.py +8 -8
- {webscout-7.0 → webscout-7.2}/webscout/scout/core.py +884 -884
- {webscout-7.0 → webscout-7.2}/webscout/scout/element.py +459 -459
- {webscout-7.0 → webscout-7.2}/webscout/scout/parsers/__init__.py +69 -69
- {webscout-7.0 → webscout-7.2}/webscout/scout/parsers/html5lib_parser.py +172 -172
- {webscout-7.0 → webscout-7.2}/webscout/scout/parsers/html_parser.py +236 -236
- {webscout-7.0 → webscout-7.2}/webscout/scout/parsers/lxml_parser.py +178 -178
- {webscout-7.0 → webscout-7.2}/webscout/scout/utils.py +38 -38
- {webscout-7.0 → webscout-7.2}/webscout/swiftcli/__init__.py +811 -811
- {webscout-7.0 → webscout-7.2}/webscout/update_checker.py +2 -12
- {webscout-7.0 → webscout-7.2}/webscout/version.py +1 -1
- {webscout-7.0 → webscout-7.2}/webscout/webscout_search.py +1142 -1140
- {webscout-7.0 → webscout-7.2}/webscout/webscout_search_async.py +635 -635
- {webscout-7.0 → webscout-7.2}/webscout/zeroart/__init__.py +54 -54
- {webscout-7.0 → webscout-7.2}/webscout/zeroart/base.py +60 -60
- {webscout-7.0 → webscout-7.2}/webscout/zeroart/effects.py +99 -99
- {webscout-7.0 → webscout-7.2}/webscout/zeroart/fonts.py +816 -816
- {webscout-7.0 → webscout-7.2/webscout.egg-info}/PKG-INFO +21 -28
- {webscout-7.0 → webscout-7.2}/webscout.egg-info/SOURCES.txt +19 -1
- {webscout-7.0 → webscout-7.2}/webscout.egg-info/requires.txt +2 -2
- {webscout-7.0 → webscout-7.2}/webstoken/__init__.py +30 -30
- {webscout-7.0 → webscout-7.2}/webstoken/classifier.py +189 -189
- {webscout-7.0 → webscout-7.2}/webstoken/keywords.py +216 -216
- {webscout-7.0 → webscout-7.2}/webstoken/language.py +128 -128
- {webscout-7.0 → webscout-7.2}/webstoken/ner.py +164 -164
- {webscout-7.0 → webscout-7.2}/webstoken/normalizer.py +35 -35
- {webscout-7.0 → webscout-7.2}/webstoken/processor.py +77 -77
- {webscout-7.0 → webscout-7.2}/webstoken/sentiment.py +206 -206
- {webscout-7.0 → webscout-7.2}/webstoken/stemmer.py +73 -73
- {webscout-7.0 → webscout-7.2}/webstoken/tagger.py +60 -60
- {webscout-7.0 → webscout-7.2}/webstoken/tokenizer.py +158 -158
- webscout-7.0/webscout/Bard.py +0 -365
- webscout-7.0/webscout/Litlogger/__init__.py +0 -681
- webscout-7.0/webscout/Provider/Blackboxai.py +0 -230
- webscout-7.0/webscout/Provider/Free2GPT.py +0 -234
- webscout-7.0/webscout/Provider/Gemini.py +0 -194
- webscout-7.0/webscout/Provider/Jadve.py +0 -234
- webscout-7.0/webscout/Provider/Llama3.py +0 -189
- webscout-7.0/webscout/Provider/PizzaGPT.py +0 -193
- webscout-7.0/webscout/Provider/RUBIKSAI.py +0 -272
- webscout-7.0/webscout/Provider/gaurish.py +0 -207
- webscout-7.0/webscout/Provider/multichat.py +0 -230
- {webscout-7.0 → webscout-7.2}/LICENSE.md +0 -0
- {webscout-7.0 → webscout-7.2}/setup.cfg +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/_version.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/formats.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/model.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/samplers.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/thread.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/ui.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Local/utils.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/AI21.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Amigo.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Andi.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Bing.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/ChatGPTES.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Chatify.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Cohere.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/DARKAI.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/DiscordRocks.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/EDITEE.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/GPTWeb.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Koboldai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Llama.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Openai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Phind.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Reka.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/TeachAnything.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/Youchat.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/ai4chat.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/aimathgpt.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/askmyai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/bagoodex.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/cleeai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/elmo.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/geminiprorealtime.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/julius.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/koala.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/learnfastai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/lepton.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/promptrefine.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/talkai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/turboseek.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/tutorai.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/Provider/x0gpt.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/litagent/constants.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/litprinter/colors.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/optimizers.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/prompt_manager.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/__init__.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/crawler.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/scout.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/search_result.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/text_utils.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/tempid.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout/utils.py +0 -0
- {webscout-7.0 → webscout-7.2}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-7.0 → webscout-7.2}/webscout.egg-info/entry_points.txt +0 -0
- {webscout-7.0 → webscout-7.2}/webscout.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.2
|
|
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
|
|
@@ -41,7 +41,7 @@ Requires-Dist: orjson
|
|
|
41
41
|
Requires-Dist: PyYAML
|
|
42
42
|
Requires-Dist: tls_client
|
|
43
43
|
Requires-Dist: clipman
|
|
44
|
-
Requires-Dist: playsound
|
|
44
|
+
Requires-Dist: playsound==1.2.2
|
|
45
45
|
Requires-Dist: ollama
|
|
46
46
|
Requires-Dist: pillow
|
|
47
47
|
Requires-Dist: bson
|
|
@@ -55,8 +55,8 @@ Requires-Dist: primp
|
|
|
55
55
|
Requires-Dist: pyreqwest_impersonate
|
|
56
56
|
Requires-Dist: gradio_client
|
|
57
57
|
Requires-Dist: psutil
|
|
58
|
-
Requires-Dist: yaspin
|
|
59
58
|
Requires-Dist: pygetwindow
|
|
59
|
+
Requires-Dist: aiohttp
|
|
60
60
|
Provides-Extra: dev
|
|
61
61
|
Requires-Dist: ruff>=0.1.6; extra == "dev"
|
|
62
62
|
Requires-Dist: pytest>=7.4.2; extra == "dev"
|
|
@@ -78,42 +78,35 @@ Dynamic: requires-dist
|
|
|
78
78
|
Dynamic: requires-python
|
|
79
79
|
Dynamic: summary
|
|
80
80
|
|
|
81
|
-
<div align="center">
|
|
82
|
-
<!-- Replace `#` with your actual links -->
|
|
83
|
-
|
|
84
|
-
<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>
|
|
85
|
-
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
86
|
-
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
87
|
-
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
88
|
-
</div>
|
|
89
|
-
|
|
90
|
-
<div align="center">
|
|
91
|
-
<!-- Replace `#` with your actual links -->
|
|
92
|
-
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
93
|
-
</div>
|
|
94
|
-
<div align="center">
|
|
95
|
-
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
96
|
-
</div>
|
|
97
|
-
<div align="center">
|
|
98
|
-
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
99
|
-
</div>
|
|
100
81
|
|
|
82
|
+
[](https://t.me/official_helpingai)
|
|
83
|
+
[](https://www.instagram.com/oevortex/)
|
|
84
|
+
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
85
|
+
[](https://buymeacoffee.com/oevortex)
|
|
101
86
|
|
|
102
87
|
|
|
103
|
-
|
|
104
|
-
|
|
88
|
+
<div align="center">
|
|
89
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> •
|
|
90
|
+
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> •
|
|
91
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder’s Telegram</a>
|
|
105
92
|
</div>
|
|
106
93
|
|
|
94
|
+
---
|
|
95
|
+
|
|
107
96
|
<p align="center">
|
|
108
|
-
|
|
97
|
+
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
98
|
+
<br>
|
|
99
|
+
Discover insights with Google, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
|
|
109
100
|
</p>
|
|
110
101
|
|
|
111
102
|
<div align="center">
|
|
112
103
|
<img src="https://img.shields.io/badge/WebScout-API-blue?style=for-the-badge&logo=WebScout" alt="WebScout API Badge">
|
|
113
|
-
<a href="#"><img
|
|
114
|
-
<a href="https://pepy.tech/project/webscout"><img
|
|
104
|
+
<a href="#"><img src="https://img.shields.io/pypi/pyversions/webscout" alt="Python Version"></a>
|
|
105
|
+
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout" alt="Downloads"></a>
|
|
115
106
|
</div>
|
|
116
107
|
|
|
108
|
+
---
|
|
109
|
+
|
|
117
110
|
## 🚀 Features
|
|
118
111
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
|
|
119
112
|
* **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
|
|
@@ -1115,7 +1108,7 @@ print(a.chat("HelpingAI-9B"))
|
|
|
1115
1108
|
```
|
|
1116
1109
|
|
|
1117
1110
|
|
|
1118
|
-
### 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
|
|
1111
|
+
### 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
|
|
1119
1112
|
|
|
1120
1113
|
Code is similar to other providers.
|
|
1121
1114
|
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
<!-- Replace `#` with your actual links -->
|
|
3
|
-
|
|
4
|
-
<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>
|
|
5
|
-
<a href="https://www.instagram.com/oevortex/"><img alt="Instagram" src="https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white"></a>
|
|
6
|
-
<a href="https://www.linkedin.com/in/oe-vortex-29a407265/"><img alt="LinkedIn" src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white"></a>
|
|
7
|
-
<a href="https://buymeacoffee.com/oevortex"><img alt="Buy Me A Coffee" src="https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black"></a>
|
|
8
|
-
</div>
|
|
9
|
-
|
|
10
|
-
<div align="center">
|
|
11
|
-
<!-- Replace `#` with your actual links -->
|
|
12
|
-
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
13
|
-
</div>
|
|
14
|
-
<div align="center">
|
|
15
|
-
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
16
|
-
</div>
|
|
17
|
-
<div align="center">
|
|
18
|
-
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
19
|
-
</div>
|
|
20
1
|
|
|
2
|
+
[](https://t.me/official_helpingai)
|
|
3
|
+
[](https://www.instagram.com/oevortex/)
|
|
4
|
+
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
5
|
+
[](https://buymeacoffee.com/oevortex)
|
|
21
6
|
|
|
22
7
|
|
|
23
|
-
|
|
24
|
-
|
|
8
|
+
<div align="center">
|
|
9
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> •
|
|
10
|
+
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> •
|
|
11
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder’s Telegram</a>
|
|
25
12
|
</div>
|
|
26
13
|
|
|
14
|
+
---
|
|
15
|
+
|
|
27
16
|
<p align="center">
|
|
28
|
-
|
|
17
|
+
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
18
|
+
<br>
|
|
19
|
+
Discover insights with Google, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
|
|
29
20
|
</p>
|
|
30
21
|
|
|
31
22
|
<div align="center">
|
|
32
23
|
<img src="https://img.shields.io/badge/WebScout-API-blue?style=for-the-badge&logo=WebScout" alt="WebScout API Badge">
|
|
33
|
-
<a href="#"><img
|
|
34
|
-
<a href="https://pepy.tech/project/webscout"><img
|
|
24
|
+
<a href="#"><img src="https://img.shields.io/pypi/pyversions/webscout" alt="Python Version"></a>
|
|
25
|
+
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout" alt="Downloads"></a>
|
|
35
26
|
</div>
|
|
36
27
|
|
|
28
|
+
---
|
|
29
|
+
|
|
37
30
|
## 🚀 Features
|
|
38
31
|
* **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
|
|
39
32
|
* **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
|
|
@@ -1035,7 +1028,7 @@ print(a.chat("HelpingAI-9B"))
|
|
|
1035
1028
|
```
|
|
1036
1029
|
|
|
1037
1030
|
|
|
1038
|
-
### 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
|
|
1031
|
+
### 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
|
|
1039
1032
|
|
|
1040
1033
|
Code is similar to other providers.
|
|
1041
1034
|
|
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
from webscout.version import __prog__, __version__
|
|
3
|
-
|
|
4
|
-
with open("README.md", encoding="utf-8") as f:
|
|
5
|
-
README = f.read()
|
|
6
|
-
|
|
7
|
-
setup(
|
|
8
|
-
name="webscout",
|
|
9
|
-
version=__version__,
|
|
10
|
-
description="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",
|
|
11
|
-
long_description=README,
|
|
12
|
-
long_description_content_type="text/markdown",
|
|
13
|
-
author="OEvortex",
|
|
14
|
-
author_email="helpingai5@gmail.com",
|
|
15
|
-
packages=find_packages(),
|
|
16
|
-
python_requires=">=3.7",
|
|
17
|
-
classifiers=[
|
|
18
|
-
"Development Status :: 5 - Production/Stable",
|
|
19
|
-
"Intended Audience :: Developers",
|
|
20
|
-
"License :: Other/Proprietary License",
|
|
21
|
-
"Operating System :: OS Independent",
|
|
22
|
-
"Programming Language :: Python :: 3",
|
|
23
|
-
"Programming Language :: Python :: 3.8",
|
|
24
|
-
"Programming Language :: Python :: 3.9",
|
|
25
|
-
"Programming Language :: Python :: 3.10",
|
|
26
|
-
"Programming Language :: Python :: 3.11",
|
|
27
|
-
"Programming Language :: Python :: 3.12",
|
|
28
|
-
"Programming Language :: Python :: Implementation :: CPython",
|
|
29
|
-
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
30
|
-
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
|
-
],
|
|
32
|
-
install_requires=[
|
|
33
|
-
"setuptools",
|
|
34
|
-
"wheel",
|
|
35
|
-
"pip",
|
|
36
|
-
"mistune",
|
|
37
|
-
"tenacity",
|
|
38
|
-
"curl_cffi",
|
|
39
|
-
"nest-asyncio",
|
|
40
|
-
"rich",
|
|
41
|
-
"markdownify",
|
|
42
|
-
"requests",
|
|
43
|
-
"google-generativeai",
|
|
44
|
-
"lxml>=5.2.2",
|
|
45
|
-
"termcolor",
|
|
46
|
-
"orjson",
|
|
47
|
-
"PyYAML",
|
|
48
|
-
"tls_client",
|
|
49
|
-
"clipman",
|
|
50
|
-
"playsound",
|
|
51
|
-
"ollama",
|
|
52
|
-
"pillow",
|
|
53
|
-
"bson",
|
|
54
|
-
"cloudscraper",
|
|
55
|
-
"html5lib",
|
|
56
|
-
"aiofiles",
|
|
57
|
-
"emoji",
|
|
58
|
-
"openai",
|
|
59
|
-
"prompt-toolkit",
|
|
60
|
-
"primp",
|
|
61
|
-
"pyreqwest_impersonate",
|
|
62
|
-
"gradio_client",
|
|
63
|
-
"psutil",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
],
|
|
67
|
-
|
|
68
|
-
entry_points={
|
|
69
|
-
"console_scripts": [
|
|
70
|
-
"WEBS = webscout.cli:cli",
|
|
71
|
-
"webscout = webscout.cli:cli",
|
|
72
|
-
],
|
|
73
|
-
},
|
|
74
|
-
extras_require={
|
|
75
|
-
"dev": [
|
|
76
|
-
"ruff>=0.1.6",
|
|
77
|
-
"pytest>=7.4.2",
|
|
78
|
-
],
|
|
79
|
-
"local": [
|
|
80
|
-
'llama-cpp-python',
|
|
81
|
-
'colorama',
|
|
82
|
-
'numpy',
|
|
83
|
-
'huggingface_hub[cli]',
|
|
84
|
-
'unicorn',
|
|
85
|
-
],
|
|
86
|
-
},
|
|
87
|
-
license="HelpingAI",
|
|
88
|
-
project_urls={
|
|
89
|
-
"Source": "https://github.com/HelpingAI/Webscout",
|
|
90
|
-
"Tracker": "https://github.com/HelpingAI/Webscout/issues",
|
|
91
|
-
"YouTube": "https://youtube.com/@OEvortex",
|
|
92
|
-
},
|
|
93
|
-
)
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
from webscout.version import __prog__, __version__
|
|
3
|
+
|
|
4
|
+
with open("README.md", encoding="utf-8") as f:
|
|
5
|
+
README = f.read()
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name="webscout",
|
|
9
|
+
version=__version__,
|
|
10
|
+
description="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",
|
|
11
|
+
long_description=README,
|
|
12
|
+
long_description_content_type="text/markdown",
|
|
13
|
+
author="OEvortex",
|
|
14
|
+
author_email="helpingai5@gmail.com",
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
python_requires=">=3.7",
|
|
17
|
+
classifiers=[
|
|
18
|
+
"Development Status :: 5 - Production/Stable",
|
|
19
|
+
"Intended Audience :: Developers",
|
|
20
|
+
"License :: Other/Proprietary License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.8",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Programming Language :: Python :: Implementation :: CPython",
|
|
29
|
+
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
30
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
|
+
],
|
|
32
|
+
install_requires=[
|
|
33
|
+
"setuptools",
|
|
34
|
+
"wheel",
|
|
35
|
+
"pip",
|
|
36
|
+
"mistune",
|
|
37
|
+
"tenacity",
|
|
38
|
+
"curl_cffi",
|
|
39
|
+
"nest-asyncio",
|
|
40
|
+
"rich",
|
|
41
|
+
"markdownify",
|
|
42
|
+
"requests",
|
|
43
|
+
"google-generativeai",
|
|
44
|
+
"lxml>=5.2.2",
|
|
45
|
+
"termcolor",
|
|
46
|
+
"orjson",
|
|
47
|
+
"PyYAML",
|
|
48
|
+
"tls_client",
|
|
49
|
+
"clipman",
|
|
50
|
+
"playsound==1.2.2",
|
|
51
|
+
"ollama",
|
|
52
|
+
"pillow",
|
|
53
|
+
"bson",
|
|
54
|
+
"cloudscraper",
|
|
55
|
+
"html5lib",
|
|
56
|
+
"aiofiles",
|
|
57
|
+
"emoji",
|
|
58
|
+
"openai",
|
|
59
|
+
"prompt-toolkit",
|
|
60
|
+
"primp",
|
|
61
|
+
"pyreqwest_impersonate",
|
|
62
|
+
"gradio_client",
|
|
63
|
+
"psutil",
|
|
64
|
+
"pygetwindow",
|
|
65
|
+
"aiohttp",
|
|
66
|
+
],
|
|
67
|
+
|
|
68
|
+
entry_points={
|
|
69
|
+
"console_scripts": [
|
|
70
|
+
"WEBS = webscout.cli:cli",
|
|
71
|
+
"webscout = webscout.cli:cli",
|
|
72
|
+
],
|
|
73
|
+
},
|
|
74
|
+
extras_require={
|
|
75
|
+
"dev": [
|
|
76
|
+
"ruff>=0.1.6",
|
|
77
|
+
"pytest>=7.4.2",
|
|
78
|
+
],
|
|
79
|
+
"local": [
|
|
80
|
+
'llama-cpp-python',
|
|
81
|
+
'colorama',
|
|
82
|
+
'numpy',
|
|
83
|
+
'huggingface_hub[cli]',
|
|
84
|
+
'unicorn',
|
|
85
|
+
],
|
|
86
|
+
},
|
|
87
|
+
license="HelpingAI",
|
|
88
|
+
project_urls={
|
|
89
|
+
"Source": "https://github.com/HelpingAI/Webscout",
|
|
90
|
+
"Tracker": "https://github.com/HelpingAI/Webscout/issues",
|
|
91
|
+
"YouTube": "https://youtube.com/@OEvortex",
|
|
92
|
+
},
|
|
93
|
+
)
|