webscout 2025.10.15__tar.gz → 2025.10.17__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-2025.10.15/webscout.egg-info → webscout-2025.10.17}/PKG-INFO +11 -54
- {webscout-2025.10.15 → webscout-2025.10.17}/README.md +10 -50
- {webscout-2025.10.15 → webscout-2025.10.17}/changelog.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/pyproject.toml +2 -5
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/README.md +1 -1
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/README.md +3 -3
- webscout-2025.10.17/webscout/Provider/ClaudeOnline.py +350 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/README.md +1 -1
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/bing.py +4 -4
- webscout-2025.10.17/webscout/Provider/TTI/claudeonline.py +315 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/__init__.py +1 -1
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/client.py +4 -5
- webscout-2025.10.17/webscout/litprinter/__init__.py +17 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/README.md +59 -8
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/scout.py +62 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/element.py +251 -45
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/__init__.py +3 -4
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/images.py +5 -2
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/news.py +6 -4
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/text.py +5 -2
- webscout-2025.10.17/webscout/search/engines/yahoo/__init__.py +41 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/answers.py +16 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/base.py +34 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/images.py +324 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/maps.py +16 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/news.py +258 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/suggestions.py +140 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/text.py +273 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/translate.py +16 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/videos.py +302 -0
- webscout-2025.10.17/webscout/search/engines/yahoo/weather.py +220 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/http_client.py +1 -1
- webscout-2025.10.17/webscout/search/yahoo_main.py +54 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/__init__.py +2 -23
- webscout-2025.10.17/webscout/server/config.py +84 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/request_processing.py +3 -28
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/routes.py +6 -148
- webscout-2025.10.17/webscout/server/schemas.py +23 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/server.py +11 -43
- webscout-2025.10.17/webscout/server/simple_logger.py +84 -0
- webscout-2025.10.17/webscout/version.py +2 -0
- webscout-2025.10.17/webscout/version.py.bak +2 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/zeroart/README.md +17 -9
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/zeroart/__init__.py +78 -6
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/zeroart/effects.py +51 -1
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/zeroart/fonts.py +559 -1
- {webscout-2025.10.15 → webscout-2025.10.17/webscout.egg-info}/PKG-INFO +11 -54
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout.egg-info/SOURCES.txt +48 -38
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout.egg-info/entry_points.txt +1 -1
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout.egg-info/requires.txt +0 -3
- webscout-2025.10.15/webscout/Extra/weather.md +0 -281
- webscout-2025.10.15/webscout/auth/api_key_manager.py +0 -189
- webscout-2025.10.15/webscout/auth/auth_system.py +0 -85
- webscout-2025.10.15/webscout/auth/config.py +0 -175
- webscout-2025.10.15/webscout/auth/database.py +0 -755
- webscout-2025.10.15/webscout/auth/middleware.py +0 -248
- webscout-2025.10.15/webscout/auth/models.py +0 -185
- webscout-2025.10.15/webscout/auth/rate_limiter.py +0 -254
- webscout-2025.10.15/webscout/auth/schemas.py +0 -103
- webscout-2025.10.15/webscout/auth/simple_logger.py +0 -236
- webscout-2025.10.15/webscout/litprinter/__init__.py +0 -59
- webscout-2025.10.15/webscout/search/engines/yahoo.py +0 -65
- webscout-2025.10.15/webscout/search/engines/yahoo_news.py +0 -64
- webscout-2025.10.15/webscout/version.py +0 -2
- webscout-2025.10.15/webscout/version.py.bak +0 -2
- {webscout-2025.10.15 → webscout-2025.10.17}/LEGAL_NOTICE.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/LICENSE.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/MANIFEST.in +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/setup.cfg +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/AIauto.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/AIbase.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/AIutel.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Bard.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/Act.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/gitapi/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/transcriber.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/autocoder/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/autocoder/autocoder.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/gguf.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/gguf.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/async_utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/cli.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/emailnator.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/mail_tm.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/weather.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Extra/weather_ascii.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/formats.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/handlers.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/levels.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Litlogger/logger.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/PERPLEXED_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/felo_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/hika_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/iask_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/monica_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/scira_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/stellar_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Aitopia.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Andi.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Apriel.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/ChatGPTClone.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/ChatSandbox.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Cloudflare.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Cohere.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Deepinfra.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/ExaAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/ExaChat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Flowith.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/GMI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Gemini.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/GeminiProxy.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/GithubChat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Groq.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/HeckAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Jadve.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/K2Think.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Koboldai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/LambdaChat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Nemotron.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Netwrck.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OLLAMA.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/Cloudflare.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/FalconH1.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/FreeGemini.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/GeminiProxy.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/K2Think.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/NEMOTRON.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/PI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/TogetherAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/TwoAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/ai4chat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/chatglm.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/chatgpt.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/chatgptclone.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/chatsandbox.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/deepinfra.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/e2b.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/exaai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/exachat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/flowith.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/friendli.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/generate_api_key.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/gmi.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/groq.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/heckai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/llmchatco.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/netwrck.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/oivscode.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/opkfc.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/pydantic_imports.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/scirachat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/sonus.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/standardinput.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/textpollinations.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/toolbaz.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/typefully.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/venice.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/wisecat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/writecream.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/x0gpt.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OPENAI/yep.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/OpenGPT.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Openai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/PI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Perplexitylabs.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/QwenLM.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/STT/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/STT/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/STT/elevenlabs.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Sambanova.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/StandardInput.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/aiarta.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/gpt1image.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/imagen.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/infip.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/magicstudio.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/monochat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/piclumen.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/pixelmuse.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/pollinations.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/together.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTI/venice.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/README.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/deepgram.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/elevenlabs.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/freetts.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/gesserit.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/murfai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/openai_fm.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/parler.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/speechma.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/streamElements.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TTS/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TeachAnything.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TextPollinationsAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TogetherAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TwoAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/TypliAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/ChatHub.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/ChutesAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/GizAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/Marcus.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/Qodo.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/VercelAIGateway.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/XenAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/Youchat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/liner.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/liner_api_request.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/puterjs.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/samurai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/UNFINISHED/test_lmarena.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/Venice.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/VercelAI.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/WiseCat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/WrDoChat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/ai4chat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/akashgpt.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/cerebras.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/chatglm.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/cleeai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/deepseek_assistant.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/elmo.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/geminiapi.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/granite.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/hermes.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/julius.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/learnfastai.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/llama3mitril.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/llmchat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/llmchatco.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/meta.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/oivscode.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/scira_chat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/searchchat.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/sonus.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/toolbaz.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/turboseek.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/typefully.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/x0gpt.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/Provider/yep.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/__main__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/cli.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/conversation.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/exceptions.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/litagent/Readme.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/litagent/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/litagent/agent.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/litagent/constants.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/models.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/optimizers.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/prompt_manager.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/sanitize.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/crawler.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/search_result.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/text_analyzer.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/text_utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/core/web_analyzer.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/parsers/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/parsers/html5lib_parser.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/parsers/html_parser.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/parsers/lxml_parser.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/scout/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/bing_main.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/duckduckgo_main.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/bing/suggestions.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/brave.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/answers.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/images.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/maps.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/news.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/suggestions.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/text.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/translate.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/videos.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/duckduckgo/weather.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/mojeek.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/wikipedia.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yandex.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yep/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yep/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yep/images.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yep/suggestions.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/engines/yep/text.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/results.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/search/yep_main.py +0 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/exceptions.py +0 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/providers.py +0 -0
- {webscout-2025.10.15/webscout/auth → webscout-2025.10.17/webscout/server}/request_models.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/Readme.md +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/core/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/core/cli.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/core/context.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/core/group.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/decorators/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/decorators/command.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/decorators/options.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/decorators/output.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/exceptions.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/plugins/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/plugins/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/plugins/manager.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/utils/__init__.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/utils/formatting.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/swiftcli/utils/parsing.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/update_checker.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/utils.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout/zeroart/base.py +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout.egg-info/dependency_links.txt +0 -0
- {webscout-2025.10.15 → webscout-2025.10.17}/webscout.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: webscout
|
|
3
|
-
Version: 2025.10.
|
|
3
|
+
Version: 2025.10.17
|
|
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-email: OEvortex <helpingai5@gmail.com>
|
|
6
6
|
License: HelpingAI
|
|
@@ -50,7 +50,6 @@ Requires-Dist: lxml>=5.2.2
|
|
|
50
50
|
Requires-Dist: orjson
|
|
51
51
|
Requires-Dist: PyYAML
|
|
52
52
|
Requires-Dist: pillow
|
|
53
|
-
Requires-Dist: bson
|
|
54
53
|
Requires-Dist: cloudscraper
|
|
55
54
|
Requires-Dist: html5lib
|
|
56
55
|
Requires-Dist: aiofiles
|
|
@@ -70,15 +69,13 @@ Requires-Dist: uvicorn[standard]; extra == "api"
|
|
|
70
69
|
Requires-Dist: pydantic; extra == "api"
|
|
71
70
|
Requires-Dist: python-multipart; extra == "api"
|
|
72
71
|
Requires-Dist: tiktoken; extra == "api"
|
|
73
|
-
Requires-Dist: motor; extra == "api"
|
|
74
72
|
Requires-Dist: jinja2; extra == "api"
|
|
75
|
-
Requires-Dist: supabase; extra == "api"
|
|
76
73
|
Requires-Dist: websockets>=11.0; extra == "api"
|
|
77
74
|
Requires-Dist: starlette; extra == "api"
|
|
78
75
|
Dynamic: license-file
|
|
79
76
|
|
|
80
77
|
<div align="center">
|
|
81
|
-
<a href="https://github.com/
|
|
78
|
+
<a href="https://github.com/pyscout/Webscout">
|
|
82
79
|
<img src="https://img.shields.io/badge/WebScout-Ultimate%20Toolkit-blue?style=for-the-badge&logo=python&logoColor=white" alt="WebScout Logo">
|
|
83
80
|
</a>
|
|
84
81
|
|
|
@@ -96,7 +93,7 @@ Dynamic: license-file
|
|
|
96
93
|
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout/month?style=flat-square" alt="Monthly Downloads"></a>
|
|
97
94
|
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout?style=flat-square" alt="Total Downloads"></a>
|
|
98
95
|
<a href="#"><img src="https://img.shields.io/pypi/pyversions/webscout?style=flat-square&logo=python" alt="Python Version"></a>
|
|
99
|
-
<a href="https://deepwiki.com/
|
|
96
|
+
<a href="https://deepwiki.com/pyscout/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
|
|
100
97
|
</p>
|
|
101
98
|
</div>
|
|
102
99
|
|
|
@@ -108,6 +105,7 @@ Dynamic: license-file
|
|
|
108
105
|
- [⚙️ Installation](#️-installation)
|
|
109
106
|
- [🖥️ Command Line Interface](#️-command-line-interface)
|
|
110
107
|
- [🔄 OpenAI-Compatible API Server](docs/openai-api-server.md)
|
|
108
|
+
- [🕸️ Scout: HTML Parser & Web Crawler](docs/scout.md)
|
|
111
109
|
- [🤖 AI Models and Voices](#-ai-models-and-voices)
|
|
112
110
|
- [💬 AI Chat Providers](#-ai-chat-providers)
|
|
113
111
|
- [👨💻 Advanced AI Interfaces](#-advanced-ai-interfaces)
|
|
@@ -121,7 +119,7 @@ Dynamic: license-file
|
|
|
121
119
|
>
|
|
122
120
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
123
121
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
124
|
-
> - **Local LLM Compatibility:** Run local models with
|
|
122
|
+
> - **Local LLM Compatibility:** Run local models with OpenAI-compatible servers
|
|
125
123
|
>
|
|
126
124
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md) or see the [OpenAI-Compatible API Server](#-openai-compatible-api-server) section below.
|
|
127
125
|
|
|
@@ -152,7 +150,7 @@ Dynamic: license-file
|
|
|
152
150
|
- **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
153
151
|
- **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
154
152
|
- **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
155
|
-
- **
|
|
153
|
+
- **Local LLMs:** Run local models with OpenAI-compatible servers (see [Inferno documentation](docs/inferno.md))
|
|
156
154
|
- **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
157
155
|
</p>
|
|
158
156
|
</details>
|
|
@@ -164,7 +162,7 @@ Dynamic: license-file
|
|
|
164
162
|
- **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
|
|
165
163
|
- **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
|
|
166
164
|
- **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
167
|
-
- **[Weather Tools](
|
|
165
|
+
- **[Weather Tools](docs/weather.md):** Retrieve detailed weather information for any location
|
|
168
166
|
</p>
|
|
169
167
|
</details>
|
|
170
168
|
|
|
@@ -177,8 +175,7 @@ Dynamic: license-file
|
|
|
177
175
|
- **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
|
|
178
176
|
- **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
|
|
179
177
|
- **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
180
|
-
- **[Scout](
|
|
181
|
-
- **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
|
|
178
|
+
- **[Scout](docs/scout.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
182
179
|
- **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
|
|
183
180
|
- **[Utility Decorators](docs/decorators.md):** Easily measure function execution time (`timeIt`) and add retry logic (`retry`) to any function
|
|
184
181
|
- **[Stream Sanitization Utilities](docs/sanitize.md):** Advanced tools for cleaning, decoding, and processing data streams
|
|
@@ -245,7 +242,7 @@ webscout-server
|
|
|
245
242
|
|
|
246
243
|
```bash
|
|
247
244
|
# Clone the repository
|
|
248
|
-
git clone https://github.com/
|
|
245
|
+
git clone https://github.com/pyscout/Webscout.git
|
|
249
246
|
cd Webscout
|
|
250
247
|
|
|
251
248
|
# Install in development mode with UV
|
|
@@ -262,8 +259,8 @@ uv pip install -e ".[dev,api]"
|
|
|
262
259
|
|
|
263
260
|
```bash
|
|
264
261
|
# Pull and run the Docker image
|
|
265
|
-
docker pull
|
|
266
|
-
docker run -it
|
|
262
|
+
docker pull pyscout/webscout:latest
|
|
263
|
+
docker run -it pyscout/webscout:latest
|
|
267
264
|
```
|
|
268
265
|
|
|
269
266
|
### 📱 Quick Start Commands
|
|
@@ -327,46 +324,6 @@ Webscout provides comprehensive CLI commands for all search engines. See the [Se
|
|
|
327
324
|
</p>
|
|
328
325
|
</details>
|
|
329
326
|
|
|
330
|
-
<details open>
|
|
331
|
-
<summary><b>Inferno LLM Commands</b></summary>
|
|
332
|
-
<p>
|
|
333
|
-
|
|
334
|
-
Inferno is now a standalone package. Install it separately with:
|
|
335
|
-
|
|
336
|
-
```bash
|
|
337
|
-
pip install inferno-llm
|
|
338
|
-
```
|
|
339
|
-
|
|
340
|
-
After installation, you can use its CLI for managing and using local LLMs:
|
|
341
|
-
|
|
342
|
-
```bash
|
|
343
|
-
inferno --help
|
|
344
|
-
```
|
|
345
|
-
|
|
346
|
-
| Command | Description |
|
|
347
|
-
| ------------------------ | ----------------------------------------------- |
|
|
348
|
-
| `inferno pull <model>` | Download a model from Hugging Face |
|
|
349
|
-
| `inferno list` | List downloaded models |
|
|
350
|
-
| `inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
351
|
-
| `inferno run <model>` | Chat with a model interactively |
|
|
352
|
-
| `inferno remove <model>` | Remove a downloaded model |
|
|
353
|
-
| `inferno version` | Show version information |
|
|
354
|
-
|
|
355
|
-
For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
|
|
356
|
-
|
|
357
|
-
</p>
|
|
358
|
-
</details>
|
|
359
|
-
|
|
360
|
-
> [!NOTE]
|
|
361
|
-
> **Hardware requirements for running models with Inferno:**
|
|
362
|
-
>
|
|
363
|
-
> - Around 2 GB of RAM for 1B models
|
|
364
|
-
> - Around 4 GB of RAM for 3B models
|
|
365
|
-
> - At least 8 GB of RAM for 7B models
|
|
366
|
-
> - 16 GB of RAM for 13B models
|
|
367
|
-
> - 32 GB of RAM for 33B models
|
|
368
|
-
> - GPU acceleration is recommended for better performance
|
|
369
|
-
|
|
370
327
|
For detailed information about the OpenAI-compatible API server, including setup, configuration, and usage examples, see the [OpenAI API Server Documentation](docs/openai-api-server.md).
|
|
371
328
|
|
|
372
329
|
<hr/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://github.com/
|
|
2
|
+
<a href="https://github.com/pyscout/Webscout">
|
|
3
3
|
<img src="https://img.shields.io/badge/WebScout-Ultimate%20Toolkit-blue?style=for-the-badge&logo=python&logoColor=white" alt="WebScout Logo">
|
|
4
4
|
</a>
|
|
5
5
|
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout/month?style=flat-square" alt="Monthly Downloads"></a>
|
|
18
18
|
<a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout?style=flat-square" alt="Total Downloads"></a>
|
|
19
19
|
<a href="#"><img src="https://img.shields.io/pypi/pyversions/webscout?style=flat-square&logo=python" alt="Python Version"></a>
|
|
20
|
-
<a href="https://deepwiki.com/
|
|
20
|
+
<a href="https://deepwiki.com/pyscout/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
|
|
21
21
|
</p>
|
|
22
22
|
</div>
|
|
23
23
|
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
- [⚙️ Installation](#️-installation)
|
|
30
30
|
- [🖥️ Command Line Interface](#️-command-line-interface)
|
|
31
31
|
- [🔄 OpenAI-Compatible API Server](docs/openai-api-server.md)
|
|
32
|
+
- [🕸️ Scout: HTML Parser & Web Crawler](docs/scout.md)
|
|
32
33
|
- [🤖 AI Models and Voices](#-ai-models-and-voices)
|
|
33
34
|
- [💬 AI Chat Providers](#-ai-chat-providers)
|
|
34
35
|
- [👨💻 Advanced AI Interfaces](#-advanced-ai-interfaces)
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
>
|
|
43
44
|
> - **Native Compatibility:** Webscout's own native API for maximum flexibility
|
|
44
45
|
> - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
|
|
45
|
-
> - **Local LLM Compatibility:** Run local models with
|
|
46
|
+
> - **Local LLM Compatibility:** Run local models with OpenAI-compatible servers
|
|
46
47
|
>
|
|
47
48
|
> Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md) or see the [OpenAI-Compatible API Server](#-openai-compatible-api-server) section below.
|
|
48
49
|
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
- **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
|
|
74
75
|
- **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
|
|
75
76
|
- **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
|
|
76
|
-
- **
|
|
77
|
+
- **Local LLMs:** Run local models with OpenAI-compatible servers (see [Inferno documentation](docs/inferno.md))
|
|
77
78
|
- **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
|
|
78
79
|
</p>
|
|
79
80
|
</details>
|
|
@@ -85,7 +86,7 @@
|
|
|
85
86
|
- **[YouTube Toolkit](webscout/Extra/YTToolkit/README.md):** Advanced YouTube video and transcript management with multi-language support
|
|
86
87
|
- **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers
|
|
87
88
|
- **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
|
|
88
|
-
- **[Weather Tools](
|
|
89
|
+
- **[Weather Tools](docs/weather.md):** Retrieve detailed weather information for any location
|
|
89
90
|
</p>
|
|
90
91
|
</details>
|
|
91
92
|
|
|
@@ -98,8 +99,7 @@
|
|
|
98
99
|
- **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
|
|
99
100
|
- **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
|
|
100
101
|
- **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
|
|
101
|
-
- **[Scout](
|
|
102
|
-
- **[Inferno](https://github.com/HelpingAI/inferno):** Run local LLMs with an OpenAI-compatible API and interactive CLI (now a standalone package: `pip install inferno-llm`)
|
|
102
|
+
- **[Scout](docs/scout.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
|
|
103
103
|
- **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
|
|
104
104
|
- **[Utility Decorators](docs/decorators.md):** Easily measure function execution time (`timeIt`) and add retry logic (`retry`) to any function
|
|
105
105
|
- **[Stream Sanitization Utilities](docs/sanitize.md):** Advanced tools for cleaning, decoding, and processing data streams
|
|
@@ -166,7 +166,7 @@ webscout-server
|
|
|
166
166
|
|
|
167
167
|
```bash
|
|
168
168
|
# Clone the repository
|
|
169
|
-
git clone https://github.com/
|
|
169
|
+
git clone https://github.com/pyscout/Webscout.git
|
|
170
170
|
cd Webscout
|
|
171
171
|
|
|
172
172
|
# Install in development mode with UV
|
|
@@ -183,8 +183,8 @@ uv pip install -e ".[dev,api]"
|
|
|
183
183
|
|
|
184
184
|
```bash
|
|
185
185
|
# Pull and run the Docker image
|
|
186
|
-
docker pull
|
|
187
|
-
docker run -it
|
|
186
|
+
docker pull pyscout/webscout:latest
|
|
187
|
+
docker run -it pyscout/webscout:latest
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
### 📱 Quick Start Commands
|
|
@@ -248,46 +248,6 @@ Webscout provides comprehensive CLI commands for all search engines. See the [Se
|
|
|
248
248
|
</p>
|
|
249
249
|
</details>
|
|
250
250
|
|
|
251
|
-
<details open>
|
|
252
|
-
<summary><b>Inferno LLM Commands</b></summary>
|
|
253
|
-
<p>
|
|
254
|
-
|
|
255
|
-
Inferno is now a standalone package. Install it separately with:
|
|
256
|
-
|
|
257
|
-
```bash
|
|
258
|
-
pip install inferno-llm
|
|
259
|
-
```
|
|
260
|
-
|
|
261
|
-
After installation, you can use its CLI for managing and using local LLMs:
|
|
262
|
-
|
|
263
|
-
```bash
|
|
264
|
-
inferno --help
|
|
265
|
-
```
|
|
266
|
-
|
|
267
|
-
| Command | Description |
|
|
268
|
-
| ------------------------ | ----------------------------------------------- |
|
|
269
|
-
| `inferno pull <model>` | Download a model from Hugging Face |
|
|
270
|
-
| `inferno list` | List downloaded models |
|
|
271
|
-
| `inferno serve <model>` | Start a model server with OpenAI-compatible API |
|
|
272
|
-
| `inferno run <model>` | Chat with a model interactively |
|
|
273
|
-
| `inferno remove <model>` | Remove a downloaded model |
|
|
274
|
-
| `inferno version` | Show version information |
|
|
275
|
-
|
|
276
|
-
For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
|
|
277
|
-
|
|
278
|
-
</p>
|
|
279
|
-
</details>
|
|
280
|
-
|
|
281
|
-
> [!NOTE]
|
|
282
|
-
> **Hardware requirements for running models with Inferno:**
|
|
283
|
-
>
|
|
284
|
-
> - Around 2 GB of RAM for 1B models
|
|
285
|
-
> - Around 4 GB of RAM for 3B models
|
|
286
|
-
> - At least 8 GB of RAM for 7B models
|
|
287
|
-
> - 16 GB of RAM for 13B models
|
|
288
|
-
> - 32 GB of RAM for 33B models
|
|
289
|
-
> - GPU acceleration is recommended for better performance
|
|
290
|
-
|
|
291
251
|
For detailed information about the OpenAI-compatible API server, including setup, configuration, and usage examples, see the [OpenAI API Server Documentation](docs/openai-api-server.md).
|
|
292
252
|
|
|
293
253
|
<hr/>
|
|
Binary file
|
|
@@ -61,7 +61,6 @@ dependencies = [
|
|
|
61
61
|
"orjson",
|
|
62
62
|
"PyYAML",
|
|
63
63
|
"pillow",
|
|
64
|
-
"bson",
|
|
65
64
|
"cloudscraper",
|
|
66
65
|
"html5lib",
|
|
67
66
|
"aiofiles",
|
|
@@ -77,7 +76,7 @@ dependencies = [
|
|
|
77
76
|
[project.scripts]
|
|
78
77
|
WEBS = "webscout.cli:main"
|
|
79
78
|
webscout = "webscout.cli:main"
|
|
80
|
-
webscout-server = "webscout.
|
|
79
|
+
webscout-server = "webscout.server.server:main" # Instantly start the OpenAI-compatible API server
|
|
81
80
|
|
|
82
81
|
[project.urls]
|
|
83
82
|
Source = "https://github.com/OE-LUCIFER/Webscout"
|
|
@@ -95,10 +94,8 @@ api = [
|
|
|
95
94
|
"pydantic",
|
|
96
95
|
"python-multipart",
|
|
97
96
|
"tiktoken", # Added tiktoken for token counting support
|
|
98
|
-
"motor", # MongoDB async driver for enhanced authentication
|
|
99
97
|
"jinja2", # Template engine for custom Swagger UI
|
|
100
|
-
"
|
|
101
|
-
"websockets>=11.0", # Ensure websockets.asyncio module is available for Supabase realtime
|
|
98
|
+
"websockets>=11.0",
|
|
102
99
|
"starlette"
|
|
103
100
|
]
|
|
104
101
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://github.com/
|
|
2
|
+
<a href="https://github.com/pyscout/Webscout">
|
|
3
3
|
<img src="https://img.shields.io/badge/YTToolkit-YouTube%20Toolkit-red?style=for-the-badge&logo=youtube&logoColor=white" alt="YTToolkit Logo">
|
|
4
4
|
</a>
|
|
5
5
|
<h1>YTToolkit</h1>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<a href="https://github.com/
|
|
3
|
-
<img src="https://img.shields.io/badge/WebScout-TempMail%
|
|
2
|
+
<a href="https://github.com/pyscout/Webscout">
|
|
3
|
+
<img src="https://img.shields.io/badge/WebScout-TempMail%20Toolkit-blue?style=for-the-badge&logo=maildotru&logoColor=white" alt="WebScout TempMail Toolkit">
|
|
4
4
|
</a>
|
|
5
5
|
|
|
6
6
|
<h1>📧 TempMail</h1>
|
|
@@ -484,5 +484,5 @@ Please refer to the main Webscout project's contributing guidelines if you plan
|
|
|
484
484
|
<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>
|
|
485
485
|
</div>
|
|
486
486
|
<p>📧 TempMail - Part of the Webscout Toolkit</p>
|
|
487
|
-
<a href="https://github.com/
|
|
487
|
+
<a href="https://github.com/pyscout/Webscout">Back to Main Webscout Project</a>
|
|
488
488
|
</div>
|