webscout 2025.10.14.1__py3-none-any.whl → 2025.10.16__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of webscout might be problematic. Click here for more details.

Files changed (70) hide show
  1. webscout/Extra/YTToolkit/README.md +1 -1
  2. webscout/Extra/tempmail/README.md +3 -3
  3. webscout/Provider/OPENAI/README.md +1 -1
  4. webscout/Provider/TTI/bing.py +4 -4
  5. webscout/__init__.py +1 -1
  6. webscout/cli.py +0 -147
  7. webscout/client.py +4 -5
  8. webscout/litprinter/__init__.py +0 -42
  9. webscout/scout/README.md +59 -8
  10. webscout/scout/core/scout.py +62 -0
  11. webscout/scout/element.py +251 -45
  12. webscout/search/__init__.py +5 -8
  13. webscout/search/bing_main.py +42 -0
  14. webscout/search/engines/bing/__init__.py +1 -0
  15. webscout/search/engines/bing/base.py +33 -0
  16. webscout/search/engines/bing/images.py +108 -0
  17. webscout/search/engines/bing/news.py +91 -0
  18. webscout/search/engines/bing/suggestions.py +34 -0
  19. webscout/search/engines/bing/text.py +106 -0
  20. webscout/search/engines/duckduckgo/maps.py +13 -0
  21. webscout/search/engines/yahoo/__init__.py +41 -0
  22. webscout/search/engines/yahoo/answers.py +16 -0
  23. webscout/search/engines/yahoo/base.py +34 -0
  24. webscout/search/engines/yahoo/images.py +324 -0
  25. webscout/search/engines/yahoo/maps.py +16 -0
  26. webscout/search/engines/yahoo/news.py +258 -0
  27. webscout/search/engines/yahoo/suggestions.py +140 -0
  28. webscout/search/engines/yahoo/text.py +273 -0
  29. webscout/search/engines/yahoo/translate.py +16 -0
  30. webscout/search/engines/yahoo/videos.py +302 -0
  31. webscout/search/engines/yahoo/weather.py +220 -0
  32. webscout/search/http_client.py +1 -1
  33. webscout/search/yahoo_main.py +54 -0
  34. webscout/{auth → server}/__init__.py +2 -23
  35. webscout/server/config.py +84 -0
  36. webscout/{auth → server}/request_processing.py +3 -28
  37. webscout/{auth → server}/routes.py +14 -170
  38. webscout/server/schemas.py +23 -0
  39. webscout/{auth → server}/server.py +11 -43
  40. webscout/server/simple_logger.py +84 -0
  41. webscout/version.py +1 -1
  42. webscout/version.py.bak +1 -1
  43. webscout/zeroart/README.md +17 -9
  44. webscout/zeroart/__init__.py +78 -6
  45. webscout/zeroart/effects.py +51 -1
  46. webscout/zeroart/fonts.py +559 -1
  47. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/METADATA +15 -332
  48. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/RECORD +55 -48
  49. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/entry_points.txt +1 -1
  50. webscout/Bing_search.py +0 -417
  51. webscout/DWEBS.py +0 -529
  52. webscout/auth/api_key_manager.py +0 -189
  53. webscout/auth/auth_system.py +0 -85
  54. webscout/auth/config.py +0 -175
  55. webscout/auth/database.py +0 -755
  56. webscout/auth/middleware.py +0 -248
  57. webscout/auth/models.py +0 -185
  58. webscout/auth/rate_limiter.py +0 -254
  59. webscout/auth/schemas.py +0 -103
  60. webscout/auth/simple_logger.py +0 -236
  61. webscout/search/engines/bing.py +0 -84
  62. webscout/search/engines/bing_news.py +0 -52
  63. webscout/search/engines/yahoo.py +0 -65
  64. webscout/search/engines/yahoo_news.py +0 -64
  65. /webscout/{auth → server}/exceptions.py +0 -0
  66. /webscout/{auth → server}/providers.py +0 -0
  67. /webscout/{auth → server}/request_models.py +0 -0
  68. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/WHEEL +0 -0
  69. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/licenses/LICENSE.md +0 -0
  70. {webscout-2025.10.14.1.dist-info → webscout-2025.10.16.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webscout
3
- Version: 2025.10.14.1
3
+ Version: 2025.10.16
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
@@ -70,15 +70,13 @@ Requires-Dist: uvicorn[standard]; extra == "api"
70
70
  Requires-Dist: pydantic; extra == "api"
71
71
  Requires-Dist: python-multipart; extra == "api"
72
72
  Requires-Dist: tiktoken; extra == "api"
73
- Requires-Dist: motor; extra == "api"
74
73
  Requires-Dist: jinja2; extra == "api"
75
- Requires-Dist: supabase; extra == "api"
76
74
  Requires-Dist: websockets>=11.0; extra == "api"
77
75
  Requires-Dist: starlette; extra == "api"
78
76
  Dynamic: license-file
79
77
 
80
78
  <div align="center">
81
- <a href="https://github.com/OEvortex/Webscout">
79
+ <a href="https://github.com/pyscout/Webscout">
82
80
  <img src="https://img.shields.io/badge/WebScout-Ultimate%20Toolkit-blue?style=for-the-badge&logo=python&logoColor=white" alt="WebScout Logo">
83
81
  </a>
84
82
 
@@ -96,7 +94,7 @@ Dynamic: license-file
96
94
  <a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout/month?style=flat-square" alt="Monthly Downloads"></a>
97
95
  <a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout?style=flat-square" alt="Total Downloads"></a>
98
96
  <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/OEvortex/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
97
+ <a href="https://deepwiki.com/pyscout/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
100
98
  </p>
101
99
  </div>
102
100
 
@@ -108,9 +106,7 @@ Dynamic: license-file
108
106
  - [⚙️ Installation](#️-installation)
109
107
  - [🖥️ Command Line Interface](#️-command-line-interface)
110
108
  - [🔄 OpenAI-Compatible API Server](docs/openai-api-server.md)
111
- - [🔍 Search Engines](#-search-engines)
112
- - [🦆 DuckDuckGo Search](#-duckduckgo-search-with-webs-and-asyncwebs)
113
- - [💻 WEBS API Reference](#-webs-api-reference)
109
+ - [🕸️ Scout: HTML Parser & Web Crawler](docs/scout.md)
114
110
  - [🤖 AI Models and Voices](#-ai-models-and-voices)
115
111
  - [💬 AI Chat Providers](#-ai-chat-providers)
116
112
  - [👨‍💻 Advanced AI Interfaces](#-advanced-ai-interfaces)
@@ -124,7 +120,7 @@ Dynamic: license-file
124
120
  >
125
121
  > - **Native Compatibility:** Webscout's own native API for maximum flexibility
126
122
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
127
- > - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
123
+ > - **Local LLM Compatibility:** Run local models with OpenAI-compatible servers
128
124
  >
129
125
  > 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.
130
126
 
@@ -151,11 +147,11 @@ Dynamic: license-file
151
147
  <summary><b>Search & AI</b></summary>
152
148
  <p>
153
149
 
154
- - **Comprehensive Search:** Leverage Google, DuckDuckGo, and Yep for diverse search results
150
+ - **Comprehensive Search:** Access multiple search engines including DuckDuckGo, Yep, Bing, Brave, Yahoo, Yandex, Mojeek, and Wikipedia for diverse search results ([Search Documentation](docs/search.md))
155
151
  - **AI Powerhouse:** Access and interact with various AI models through three compatibility options:
156
152
  - **Native API:** Use Webscout's native interfaces for providers like OpenAI, Cohere, Gemini, and many more
157
153
  - **[OpenAI-Compatible Providers](webscout/Provider/OPENAI/README.md):** Seamlessly integrate with various AI providers using standardized OpenAI-compatible interfaces
158
- - **[Local LLMs with Inferno](https://github.com/HelpingAI/inferno):** Run local models with an OpenAI-compatible server (now available as a standalone package)
154
+ - **Local LLMs:** Run local models with OpenAI-compatible servers (see [Inferno documentation](docs/inferno.md))
159
155
  - **[AI Search](webscout/Provider/AISEARCH/README.md):** AI-powered search engines with advanced capabilities
160
156
  </p>
161
157
  </details>
@@ -180,8 +176,7 @@ Dynamic: license-file
180
176
  - **[LitPrinter](webscout/litprinter/Readme.md):** Styled console output with rich formatting and colors
181
177
  - **[LitLogger](webscout/litlogger/README.md):** Simplified logging with customizable formats and color schemes
182
178
  - **[LitAgent](webscout/litagent/Readme.md):** Modern user agent generator that keeps your requests undetectable
183
- - **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
184
- - **[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`)
179
+ - **[Scout](docs/scout.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing
185
180
  - **[GGUF Conversion](webscout/Extra/gguf.md):** Convert and quantize Hugging Face models to GGUF format
186
181
  - **[Utility Decorators](docs/decorators.md):** Easily measure function execution time (`timeIt`) and add retry logic (`retry`) to any function
187
182
  - **[Stream Sanitization Utilities](docs/sanitize.md):** Advanced tools for cleaning, decoding, and processing data streams
@@ -248,7 +243,7 @@ webscout-server
248
243
 
249
244
  ```bash
250
245
  # Clone the repository
251
- git clone https://github.com/OEvortex/Webscout.git
246
+ git clone https://github.com/pyscout/Webscout.git
252
247
  cd Webscout
253
248
 
254
249
  # Install in development mode with UV
@@ -265,8 +260,8 @@ uv pip install -e ".[dev,api]"
265
260
 
266
261
  ```bash
267
262
  # Pull and run the Docker image
268
- docker pull oevortex/webscout:latest
269
- docker run -it oevortex/webscout:latest
263
+ docker pull pyscout/webscout:latest
264
+ docker run -it pyscout/webscout:latest
270
265
  ```
271
266
 
272
267
  ### 📱 Quick Start Commands
@@ -325,328 +320,15 @@ python -m webscout-server
325
320
  <summary><b>🔍 Web Search Commands</b></summary>
326
321
  <p>
327
322
 
328
- | Command | Description | Example |
329
- | --------------------------------- | --------------------------- | ----------------------------------------- |
330
- | `webscout text -k "query"` | Perform a text search | `webscout text -k "python programming"` |
331
- | `webscout answers -k "query"` | Get instant answers | `webscout answers -k "what is AI"` |
332
- | `webscout images -k "query"` | Search for images | `webscout images -k "nature photography"` |
333
- | `webscout videos -k "query"` | Search for videos | `webscout videos -k "python tutorials"` |
334
- | `webscout news -k "query"` | Search for news articles | `webscout news -k "technology trends"` |
335
- | `webscout maps -k "query"` | Perform a maps search | `webscout maps -k "restaurants near me"` |
336
- | `webscout translate -k "text"` | Translate text | `webscout translate -k "hello world"` |
337
- | `webscout suggestions -k "query"` | Get search suggestions | `webscout suggestions -k "how to"` |
338
- | `webscout weather -l "location"` | Get weather information | `webscout weather -l "New York"` |
339
- | `webscout version` | Display the current version | `webscout version` |
340
-
341
- **Google Search Commands:**
342
- | Command | Description | Example |
343
- |---------|-------------|---------|
344
- | `webscout google_text -k "query"` | Google text search | `webscout google_text -k "machine learning"` |
345
- | `webscout google_news -k "query"` | Google news search | `webscout google_news -k "AI breakthrough"` |
346
- | `webscout google_suggestions -q "query"` | Google suggestions | `webscout google_suggestions -q "python"` |
347
-
348
- **Yep Search Commands:**
349
- | Command | Description | Example |
350
- |---------|-------------|---------|
351
- | `webscout yep_text -k "query"` | Yep text search | `webscout yep_text -k "web development"` |
352
- | `webscout yep_images -k "query"` | Yep image search | `webscout yep_images -k "landscapes"` |
353
- | `webscout yep_suggestions -q "query"` | Yep suggestions | `webscout yep_suggestions -q "javascript"` |
323
+ Webscout provides comprehensive CLI commands for all search engines. See the [Search Documentation](docs/search.md#command-line-interface) for detailed command reference.
354
324
 
355
325
  </p>
356
326
  </details>
357
327
 
358
- <details open>
359
- <summary><b>Inferno LLM Commands</b></summary>
360
- <p>
361
-
362
- Inferno is now a standalone package. Install it separately with:
363
-
364
- ```bash
365
- pip install inferno-llm
366
- ```
367
-
368
- After installation, you can use its CLI for managing and using local LLMs:
369
-
370
- ```bash
371
- inferno --help
372
- ```
373
-
374
- | Command | Description |
375
- | ------------------------ | ----------------------------------------------- |
376
- | `inferno pull <model>` | Download a model from Hugging Face |
377
- | `inferno list` | List downloaded models |
378
- | `inferno serve <model>` | Start a model server with OpenAI-compatible API |
379
- | `inferno run <model>` | Chat with a model interactively |
380
- | `inferno remove <model>` | Remove a downloaded model |
381
- | `inferno version` | Show version information |
382
-
383
- For more information, visit the [Inferno GitHub repository](https://github.com/HelpingAI/inferno) or [PyPI package page](https://pypi.org/project/inferno-llm/).
384
-
385
- </p>
386
- </details>
387
-
388
- > [!NOTE]
389
- > **Hardware requirements for running models with Inferno:**
390
- >
391
- > - Around 2 GB of RAM for 1B models
392
- > - Around 4 GB of RAM for 3B models
393
- > - At least 8 GB of RAM for 7B models
394
- > - 16 GB of RAM for 13B models
395
- > - 32 GB of RAM for 33B models
396
- > - GPU acceleration is recommended for better performance
397
-
398
328
  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).
399
329
 
400
330
  <hr/>
401
331
 
402
- ## 🔍 Search Engines
403
-
404
- Webscout provides multiple search engine interfaces for diverse search capabilities.
405
-
406
- ### YepSearch - Yep.com Interface
407
-
408
- ```python
409
- from webscout import YepSearch
410
-
411
- # Initialize YepSearch
412
- yep = YepSearch(
413
- timeout=20, # Optional: Set custom timeout
414
- proxies=None, # Optional: Use proxies
415
- verify=True # Optional: SSL verification
416
- )
417
-
418
- # Text Search
419
- text_results = yep.text(
420
- keywords="artificial intelligence",
421
- region="all", # Optional: Region for results
422
- safesearch="moderate", # Optional: "on", "moderate", "off"
423
- max_results=10 # Optional: Limit number of results
424
- )
425
-
426
- # Image Search
427
- image_results = yep.images(
428
- keywords="nature photography",
429
- region="all",
430
- safesearch="moderate",
431
- max_results=10
432
- )
433
-
434
- # Get search suggestions
435
- suggestions = yep.suggestions("hist")
436
- ```
437
-
438
- ### GoogleSearch - Google Interface
439
-
440
- ```python
441
- from webscout import GoogleSearch
442
-
443
- # Initialize GoogleSearch
444
- google = GoogleSearch(
445
- timeout=10, # Optional: Set custom timeout
446
- proxies=None, # Optional: Use proxies
447
- verify=True # Optional: SSL verification
448
- )
449
-
450
- # Text Search
451
- text_results = google.text(
452
- keywords="artificial intelligence",
453
- region="us", # Optional: Region for results
454
- safesearch="moderate", # Optional: "on", "moderate", "off"
455
- max_results=10 # Optional: Limit number of results
456
- )
457
- for result in text_results:
458
- print(f"Title: {result.title}")
459
- print(f"URL: {result.url}")
460
- print(f"Description: {result.description}")
461
-
462
- # News Search
463
- news_results = google.news(
464
- keywords="technology trends",
465
- region="us",
466
- safesearch="moderate",
467
- max_results=5
468
- )
469
-
470
- # Get search suggestions
471
- suggestions = google.suggestions("how to")
472
-
473
- # Legacy usage is still supported
474
- from webscout import search
475
- results = search("Python programming", num_results=5)
476
- ```
477
-
478
- <hr/>
479
-
480
- ## 🦆 DuckDuckGo Search with WEBS
481
-
482
- Webscout provides powerful interfaces to DuckDuckGo's search capabilities through the `WEBS` and `AsyncWEBS` classes.
483
-
484
- <details open>
485
- <summary><b>Synchronous Usage with WEBS</b></summary>
486
- <p>
487
-
488
- ```python
489
- from webscout import WEBS
490
-
491
- # Use as a context manager for proper resource management
492
- with WEBS() as webs:
493
- # Simple text search
494
- results = webs.text("python programming", max_results=5)
495
- for result in results:
496
- print(f"Title: {result['title']}\nURL: {result['url']}")
497
- ```
498
-
499
- </p>
500
- </details>
501
-
502
- <details open>
503
- <summary><b>Asynchronous Usage with AsyncWEBS</b></summary>
504
- <p>
505
-
506
- ```python
507
- import asyncio
508
- from webscout import AsyncWEBS
509
-
510
- async def search_multiple_terms(search_terms):
511
- async with AsyncWEBS() as webs:
512
- # Create tasks for each search term
513
- tasks = [webs.text(term, max_results=5) for term in search_terms]
514
- # Run all searches concurrently
515
- results = await asyncio.gather(*tasks)
516
- return results
517
-
518
- async def main():
519
- terms = ["python", "javascript", "machine learning"]
520
- all_results = await search_multiple_terms(terms)
521
-
522
- # Process results
523
- for i, term_results in enumerate(all_results):
524
- print(f"Results for '{terms[i]}':\n")
525
- for result in term_results:
526
- print(f"- {result['title']}")
527
- print("\n")
528
-
529
- # Run the async function
530
- asyncio.run(main())
531
- ```
532
-
533
- </p>
534
- </details>
535
-
536
- > [!TIP]
537
- > Always use these classes with a context manager (`with` statement) to ensure proper resource management and cleanup.
538
-
539
- <hr/>
540
-
541
- ## 💻 WEBS API Reference
542
-
543
- The WEBS class provides comprehensive access to DuckDuckGo's search capabilities through a clean, intuitive API.
544
-
545
- ### Available Search Methods
546
-
547
- | Method | Description | Example |
548
- | --------------- | ------------------- | -------------------------------------------- |
549
- | `text()` | General web search | `webs.text('python programming')` |
550
- | `answers()` | Instant answers | `webs.answers('population of france')` |
551
- | `images()` | Image search | `webs.images('nature photography')` |
552
- | `videos()` | Video search | `webs.videos('documentary')` |
553
- | `news()` | News articles | `webs.news('technology')` |
554
- | `maps()` | Location search | `webs.maps('restaurants', place='new york')` |
555
- | `translate()` | Text translation | `webs.translate('hello', to='es')` |
556
- | `suggestions()` | Search suggestions | `webs.suggestions('how to')` |
557
- | `weather()` | Weather information | `webs.weather('london')` |
558
-
559
- <details>
560
- <summary><b>Example: Text Search</b></summary>
561
- <p>
562
-
563
- ```python
564
- from webscout import WEBS
565
-
566
- with WEBS() as webs:
567
- results = webs.text(
568
- 'artificial intelligence',
569
- region='wt-wt', # Optional: Region for results
570
- safesearch='off', # Optional: 'on', 'moderate', 'off'
571
- timelimit='y', # Optional: Time limit ('d'=day, 'w'=week, 'm'=month, 'y'=year)
572
- max_results=10 # Optional: Limit number of results
573
- )
574
-
575
- for result in results:
576
- print(f"Title: {result['title']}")
577
- print(f"URL: {result['url']}")
578
- print(f"Description: {result['body']}\n")
579
- ```
580
-
581
- </p>
582
- </details>
583
-
584
- <details>
585
- <summary><b>Example: News Search with Formatting</b></summary>
586
- <p>
587
-
588
- ```python
589
- from webscout.search import DuckDuckGoSearch
590
-
591
- def fetch_formatted_news(keywords, timelimit='d', max_results=20):
592
- """Fetch and format news articles"""
593
- with WEBS() as webs:
594
- # Get news results
595
- news_results = webs.news(
596
- keywords,
597
- region="wt-wt",
598
- safesearch="off",
599
- timelimit=timelimit, # 'd'=day, 'w'=week, 'm'=month
600
- max_results=max_results
601
- )
602
-
603
- # Format the results
604
- formatted_news = []
605
- for i, item in enumerate(news_results, 1):
606
- # Format the date
607
- date = datetime.datetime.fromisoformat(item['date']).strftime('%B %d, %Y')
608
-
609
- # Create formatted entry
610
- entry = f"{i}. {item['title']}\n"
611
- entry += f" Published: {date}\n"
612
- entry += f" {item['body']}\n"
613
- entry += f" URL: {item['url']}\n"
614
-
615
- formatted_news.append(entry)
616
-
617
- return formatted_news
618
-
619
- # Example usage
620
- news = fetch_formatted_news('artificial intelligence', timelimit='w', max_results=5)
621
- print('\n'.join(news))
622
- ```
623
-
624
- </p>
625
- </details>
626
-
627
- <details>
628
- <summary><b>Example: Weather Information</b></summary>
629
- <p>
630
-
631
- ```python
632
- from webscout import WEBS
633
-
634
- with WEBS() as webs:
635
- # Get weather for a location
636
- weather = webs.weather("New York")
637
-
638
- # Access weather data
639
- if weather:
640
- print(f"Location: {weather.get('location', 'Unknown')}")
641
- print(f"Temperature: {weather.get('temperature', 'N/A')}")
642
- print(f"Conditions: {weather.get('condition', 'N/A')}")
643
- ```
644
-
645
- </p>
646
- </details>
647
-
648
- <hr/>
649
-
650
332
  ## 🤖 AI Models and Voices
651
333
 
652
334
  Webscout provides easy access to a wide range of AI models and voice options.
@@ -781,7 +463,7 @@ for media in response.get("media", []):
781
463
  <p>
782
464
 
783
465
  ```python
784
- from webscout import GROQ, WEBS
466
+ from webscout import GROQ, DuckDuckGoSearch
785
467
  import json
786
468
 
787
469
  # Initialize GROQ client
@@ -799,7 +481,8 @@ def calculate(expression):
799
481
  def search(query):
800
482
  """Perform a web search"""
801
483
  try:
802
- results = WEBS().text(query, max_results=3)
484
+ ddg = DuckDuckGoSearch()
485
+ results = ddg.text(query, max_results=3)
803
486
  return json.dumps({"results": results})
804
487
  except Exception as e:
805
488
  return json.dumps({"error": str(e)})
@@ -2,12 +2,10 @@ webscout/AIauto.py,sha256=oVgK_iMgz2cmb2fYz88p0qq7TY4uXHyxyFd4UmCKw9g,10307
2
2
  webscout/AIbase.py,sha256=pmqdGdDepp5iBM47J8POqOqu7sL3LlzCThtfgT0V0Ho,14150
3
3
  webscout/AIutel.py,sha256=bIdaIPLs8lnXzboGP_ffQNitoYg2LL_B1krrMxYhzho,2054
4
4
  webscout/Bard.py,sha256=TWQ3paoCe5Tk2DXoxue0Jpfocx3S9l-_NaMtV7lkMQM,43785
5
- webscout/Bing_search.py,sha256=RwW7oNZ0ogszaFN-IUJZ5hu-RNaFdCE6yq22T_Et85s,15930
6
- webscout/DWEBS.py,sha256=QE9bwkkhfZ_y7MqyaV_biW9yrrSE-I2mqa82J2YXEUA,17888
7
- webscout/__init__.py,sha256=BaK1oxqVdl9mnZ2Ur_S_WBUAGOHTVCB20UPnULBaWXM,728
5
+ webscout/__init__.py,sha256=lmDZlwaGqaXw-Aa7Cb0bys0mo1Go5QbyfnoW5xMYlJI,702
8
6
  webscout/__main__.py,sha256=pBm2E3ZZiMcCH37b1YCz7qKdKdX_i_S5En6fZDeJKFw,103
9
- webscout/cli.py,sha256=nlBevw9Mx9-Yw0jfTZL5Pjgk10FEYMkO0W13lAuZaSo,19699
10
- webscout/client.py,sha256=HHnOL9I14uEJHCpGcyjlpZwna_DEJehHD5sqmti7sd8,5588
7
+ webscout/cli.py,sha256=8DPRSP1fB8pdIeC5Ed6FH7mewOhCTH78RPvo9xwtxSU,14463
8
+ webscout/client.py,sha256=puNIpyQBMd0qysXij12_uveJmcN4brQhvQiheLJgkt4,5517
11
9
  webscout/conversation.py,sha256=FZy8eviJVq16SIVjXr-lfOrPPqWV6AjjO_uF_DLOtJ0,16651
12
10
  webscout/exceptions.py,sha256=5Y15eEjQkZcAjL4Rh68uo776MrQzmTINwi1fKzOXkGU,12472
13
11
  webscout/models.py,sha256=oZGSv6Mg74OMCvsuDngoyDPmyPnNZy8g7Q24lO69KwY,6385
@@ -16,8 +14,8 @@ webscout/prompt_manager.py,sha256=ysKFgPhkV3uqrOCilqcS9rG8xhzdU_d2wx0grC9WCCc,98
16
14
  webscout/sanitize.py,sha256=pw2Dzn-Jw9mOD4mpALYAvAf-medA-9AqdzsOmdXQbl0,46577
17
15
  webscout/update_checker.py,sha256=bz0TzRxip9DOIVMFyNz9HsGj4RKB0xZgo57AUVSJINo,3708
18
16
  webscout/utils.py,sha256=o2hU3qaVPk25sog3e4cyVZO3l8xwaZpYRziZPotEzNo,3075
19
- webscout/version.py,sha256=KC5750F6V5BB3VUYSyE5DAlhUXYLf_VdRLpQzt9PPr4,53
20
- webscout/version.py.bak,sha256=NKYNQxHJVHXfbQENZHvwqVDt6HCAsnp5v3VwMpiX3z4,51
17
+ webscout/version.py,sha256=bau6psbS6y1YovrRr6K7N3uBj_p0yf9WmHDqSK16bMs,51
18
+ webscout/version.py.bak,sha256=lFdrFaHswFMDr9VdMdSSpxeTuXjC5Z2DIrPJbWo9KtQ,51
21
19
  webscout/Extra/Act.md,sha256=_C2VW_Dc-dc7eejpGYKAOZhImHKPiQ7NSwE3bkzr6fg,18952
22
20
  webscout/Extra/__init__.py,sha256=KvJRsRBRO-fZp2jSCl6KQnPppi93hriA6O_U1O1s31c,177
23
21
  webscout/Extra/gguf.md,sha256=McXGz5sTfzOO9X4mH8yIqu5K3CgjzyXKi4_HQtezdZ4,12435
@@ -31,7 +29,7 @@ webscout/Extra/GitToolkit/gitapi/__init__.py,sha256=G5CeHDuQQEoJvE5rLttV1Z_hsTRn
31
29
  webscout/Extra/GitToolkit/gitapi/repository.py,sha256=AMeNXlfAIicM47_18z9i3kRZUobZNKeAePUrMqA_NqY,7124
32
30
  webscout/Extra/GitToolkit/gitapi/user.py,sha256=SO795ulRXYmr4fKPccCKedlCoUNWTKBvpgd4ueH4B0o,3534
33
31
  webscout/Extra/GitToolkit/gitapi/utils.py,sha256=PBUcc9gdmmV48g66uzJBP-YqxhGZoKJkV5eXs3WP6Lc,1835
34
- webscout/Extra/YTToolkit/README.md,sha256=G6eFyc_33DE4TSJyt84TC2LHqQ4w7W51DOOwJB-yabE,10919
32
+ webscout/Extra/YTToolkit/README.md,sha256=zULb30daDNwKkGLGpKKaRYtMKJGAHwESgshnp5morDk,10918
35
33
  webscout/Extra/YTToolkit/YTdownloader.py,sha256=58hA9wjZY3tQyn2NptXviS6saoE2ewdWF2q7YrpMgWg,32095
36
34
  webscout/Extra/YTToolkit/__init__.py,sha256=Wn1K-f6OjZ4GuWvL3FTM4zlTaF3xdb4v_K60YDxKdXg,75
37
35
  webscout/Extra/YTToolkit/transcriber.py,sha256=ur1lpZgNO2oNRBvLSFWFbwnE11FcArKXvSqmBy03aus,18575
@@ -51,7 +49,7 @@ webscout/Extra/YTToolkit/ytapi/video.py,sha256=71lM8KVS0kRyo6dnLmM00Sszs5bKIHWcG
51
49
  webscout/Extra/autocoder/__init__.py,sha256=Oj25K3UxPK3q5C222BI5wfoKAW_j853_0br9-kyt4_I,221
52
50
  webscout/Extra/autocoder/autocoder.py,sha256=YlP-z-CEaSgSygD95c9ijoNmzUy4nxfYkbhVR4IeIPQ,41371
53
51
  webscout/Extra/autocoder/autocoder_utiles.py,sha256=79O4O3dR7cKCdpUAh2Ek7rTt-ZfTmYmcQXeqdy5eoMg,21611
54
- webscout/Extra/tempmail/README.md,sha256=NzGMOh6RjDL8Sey_0hUdnxI5NjvNW6vJFZrQ34aDx5o,20826
52
+ webscout/Extra/tempmail/README.md,sha256=5PJH7F7Pv7y7u4GXE-HbFA5m6k9zFLL7ZrL7YUcPlyg,20838
55
53
  webscout/Extra/tempmail/__init__.py,sha256=27ntzaiFDBmw-QyIc4tkoBRCJ45uNmPP0zdaIiSh02Q,614
56
54
  webscout/Extra/tempmail/async_utils.py,sha256=F1v8oqqXWEmzim9e4jJGAOKrGdYHpkdDqjE0xpzNaU4,4275
57
55
  webscout/Extra/tempmail/base.py,sha256=kCtCVmbb6mdDsqmI19Q_gyg80nBrhOMvEits7XPKhy4,5386
@@ -150,7 +148,7 @@ webscout/Provider/OPENAI/GeminiProxy.py,sha256=9_6VHFylM3-ct0m5XDvxfZ1tmd70RnyZl
150
148
  webscout/Provider/OPENAI/K2Think.py,sha256=bNdq-oy2ie8PH7r6RDX7ZosYKFGjqzLSBvC2d_HAWAg,14822
151
149
  webscout/Provider/OPENAI/NEMOTRON.py,sha256=kRxqwDlWSPh3UbNA6qdaOdmD1nma1oStbcSXIWaJgh4,9470
152
150
  webscout/Provider/OPENAI/PI.py,sha256=Jn7bdqpz-Nofngajh8z2XWydVP2YHugJMerRLulRQ7M,14818
153
- webscout/Provider/OPENAI/README.md,sha256=Rp-KDOPdMMNBB1pAU6K6x3AOcaWK3ENeG5TMfO85eJs,24136
151
+ webscout/Provider/OPENAI/README.md,sha256=4uyOUwcUgfaYG-rSx8jnqTyOL5lAAW1uMEPGkHxmSSI,24135
154
152
  webscout/Provider/OPENAI/TogetherAI.py,sha256=6m1e2N0uqAuppnKiTadHzVqvLdkXs_QH8SIqlnEPRNg,13768
155
153
  webscout/Provider/OPENAI/TwoAI.py,sha256=bwuj7vCI5DkY_0d1rPMuKUmbL4ePAyUVrKvwFtU5CtM,17489
156
154
  webscout/Provider/OPENAI/__init__.py,sha256=EwtLtQs6VEpLFOBeXi9hC9FTJIJdHPZTZtu3iFFqhP0,1210
@@ -194,7 +192,7 @@ webscout/Provider/TTI/README.md,sha256=Qc9uXdEV2tGB6PyaM-HsLu_FZ7NcxHjGBwsNM5Gd0
194
192
  webscout/Provider/TTI/__init__.py,sha256=EwtLtQs6VEpLFOBeXi9hC9FTJIJdHPZTZtu3iFFqhP0,1210
195
193
  webscout/Provider/TTI/aiarta.py,sha256=aWIATT_xQU7AmH3rK9mDCrUyN_7yOqkpXFPKicrGKfY,14956
196
194
  webscout/Provider/TTI/base.py,sha256=SnNs-mJH8tcmcygNnfNtwPvWBk11FUO6nLTfnHnZADQ,5088
197
- webscout/Provider/TTI/bing.py,sha256=kPCkKwi7XgOxtkgUFDukJhonISfLDK4f6KDPduEjoP0,10640
195
+ webscout/Provider/TTI/bing.py,sha256=wzUtAprlptlvuA3wndn3i-5UBQIL-YSe8rmjhqb1T-Q,10632
198
196
  webscout/Provider/TTI/gpt1image.py,sha256=PKqc0JU7hweypnSooI7gWuXqJbKz52xfGQny90-Uin0,4831
199
197
  webscout/Provider/TTI/imagen.py,sha256=VtSTJzTao4oUje4viEuYbcAw2Fol-JhBPax3XeXuByM,6488
200
198
  webscout/Provider/TTI/infip.py,sha256=qAzcym5hyxHyuW5PFqcWN__ebs5s9wLCADakO_28aD4,7083
@@ -232,34 +230,18 @@ webscout/Provider/UNFINISHED/liner_api_request.py,sha256=13-38YyFMUyjaJQcdfsJC-W
232
230
  webscout/Provider/UNFINISHED/puterjs.py,sha256=jpTfTh8QWDqeDU3KO0OwAyLborGiPyAYH-v1bz34ekA,27591
233
231
  webscout/Provider/UNFINISHED/samurai.py,sha256=nw17DIz8DrgodhhekHRhO6mVqhor-2KmTTnLdBz6X3I,8223
234
232
  webscout/Provider/UNFINISHED/test_lmarena.py,sha256=JvN1Yr9E4sdrSuUcfKnR1fEtisp0oQkswRMTSBHn9wI,3734
235
- webscout/auth/__init__.py,sha256=tcgG2dottPjoBRSLMFx7fHl4C0zSssWbkaLW0JNF3Z0,1848
236
- webscout/auth/api_key_manager.py,sha256=a3F4d2r7h3GqV-wxNj2vNLkU9o0-ld-XU9udt_CQL0g,6954
237
- webscout/auth/auth_system.py,sha256=Uyqa9-IOOYIC_qvU5Mc5LwQM16rFHJJ5F-715VdMlGg,2926
238
- webscout/auth/config.py,sha256=kYZ7Dnul_P16wMSlfNem9nkSeY8Hh-plJrcUA0of2q4,6947
239
- webscout/auth/database.py,sha256=Q0thfSnTg8IXrAUQkpD-9CXhV6OBzrmwdnIHtc2I51o,30076
240
- webscout/auth/exceptions.py,sha256=FGqNLQmjv2i3Jk_P3csJzT4qkmVdBMdH7vFkM37Xa3Y,2048
241
- webscout/auth/middleware.py,sha256=zSQBIt0LacbeyNjwRIfnO-tdE7-p0w77UkPd7aUTri0,9863
242
- webscout/auth/models.py,sha256=gL7R1iazFM2-y1wiiOqxhmnrWfNMJcE5TlSQvSjj0-Q,7162
243
- webscout/auth/providers.py,sha256=gE0zKl8gwCD2P0e16y6YnbhmBM1qut0wKwAk5jmt8LI,11646
244
- webscout/auth/rate_limiter.py,sha256=8l1CpUY5YkY8SPHvZxL2SejAkO93uNklwQeSbjRxU5A,9925
245
- webscout/auth/request_models.py,sha256=hgo0AZ5CknEWCmZ4KBMs8T0xjmtlecbk645yU622Ujs,5804
246
- webscout/auth/request_processing.py,sha256=UB2JykZ98Acxd67VtFsLGOT9UwwwPQ8OeXzc9fkOrp4,17232
247
- webscout/auth/routes.py,sha256=vow4T86229Y59vHLhsi5qRNGWQpFh1srZ37Ies637Yw,30188
248
- webscout/auth/schemas.py,sha256=fu3-V9F0n5AZ65A-fGGiBiuQcwk1Ec3urO7N30Nv90o,4577
249
- webscout/auth/server.py,sha256=-_KTByk7CMgsEeXPlCT4xuLYzC2ae1NiFCStGQr-ytc,13850
250
- webscout/auth/simple_logger.py,sha256=Tcj6HdfvUxQTF1SU-IPXlLjaLKSLeoFm9b0RN8_csT8,8264
251
233
  webscout/litagent/Readme.md,sha256=kwBG41HOjACdLfwJbluSyePc0RueITffwfplDEd2JJ0,7265
252
234
  webscout/litagent/__init__.py,sha256=rJCD_8ytXnUXMtNXG6O7nOnDHks8dbucf7S4WO7i7Go,854
253
235
  webscout/litagent/agent.py,sha256=dOXqdWq8Cdko2FX_CY3gg5IYBeq53DrkU5iFuAy5mHU,24045
254
236
  webscout/litagent/constants.py,sha256=uEx60lV6XKtY1yPOgl7mo4CaP0HAlfdoVjDaiPzmlHE,2116
255
- webscout/litprinter/__init__.py,sha256=iBYLF0IapDD7piPbNsBHWshg0WQWyP4EvodEPrP3lwI,2452
256
- webscout/scout/README.md,sha256=wZmPsrlUwHy7IaWzd9v9c8ATwPf509JXWE9SGb4x_-w,12218
237
+ webscout/litprinter/__init__.py,sha256=ggBHU4rFpQyaiX-flGdJW9R7eE_C5NWiOm8QCcC_uSQ,712
238
+ webscout/scout/README.md,sha256=n8hRiCr8Y2u68p0G3DoR-RV54HWuopH4KpCjKfbZL00,14146
257
239
  webscout/scout/__init__.py,sha256=C-uYGqVR7iiScetSxUTHc76i0OLQnWJO7WFTfhgafW4,325
258
- webscout/scout/element.py,sha256=UVRt_2vZgfxmvVrjqMhaCNVzULbyWqTyIyhOznDVJ4k,19469
240
+ webscout/scout/element.py,sha256=OmTdWBcVPMs1ox5c5vvqfpljw22fhZJ8YCmhozWKq10,27741
259
241
  webscout/scout/utils.py,sha256=I7ag7oeaUn07Q8vccGQpgJG9qEnpczvJ2Xh0K9z5NKw,969
260
242
  webscout/scout/core/__init__.py,sha256=Ujr53szROD5gAvi3ZDCa3OufJNIN1eCHqLmsbKxpwDw,290
261
243
  webscout/scout/core/crawler.py,sha256=QDVsqhTFGHt3YsGrJ6stSUgnYolQN_8Y0HFu3MxrUCs,10388
262
- webscout/scout/core/scout.py,sha256=7Y8fDyuX5zgDmvvU5Ln95EG6pCHrpJpAeQEcWJCsNnY,23698
244
+ webscout/scout/core/scout.py,sha256=IfN6ekpQB1zgLCcVlbdwGQruu7g8yLPYxaq_bz3_MMk,25756
263
245
  webscout/scout/core/search_result.py,sha256=SbNOkDB10uu4LCZraFDOoXmsXveS1mz79NGbNeUnJh0,2862
264
246
  webscout/scout/core/text_analyzer.py,sha256=QwLnCPM9hDhq9vDcJHWpW1qH6MGzmUYnLz7j6JMNG3A,1784
265
247
  webscout/scout/core/text_utils.py,sha256=HifZXsCAvpnLVFztGP1wDeYVmlEwfW-KXmU4e0-fyEo,10536
@@ -268,37 +250,62 @@ webscout/scout/parsers/__init__.py,sha256=a0gysttcAnIxfY8UBbkNJdmMHEhfeI9VmfnQGZ
268
250
  webscout/scout/parsers/html5lib_parser.py,sha256=VRCQIDh7Z9XbS8-zSOsmRtR2Oyx_DEz85hjRvabBQ2Y,5627
269
251
  webscout/scout/parsers/html_parser.py,sha256=OxQcFYjK-cWduKAbcxqChfRvKgqNjPqfN1Uit_dkJwQ,6792
270
252
  webscout/scout/parsers/lxml_parser.py,sha256=fDaxFuBSlU9x5hH5nDj5BHd72r9XHZ24Z5lt6FYPt_8,6053
271
- webscout/search/__init__.py,sha256=YIHUd2oFUulK4x1TCrkgkAazuPOaYSjlUtVwoR8B3lI,1054
253
+ webscout/search/__init__.py,sha256=0XpynvIDRPbO73aGYNr36PKEhjloWsmf5mA5WB6qIPA,958
272
254
  webscout/search/base.py,sha256=IFBHh0s-b3SXXDbi5cCzqwepnsoVVUTn2XfXX2iGUqE,6817
255
+ webscout/search/bing_main.py,sha256=NAhM1rgbDOo5QEWLdNulGJ-9CVaSmYn3JhM3Jj7AZ58,2008
273
256
  webscout/search/duckduckgo_main.py,sha256=LL3ROo9iJS7S791JTfmN3-0zxnKAoTYFjCKDDCiRjOU,3531
274
- webscout/search/http_client.py,sha256=mL5WaKrItu0hLzK-sTK99yKuAjw0iwBYs1w6911yWUU,5140
257
+ webscout/search/http_client.py,sha256=HOUuC1iE1kvnR-NJYNWSNSYBKt8lAX6AGacKOmCHI7k,5114
275
258
  webscout/search/results.py,sha256=HM8Cf6DW8ET2yqbb3piaTa07ciox4f917pvKZli2EgU,3301
259
+ webscout/search/yahoo_main.py,sha256=RW_Zm_-5kxAfAShMwwS2eRTAX_Fzp3fH6uf2OmK2sHE,2798
276
260
  webscout/search/yep_main.py,sha256=SNh4Wu8cnMA21xeC13ZWK0ConY_dfAMcpnfedYdZRJE,1933
277
261
  webscout/search/engines/__init__.py,sha256=TzO5GqdlhquqOW9o-QFVuXdrnX99TEsJlcTNtuhA8VU,1615
278
- webscout/search/engines/bing.py,sha256=b3QYYfQ-iPO_ZCPjAqv5WsUlwekv77xUH4WdckGbTt4,2864
279
- webscout/search/engines/bing_news.py,sha256=P4LpegM-RcSM0j7MkqJnU73m7nye779nS9qZ6_LebDM,1619
280
262
  webscout/search/engines/brave.py,sha256=iO2KMFARt8QMZmbL2BHV5HZmAiFTFmOMAUkpr4ridcA,1337
281
263
  webscout/search/engines/mojeek.py,sha256=i86JB6n2lPaRMaYSqIj2EOo4KHnJICWJK-plRj-oudc,1097
282
264
  webscout/search/engines/wikipedia.py,sha256=tM4OI7UKFtRBcQqwgcm0y_uNqn8JVLKxVzTdixlZ7bU,1769
283
- webscout/search/engines/yahoo.py,sha256=69cxr7X9xpD2cUzI0TbD_ZsjSuUrcFfHiEvZDGnSztk,2018
284
- webscout/search/engines/yahoo_news.py,sha256=iiiy0Z8ZGruU8SvkW5bsM_BOpUFo6epWyFTG08ufSNs,1956
285
265
  webscout/search/engines/yandex.py,sha256=hjWn4I-ZYaKkLtX6816d2sxmBDM4O9zCHzjnf6byfio,1190
266
+ webscout/search/engines/bing/__init__.py,sha256=bhKvLliFzwEbHqjMISkC6L-VvBNyi0_PhgVaV-Jdw98,26
267
+ webscout/search/engines/bing/base.py,sha256=dRPtSmrPlmfPkfkYWyVrDGSM3btLP7fB48gNPCAo8JU,915
268
+ webscout/search/engines/bing/images.py,sha256=wXEF2H-BmKjCOE4J0LnbEHbHaF1o5nPKt2M5FAIHtto,3365
269
+ webscout/search/engines/bing/news.py,sha256=N8DhSnHCaftAW1oftp8LR7uIWyIV2XnlxG5u2xKeoEI,2852
270
+ webscout/search/engines/bing/suggestions.py,sha256=U7v0hjthChZ8D6JMNYw9nOa5NsCqo4GsUfFT3CQP4Uk,1042
271
+ webscout/search/engines/bing/text.py,sha256=Op936jpQMd_Jr4CrhlJeEtZZq1-tIUfbI2RUmiCiF1U,3994
286
272
  webscout/search/engines/duckduckgo/__init__.py,sha256=IWa20CNW1IIyi86cXjuyqhm8famhUFUPH7Aiuly0bU4,685
287
273
  webscout/search/engines/duckduckgo/answers.py,sha256=amdVAZujdeokzQm0XsQ0187hdNc44J14XCAVDzvSebM,2432
288
274
  webscout/search/engines/duckduckgo/base.py,sha256=1GzmQhWjHMPc_U57Cyd1YuM303CtrnH0UIy7yQx-MHg,6387
289
275
  webscout/search/engines/duckduckgo/images.py,sha256=6HOZpZt29zVaQJ8iLUgsfsymuml49U5fEJuh17lc5Ss,3883
290
- webscout/search/engines/duckduckgo/maps.py,sha256=YH8f3j2PsxO-fo9_Q_WEXeCzo2VofRxugNZLTg0xY4s,7229
276
+ webscout/search/engines/duckduckgo/maps.py,sha256=Ml_BnfTCRv6jFMSMvWNzH1kUSCkGYnowwmYeGYxH_qA,7786
291
277
  webscout/search/engines/duckduckgo/news.py,sha256=n65lWT05z-WxuZ5go2tiPEfhmyCDujEVE0eExdQk58s,2511
292
278
  webscout/search/engines/duckduckgo/suggestions.py,sha256=sYiQ_hAEzyRwxVm8Syp1P4AJOdJrCPFYnFhkyvndHH8,674
293
279
  webscout/search/engines/duckduckgo/text.py,sha256=yY39dnCN7_0WlFNqqYvHVqfUBd-4XzjBpNif3aWqKZc,8038
294
280
  webscout/search/engines/duckduckgo/translate.py,sha256=J3QVBkJsqw-yZD7Arx_bNFN-jNcj1i26VxnGNB0zk_g,1379
295
281
  webscout/search/engines/duckduckgo/videos.py,sha256=K6VRDC0EcNDvdMbx7rIRrb8mgKaJuUl_U5GfPxStbT4,2503
296
282
  webscout/search/engines/duckduckgo/weather.py,sha256=iYwKkaT8VL3pVp91mDX5CpRgRcF7VZy8KhXeCh9J96Q,3401
283
+ webscout/search/engines/yahoo/__init__.py,sha256=v3QcSUqotOxFP6KWWHrUtewrI0vHyiq5lmKQPnYDhhI,1093
284
+ webscout/search/engines/yahoo/answers.py,sha256=QT_NfK2yhn-2iWagXd_BK1Y93hQkwjEQ_RDnSxA-3iQ,390
285
+ webscout/search/engines/yahoo/base.py,sha256=Kf-xJmZ1vSL8_qGKv3eoEe_LFv4dogmCZEHjJFI7fBE,1061
286
+ webscout/search/engines/yahoo/images.py,sha256=Whvtw83CK3o9dNJvO_K0F0qYRqZrRc9lyXX_A0iKUfc,9928
287
+ webscout/search/engines/yahoo/maps.py,sha256=4zQXCEPYMZ4BxfL3J_OaiIWGulu5lVbI24SGTGsrnsY,373
288
+ webscout/search/engines/yahoo/news.py,sha256=8M8hQ6KJ8DLf-DryE8PiuE-Nw_lwwxN0R5eGPVGgOLw,7443
289
+ webscout/search/engines/yahoo/suggestions.py,sha256=pG8i9F9TG1RFyG2eEUQUsnmOhsfCyVHlXadMwZln2WY,3863
290
+ webscout/search/engines/yahoo/text.py,sha256=ftd62I9LAdkspSAym6t5wwxdGmFhROpLUY51shaIv9U,8286
291
+ webscout/search/engines/yahoo/translate.py,sha256=dGfun-lW4mW6pkVV4smSWt6SWb-0HoKVTBto_Bor_og,382
292
+ webscout/search/engines/yahoo/videos.py,sha256=0SxVv5RIKIrwp0WSfs6CY7EAzJMHYNGWLTCTAhYAxoQ,9083
293
+ webscout/search/engines/yahoo/weather.py,sha256=q4kSB-D9XycBAMROrS_d1yrcX_eYYKVznjvv0AG0awQ,9172
297
294
  webscout/search/engines/yep/__init__.py,sha256=2LCKP-5DUxE_iFaaBAbviD6fqAeKvKojn1G7nntLxjc,266
298
295
  webscout/search/engines/yep/base.py,sha256=05PkYCx5_ltgwbn-RhUAx6QSq2IcnWPjIhqXNaZE_eM,828
299
296
  webscout/search/engines/yep/images.py,sha256=vT4Tn1C-3UGH69DgyxVxrJLZwvWZPXs3SPXHjbgtzvk,3228
300
297
  webscout/search/engines/yep/suggestions.py,sha256=vv_upKlhFTHotNGDluMgKLxJ23Fm0MHYwfWPVS6rkZY,1085
301
298
  webscout/search/engines/yep/text.py,sha256=OpSJFW0sos99g6HYcUI-RySfi2ryj61RTF8FZkkyhAQ,3790
299
+ webscout/server/__init__.py,sha256=lXm3AO5GPe6-_CzZ5RxiG5X9AmSAXDUEjuCTnNKPerM,1293
300
+ webscout/server/config.py,sha256=05yQfddXNnjC8TmLV5ny57AkljJkeHA46HzbhFXlT5A,3086
301
+ webscout/server/exceptions.py,sha256=FGqNLQmjv2i3Jk_P3csJzT4qkmVdBMdH7vFkM37Xa3Y,2048
302
+ webscout/server/providers.py,sha256=gE0zKl8gwCD2P0e16y6YnbhmBM1qut0wKwAk5jmt8LI,11646
303
+ webscout/server/request_models.py,sha256=hgo0AZ5CknEWCmZ4KBMs8T0xjmtlecbk645yU622Ujs,5804
304
+ webscout/server/request_processing.py,sha256=9VkOB4g6OlWw9k6AEGZdeQNSHr6RCSJhr5N0fxe7lYk,16204
305
+ webscout/server/routes.py,sha256=vgkHlowNjX7PQx4Yhm89JwtL7BdGv_DxuFZLkbmij4A,22566
306
+ webscout/server/schemas.py,sha256=_FWsWwibXY4TzL4mhsL_-SyAwhJYeAcyRk00NzJZYlM,720
307
+ webscout/server/server.py,sha256=w1si2jVGwNsgrnUKp8CMRdRFj0tzk1ku1KBpRr1kXt4,12095
308
+ webscout/server/simple_logger.py,sha256=nw5GDuuYQ51PPWI2mHA8uBiFa2hqlCLu-nEBn2q9H78,2340
302
309
  webscout/swiftcli/Readme.md,sha256=ifqIIM1455tOGXqf_jQvT_toeIugpVF6lzrZiQjkkq4,7295
303
310
  webscout/swiftcli/__init__.py,sha256=goKgkz5USas833EhzpepEDB8b4uQBCunma9gLtGIRt4,1769
304
311
  webscout/swiftcli/exceptions.py,sha256=gjcpH7H-CO-pWU94AJE04tr02_BUJxmorhqu5VJ9AMo,508
@@ -316,14 +323,14 @@ webscout/swiftcli/plugins/manager.py,sha256=UlSk8j_pA38hsOIUR_G12CrB4OZ_7mtkTSG-
316
323
  webscout/swiftcli/utils/__init__.py,sha256=pF_Iva6sYD__gPFOjQjJ0Tpj2XYlkqL297VvMjvxauE,1055
317
324
  webscout/swiftcli/utils/formatting.py,sha256=5t7IlbMbsj2VvF42ehC6Zk_i4CVbIVemKfpJbcimXiw,5361
318
325
  webscout/swiftcli/utils/parsing.py,sha256=1jyVr914h-eNjN3YSnBOrxFjBwHZiq_FLNKuVfJinp4,7026
319
- webscout/zeroart/README.md,sha256=zSHLnjAT6zJqRSCQYTwt5aNcg7NrYDKqmEzVnSNr__Y,1970
320
- webscout/zeroart/__init__.py,sha256=Rg2jc6cfpmvKzmtIq3aNOKQH2I5d8GqLybtGNr1VQQY,3979
326
+ webscout/zeroart/README.md,sha256=BZ3OI9KFzwxVZgAix5mmiTETYKOdWPq_Ub6Ckdx6j8E,2425
327
+ webscout/zeroart/__init__.py,sha256=Cy9AUtXnOaFBQjNvCpN19IXJo7Lg15VTaNcTBxOTFek,6400
321
328
  webscout/zeroart/base.py,sha256=I-xhDEfArBb6q7hiF5oPoyXeu2hzL6orp7uWgS_YtG8,2299
322
- webscout/zeroart/effects.py,sha256=yxv6xRDxVU0FHhUdzamVv0eA_d8a8ckCDAitXQMhVZU,3245
323
- webscout/zeroart/fonts.py,sha256=FsuVQZL28Gi30NB5QPPjwUhC8sQt7vKJDMeu6km7N-I,37574
324
- webscout-2025.10.14.1.dist-info/licenses/LICENSE.md,sha256=hyfFlVn7pWcrvuvs-piB8k4J8DlXdOsYje9RyPxc6Ik,7543
325
- webscout-2025.10.14.1.dist-info/METADATA,sha256=P1bzQYO1mrvz883LUCpnusUW1F3zid2EYjjn8JiRLtI,32310
326
- webscout-2025.10.14.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
327
- webscout-2025.10.14.1.dist-info/entry_points.txt,sha256=WooZuMBei-kQl5qByoRMkc2cHsaDL1Jd2_tSYsNiUGg,116
328
- webscout-2025.10.14.1.dist-info/top_level.txt,sha256=nYIw7OKBQDr_Z33IzZUKidRD3zQEo8jOJYkMVMeN334,9
329
- webscout-2025.10.14.1.dist-info/RECORD,,
329
+ webscout/zeroart/effects.py,sha256=XUNZY1-wMPd6GNL3glFXtWaF9wDis_z55qTyCdnzHDo,5063
330
+ webscout/zeroart/fonts.py,sha256=S7qDhUmDXl1makMreZl_eVW_7-sqVQiGn-kQKl0Hg_A,51006
331
+ webscout-2025.10.16.dist-info/licenses/LICENSE.md,sha256=hyfFlVn7pWcrvuvs-piB8k4J8DlXdOsYje9RyPxc6Ik,7543
332
+ webscout-2025.10.16.dist-info/METADATA,sha256=1jpCGVNGZrYgLltqLS8-vUlre_bLwQdq_O5XT4XljKQ,21690
333
+ webscout-2025.10.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
334
+ webscout-2025.10.16.dist-info/entry_points.txt,sha256=4xAgKHWwNhAvJyShLCFs_IU8Reb8zR3wqf8egrsDr8g,118
335
+ webscout-2025.10.16.dist-info/top_level.txt,sha256=nYIw7OKBQDr_Z33IzZUKidRD3zQEo8jOJYkMVMeN334,9
336
+ webscout-2025.10.16.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  [console_scripts]
2
2
  WEBS = webscout.cli:main
3
3
  webscout = webscout.cli:main
4
- webscout-server = webscout.auth.server:main
4
+ webscout-server = webscout.server.server:main