webscout 7.6__tar.gz → 7.8__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.6/webscout.egg-info → webscout-7.8}/PKG-INFO +76 -42
- {webscout-7.6 → webscout-7.8}/README.md +929 -894
- {webscout-7.6 → webscout-7.8}/setup.py +1 -5
- {webscout-7.6 → webscout-7.8}/webscout/AIutel.py +2 -1
- {webscout-7.6 → webscout-7.8}/webscout/Bard.py +14 -11
- webscout-7.8/webscout/DWEBS.py +477 -0
- webscout-7.8/webscout/Extra/autocoder/autocoder_utiles.py +332 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/autocoder/rawdog.py +848 -649
- {webscout-7.6 → webscout-7.8}/webscout/Extra/gguf.py +682 -652
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AI21.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AISEARCH/DeepFind.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AISEARCH/ISou.py +2 -23
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AISEARCH/felo_search.py +6 -6
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AISEARCH/genspark_search.py +1 -1
- webscout-7.8/webscout/Provider/Aitopia.py +292 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AllenAI.py +5 -22
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Andi.py +3 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/C4ai.py +1 -1
- webscout-7.8/webscout/Provider/ChatGPTClone.py +226 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/ChatGPTES.py +3 -5
- {webscout-7.6 → webscout-7.8}/webscout/Provider/ChatGPTGratis.py +4 -4
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Chatify.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Cloudflare.py +3 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/DARKAI.py +3 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/DeepSeek.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Deepinfra.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/EDITEE.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/ElectronHub.py +178 -96
- webscout-7.8/webscout/Provider/ExaChat.py +310 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Free2GPT.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Gemini.py +5 -19
- {webscout-7.6 → webscout-7.8}/webscout/Provider/GithubChat.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Glider.py +12 -8
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Groq.py +3 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/HF_space/qwen_qwen2.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/HeckAI.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/HuggingFaceChat.py +1 -1
- webscout-7.8/webscout/Provider/Hunyuan.py +272 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Jadve.py +3 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Koboldai.py +3 -3
- webscout-7.8/webscout/Provider/LambdaChat.py +391 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Llama.py +3 -5
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Llama3.py +4 -12
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Marcus.py +3 -3
- webscout-7.8/webscout/Provider/OLLAMA.py +396 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Openai.py +7 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/PI.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Perplexitylabs.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Phind.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/PizzaGPT.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/QwenLM.py +4 -7
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +21 -46
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +37 -49
- webscout-7.8/webscout/Provider/TTI/ImgSys/__init__.py +23 -0
- webscout-7.8/webscout/Provider/TTI/ImgSys/async_imgsys.py +202 -0
- webscout-7.8/webscout/Provider/TTI/ImgSys/sync_imgsys.py +195 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/__init__.py +3 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/artbit/async_artbit.py +4 -33
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/artbit/sync_artbit.py +4 -32
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/fastflux/async_fastflux.py +6 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/fastflux/sync_fastflux.py +7 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/huggingface/async_huggingface.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/huggingface/sync_huggingface.py +1 -1
- webscout-7.8/webscout/Provider/TTI/pixelmuse/__init__.py +4 -0
- webscout-7.8/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +249 -0
- webscout-7.8/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +182 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/talkai/sync_talkai.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/utils.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TeachAnything.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TextPollinationsAI.py +4 -4
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TwoAI.py +1 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Venice.py +4 -2
- webscout-7.8/webscout/Provider/VercelAI.py +234 -0
- webscout-7.8/webscout/Provider/WebSim.py +228 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/WiseCat.py +10 -12
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Youchat.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/__init__.py +22 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/ai4chat.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/aimathgpt.py +2 -6
- {webscout-7.6 → webscout-7.8}/webscout/Provider/akashgpt.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/askmyai.py +4 -4
- webscout-7.8/webscout/Provider/asksteve.py +203 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/bagoodex.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/cerebras.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/chatglm.py +4 -4
- {webscout-7.6 → webscout-7.8}/webscout/Provider/cleeai.py +1 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/copilot.py +427 -415
- {webscout-7.6 → webscout-7.8}/webscout/Provider/elmo.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/flowith.py +14 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/freeaichat.py +57 -31
- {webscout-7.6 → webscout-7.8}/webscout/Provider/gaurish.py +3 -5
- {webscout-7.6 → webscout-7.8}/webscout/Provider/geminiprorealtime.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/granite.py +4 -4
- {webscout-7.6 → webscout-7.8}/webscout/Provider/hermes.py +5 -5
- {webscout-7.6 → webscout-7.8}/webscout/Provider/julius.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/koala.py +1 -1
- webscout-7.8/webscout/Provider/labyrinth.py +239 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/learnfastai.py +28 -15
- {webscout-7.6 → webscout-7.8}/webscout/Provider/lepton.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/llama3mitril.py +4 -4
- {webscout-7.6 → webscout-7.8}/webscout/Provider/llamatutor.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/llmchat.py +3 -3
- {webscout-7.6 → webscout-7.8}/webscout/Provider/meta.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/multichat.py +10 -10
- {webscout-7.6 → webscout-7.8}/webscout/Provider/promptrefine.py +1 -1
- webscout-7.8/webscout/Provider/searchchat.py +293 -0
- webscout-7.8/webscout/Provider/sonus.py +208 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/talkai.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/Provider/turboseek.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/tutorai.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/Provider/typegpt.py +6 -43
- webscout-7.8/webscout/Provider/uncovr.py +299 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/x0gpt.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/__init__.py +36 -36
- {webscout-7.6 → webscout-7.8}/webscout/cli.py +293 -283
- {webscout-7.6 → webscout-7.8}/webscout/litagent/agent.py +14 -9
- {webscout-7.6 → webscout-7.8}/webscout/tempid.py +11 -11
- {webscout-7.6 → webscout-7.8}/webscout/utils.py +2 -2
- {webscout-7.6 → webscout-7.8}/webscout/version.py +1 -1
- {webscout-7.6 → webscout-7.8}/webscout/webscout_search.py +1282 -1223
- {webscout-7.6 → webscout-7.8}/webscout/webscout_search_async.py +813 -692
- {webscout-7.6 → webscout-7.8/webscout.egg-info}/PKG-INFO +76 -42
- {webscout-7.6 → webscout-7.8}/webscout.egg-info/SOURCES.txt +18 -0
- {webscout-7.6 → webscout-7.8}/webscout.egg-info/requires.txt +0 -2
- webscout-7.6/webscout/DWEBS.py +0 -461
- webscout-7.6/webscout/Extra/autocoder/autocoder_utiles.py +0 -196
- webscout-7.6/webscout/Provider/OLLAMA.py +0 -172
- {webscout-7.6 → webscout-7.8}/LICENSE.md +0 -0
- {webscout-7.6 → webscout-7.8}/setup.cfg +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/AIauto.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/AIbase.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/weather.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/LLM.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/core/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/core/level.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/core/logger.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/handlers/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/handlers/console.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/handlers/file.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/handlers/network.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/styles/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/styles/colors.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/styles/formats.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/styles/text.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/utils/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/utils/detectors.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Litlogger/utils/formatters.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Blackboxai.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Cohere.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/GPTWeb.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/HF_space/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Netwrck.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/Reka.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/artbit/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/talkai/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/geminiapi.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/Provider/yep.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/__main__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/conversation.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/exceptions.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/litagent/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/litagent/constants.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/litprinter/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/litprinter/colors.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/models.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/optimizers.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/prompt_manager.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/crawler.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/scout.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/search_result.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/text_utils.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/core.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/element.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/scout/utils.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/swiftcli/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/update_checker.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/yep_search.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/zeroart/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/zeroart/base.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/zeroart/effects.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout/zeroart/fonts.py +0 -0
- {webscout-7.6 → webscout-7.8}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-7.6 → webscout-7.8}/webscout.egg-info/entry_points.txt +0 -0
- {webscout-7.6 → webscout-7.8}/webscout.egg-info/top_level.txt +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/__init__.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/classifier.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/keywords.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/language.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/ner.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/normalizer.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/processor.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/sentiment.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/stemmer.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/tagger.py +0 -0
- {webscout-7.6 → webscout-7.8}/webstoken/tokenizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 7.
|
|
3
|
+
Version: 7.8
|
|
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
|
|
@@ -13,7 +13,6 @@ Classifier: Intended Audience :: Developers
|
|
|
13
13
|
Classifier: License :: Other/Proprietary License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -22,23 +21,26 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
22
21
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
23
22
|
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
24
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.9
|
|
26
25
|
Description-Content-Type: text/markdown
|
|
27
26
|
Provides-Extra: dev
|
|
28
27
|
License-File: LICENSE.md
|
|
29
28
|
|
|
30
|
-
[](https://t.me/PyscoutAI)
|
|
31
|
-
[](https://www.instagram.com/oevortex/)
|
|
32
|
-
[](https://www.linkedin.com/in/oe-vortex-29a407265/)
|
|
33
|
-
[](https://buymeacoffee.com/oevortex)
|
|
34
|
-
|
|
35
29
|
<div align="center">
|
|
36
|
-
|
|
37
|
-
<a href="https://
|
|
38
|
-
<a href="https://
|
|
30
|
+
<!-- Replace `#` with your actual links -->
|
|
31
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
32
|
+
<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>
|
|
33
|
+
<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>
|
|
34
|
+
<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>
|
|
39
35
|
</div>
|
|
40
36
|
|
|
41
|
-
|
|
37
|
+
<div align="center">
|
|
38
|
+
<!-- Replace `#` with your actual links -->
|
|
39
|
+
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
40
|
+
</div>
|
|
41
|
+
<div align="center">
|
|
42
|
+
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
43
|
+
</div>
|
|
42
44
|
|
|
43
45
|
<p align="center">
|
|
44
46
|
<strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
|
|
@@ -71,8 +73,10 @@ License-File: LICENSE.md
|
|
|
71
73
|
* **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
|
|
72
74
|
* **[Awesome Prompts (Act)](webscout/Extra/Act.md):** A curated collection of system prompts designed to transform Webscout into specialized personas, enhancing its ability to assist with specific tasks. Simply prefix your request with the act name or index number to leverage these tailored capabilities.
|
|
73
75
|
* **[Weather Tool kit](webscout/Extra/weather.md)** Webscout provides tools to retrieve weather information.
|
|
74
|
-
## ⚙️ Installation
|
|
75
76
|
* **[AIsearch](webscout/Provider/AISEARCH)** AI Search Providers offer powerful and flexible AI-powered search Search Engine
|
|
77
|
+
|
|
78
|
+
## ⚙️ Installation
|
|
79
|
+
|
|
76
80
|
```python
|
|
77
81
|
pip install -U webscout
|
|
78
82
|
```
|
|
@@ -86,6 +90,7 @@ python -m webscout --help
|
|
|
86
90
|
| Command | Description |
|
|
87
91
|
|-------------------------------------------|-------------------------------------------------------------------------------------------------------|
|
|
88
92
|
| python -m webscout answers -k Text | CLI function to perform an answers search using Webscout. |
|
|
93
|
+
| python -m webscout chat | Interactive AI chat using DuckDuckGo's AI. |
|
|
89
94
|
| python -m webscout images -k Text | CLI function to perform an images search using Webscout. |
|
|
90
95
|
| python -m webscout maps -k Text | CLI function to perform a maps search using Webscout. |
|
|
91
96
|
| python -m webscout news -k Text | CLI function to perform a news search using Webscout. |
|
|
@@ -93,9 +98,8 @@ python -m webscout --help
|
|
|
93
98
|
| python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
|
|
94
99
|
| python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
|
|
95
100
|
| python -m webscout version | A command-line interface command that prints and returns the version of the program. |
|
|
96
|
-
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
97
|
-
|
|
98
|
-
|
|
101
|
+
| python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
|
|
102
|
+
| python -m webscout weather -l qazigund | CLI function to get weather information for a location using Webscout. |
|
|
99
103
|
|
|
100
104
|
## ✉️ TempMail and VNEngine
|
|
101
105
|
|
|
@@ -173,15 +177,53 @@ suggestions = yep.suggestions("hist")
|
|
|
173
177
|
print(suggestions)
|
|
174
178
|
```
|
|
175
179
|
|
|
176
|
-
## 🔍
|
|
180
|
+
## 🔍 GoogleSearch (formerly DWEBS)
|
|
177
181
|
|
|
178
182
|
```python
|
|
179
|
-
from webscout import
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
183
|
+
from webscout import GoogleSearch
|
|
184
|
+
|
|
185
|
+
# Initialize GoogleSearch
|
|
186
|
+
google = GoogleSearch(
|
|
187
|
+
timeout=10, # Optional: Set custom timeout
|
|
188
|
+
proxies=None, # Optional: Use proxies
|
|
189
|
+
verify=True # Optional: SSL verification
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
# Text Search
|
|
193
|
+
text_results = google.text(
|
|
194
|
+
keywords="artificial intelligence",
|
|
195
|
+
region="us", # Optional: Region for results
|
|
196
|
+
safesearch="moderate", # Optional: "on", "moderate", "off"
|
|
197
|
+
max_results=10 # Optional: Limit number of results
|
|
198
|
+
)
|
|
199
|
+
for result in text_results:
|
|
200
|
+
print(f"Title: {result.title}")
|
|
201
|
+
print(f"URL: {result.url}")
|
|
202
|
+
print(f"Description: {result.description}")
|
|
203
|
+
print("---")
|
|
204
|
+
|
|
205
|
+
# News Search
|
|
206
|
+
news_results = google.news(
|
|
207
|
+
keywords="technology trends",
|
|
208
|
+
region="us",
|
|
209
|
+
safesearch="moderate",
|
|
210
|
+
max_results=5
|
|
211
|
+
)
|
|
212
|
+
for result in news_results:
|
|
213
|
+
print(f"Title: {result.title}")
|
|
214
|
+
print(f"URL: {result.url}")
|
|
215
|
+
print(f"Description: {result.description}")
|
|
216
|
+
print("---")
|
|
217
|
+
|
|
218
|
+
# Get search suggestions
|
|
219
|
+
suggestions = google.suggestions("how to")
|
|
220
|
+
print(suggestions)
|
|
221
|
+
|
|
222
|
+
# Legacy usage is still supported
|
|
223
|
+
from webscout import search
|
|
224
|
+
results = search("Python programming", num_results=5)
|
|
225
|
+
for url in results:
|
|
226
|
+
print(url)
|
|
185
227
|
```
|
|
186
228
|
|
|
187
229
|
## 🦆 WEBS and AsyncWEBS
|
|
@@ -414,7 +456,6 @@ with WEBS() as webs:
|
|
|
414
456
|
|
|
415
457
|
```
|
|
416
458
|
|
|
417
|
-
|
|
418
459
|
#### 📜 List Available LLM Models
|
|
419
460
|
|
|
420
461
|
Retrieve a comprehensive list of all supported LLMs.
|
|
@@ -507,9 +548,6 @@ else:
|
|
|
507
548
|
print(f"Available voices for {provider_name}: {available_voices}")
|
|
508
549
|
```
|
|
509
550
|
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
551
|
### 💬 `Duckchat` - Chat with LLM
|
|
514
552
|
|
|
515
553
|
```python
|
|
@@ -825,7 +863,7 @@ a = AndiSearch()
|
|
|
825
863
|
print(a.chat("HelpingAI-9B"))
|
|
826
864
|
```
|
|
827
865
|
|
|
828
|
-
### `LLAMA`, `C4ai`, `Venice`, `Copilot`, `HuggingFaceChat`, `TwoAI`, `HeckAI`, `AllenAI`, `PerplexityLabs`, `AkashGPT`, `DeepSeek`, `WiseCat`, `IBMGranite`, `QwenLM`, `ChatGPTGratis`, `TextPollinationsAI`, `GliderAI`, `Cohere`, `REKA`, `GROQ`, `AsyncGROQ`, `OPENAI`, `AsyncOPENAI`, `KOBOLDAI`, `AsyncKOBOLDAI`, `BLACKBOXAI`, `PhindSearch`, `GEMINI`, `DeepInfra`, `AI4Chat`, `Phindv2`, `OLLAMA`, `AndiSearch`, `PIZZAGPT`, `Sambanova`, `DARKAI`, `KOALA`, `Meta`, `AskMyAI`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`
|
|
866
|
+
### `LLAMA`, `C4ai`, `Venice`, `Copilot`, `HuggingFaceChat`, `TwoAI`, `HeckAI`, `AllenAI`, `PerplexityLabs`, `AkashGPT`, `DeepSeek`, `WiseCat`, `IBMGranite`, `QwenLM`, `ChatGPTGratis`, `TextPollinationsAI`, `GliderAI`, `Cohere`, `REKA`, `GROQ`, `AsyncGROQ`, `OPENAI`, `AsyncOPENAI`, `KOBOLDAI`, `AsyncKOBOLDAI`, `BLACKBOXAI`, `PhindSearch`, `GEMINI`, `DeepInfra`, `AI4Chat`, `Phindv2`, `OLLAMA`, `AndiSearch`, `PIZZAGPT`, `Sambanova`, `DARKAI`, `KOALA`, `Meta`, `AskMyAI`, `PiAI`, `Julius`, `YouChat`, `YEPCHAT`, `Cloudflare`, `TurboSeek`, `Editee`, `TeachAnything`, `AI21`, `Chatify`, `X0GPT`, `Cerebras`, `Lepton`, `GEMINIAPI`, `Cleeai`, `Elmo`, `Free2GPT`, `GPTWeb`, `Netwrck`, `LlamaTutor`, `PromptRefine`, `TutorAI`, `ChatGPTES`, `Bagoodex`, `AIMathGPT`, `GaurishCerebras`, `GeminiPro`, `LLMChat`, `Talkai`, `Llama3Mitril`, `Marcus`, `TypeGPT`, `Netwrck`, `MultiChatAI`, `JadveOpenAI`, `ChatGLM`, `NousHermes`, `FreeAIChat`, `ElectronHub`, `GithubChat`, `Flowith`, `SonusAI`, `UncovrAI`, `LabyrinthAI`, `WebSim`, `LambdaChat`, `ChatGPTClone`, `VercelAI`, `ExaChat`, `AskSteve`, `Aitopia`, `SearchChatAI`
|
|
829
867
|
|
|
830
868
|
Code is similar to other providers.
|
|
831
869
|
|
|
@@ -856,7 +894,7 @@ Webscout provides tools to convert and quantize Hugging Face models into the GGU
|
|
|
856
894
|
**Example:**
|
|
857
895
|
|
|
858
896
|
```python
|
|
859
|
-
from webscout.Extra import
|
|
897
|
+
from webscout.Extra.gguf import ModelConverter
|
|
860
898
|
"""
|
|
861
899
|
Valid quantization methods:
|
|
862
900
|
"q2_k", "q3_k_l", "q3_k_m", "q3_k_s",
|
|
@@ -864,22 +902,22 @@ Valid quantization methods:
|
|
|
864
902
|
"q5_0", "q5_1", "q5_k_m", "q5_k_s",
|
|
865
903
|
"q6_k", "q8_0"
|
|
866
904
|
"""
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
quantization_methods="q4_k_m" # Optional, adjust quantization methods
|
|
905
|
+
# Create a converter instance
|
|
906
|
+
converter = ModelConverter(
|
|
907
|
+
model_id="prithivMLmods/QWQ-500M",
|
|
908
|
+
quantization_methods="q2_k"
|
|
872
909
|
)
|
|
873
|
-
```
|
|
874
910
|
|
|
911
|
+
# Run the conversion
|
|
912
|
+
converter.convert()
|
|
913
|
+
```
|
|
875
914
|
|
|
876
915
|
**Command Line Usage:**
|
|
877
916
|
|
|
878
917
|
* **GGUF Conversion:**
|
|
879
918
|
|
|
880
919
|
```bash
|
|
881
|
-
|
|
882
|
-
```
|
|
920
|
+
python -m webscout.Extra.gguf convert -m "prithivMLmods/QWQ-500M" -q "q2_k"
|
|
883
921
|
```
|
|
884
922
|
|
|
885
923
|
**Note:**
|
|
@@ -889,7 +927,7 @@ gguf.convert(
|
|
|
889
927
|
|
|
890
928
|
<div align="center">
|
|
891
929
|
<!-- Replace `#` with your actual links -->
|
|
892
|
-
<a href="https://t.me/
|
|
930
|
+
<a href="https://t.me/PyscoutAI"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
|
|
893
931
|
<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>
|
|
894
932
|
<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>
|
|
895
933
|
<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>
|
|
@@ -899,9 +937,6 @@ gguf.convert(
|
|
|
899
937
|
<!-- Replace `#` with your actual links -->
|
|
900
938
|
<a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
|
|
901
939
|
</div>
|
|
902
|
-
<div align="center">
|
|
903
|
-
<a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
|
|
904
|
-
</div>
|
|
905
940
|
<div align="center">
|
|
906
941
|
<a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
|
|
907
942
|
</div>
|
|
@@ -920,4 +955,3 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
|
|
|
920
955
|
|
|
921
956
|
* All the amazing developers who have contributed to the project!
|
|
922
957
|
* The open-source community for their support and inspiration.
|
|
923
|
-
|