webscout 8.2.6__tar.gz → 8.2.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.

Files changed (373) hide show
  1. webscout-8.2.8/LEGAL_NOTICE.md +152 -0
  2. webscout-8.2.8/MANIFEST.in +12 -0
  3. {webscout-8.2.6/webscout.egg-info → webscout-8.2.8}/PKG-INFO +116 -74
  4. {webscout-8.2.6 → webscout-8.2.8}/README.md +109 -55
  5. webscout-8.2.8/changelog.md +0 -0
  6. webscout-8.2.8/pyproject.toml +122 -0
  7. {webscout-8.2.6 → webscout-8.2.8}/webscout/AIauto.py +1 -1
  8. webscout-8.2.8/webscout/AIutel.py +299 -0
  9. webscout-8.2.8/webscout/Extra/Act.md +309 -0
  10. webscout-8.2.8/webscout/Extra/GitToolkit/gitapi/README.md +110 -0
  11. webscout-8.2.8/webscout/Extra/YTToolkit/README.md +375 -0
  12. webscout-8.2.8/webscout/Extra/YTToolkit/ytapi/README.md +44 -0
  13. webscout-8.2.8/webscout/Extra/YTToolkit/ytapi/extras.py +118 -0
  14. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/autocoder/autocoder.py +309 -114
  15. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/autocoder/autocoder_utiles.py +15 -15
  16. webscout-8.2.8/webscout/Extra/gguf.md +430 -0
  17. webscout-8.2.8/webscout/Extra/tempmail/README.md +488 -0
  18. webscout-8.2.8/webscout/Extra/weather.md +281 -0
  19. webscout-8.2.8/webscout/Litlogger/Readme.md +175 -0
  20. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/DeepFind.py +41 -37
  21. webscout-8.2.8/webscout/Provider/AISEARCH/README.md +279 -0
  22. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/__init__.py +0 -1
  23. webscout-8.2.8/webscout/Provider/AISEARCH/genspark_search.py +350 -0
  24. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/hika_search.py +11 -11
  25. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/scira_search.py +324 -322
  26. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AllenAI.py +7 -14
  27. webscout-8.2.8/webscout/Provider/Blackboxai.py +673 -0
  28. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Cloudflare.py +0 -1
  29. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Deepinfra.py +23 -21
  30. webscout-8.2.8/webscout/Provider/Flowith.py +217 -0
  31. webscout-8.2.8/webscout/Provider/FreeGemini.py +250 -0
  32. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/GizAI.py +15 -5
  33. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Glider.py +11 -8
  34. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/HeckAI.py +80 -52
  35. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Koboldai.py +7 -4
  36. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/LambdaChat.py +2 -2
  37. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Marcus.py +10 -18
  38. webscout-8.2.8/webscout/Provider/OPENAI/BLACKBOXAI.py +735 -0
  39. webscout-8.2.8/webscout/Provider/OPENAI/Cloudflare.py +378 -0
  40. webscout-8.2.8/webscout/Provider/OPENAI/FreeGemini.py +282 -0
  41. webscout-8.2.8/webscout/Provider/OPENAI/NEMOTRON.py +244 -0
  42. webscout-8.2.8/webscout/Provider/OPENAI/README.md +1253 -0
  43. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/__init__.py +8 -0
  44. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/ai4chat.py +293 -286
  45. webscout-8.2.8/webscout/Provider/OPENAI/api.py +810 -0
  46. webscout-8.2.8/webscout/Provider/OPENAI/base.py +249 -0
  47. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/c4ai.py +373 -367
  48. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/chatgpt.py +7 -0
  49. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/chatgptclone.py +7 -0
  50. webscout-8.2.8/webscout/Provider/OPENAI/chatsandbox.py +172 -0
  51. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/deepinfra.py +30 -20
  52. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/e2b.py +6 -0
  53. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/exaai.py +7 -0
  54. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/exachat.py +6 -0
  55. webscout-8.2.8/webscout/Provider/OPENAI/flowith.py +162 -0
  56. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/freeaichat.py +359 -352
  57. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/glider.py +323 -316
  58. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/groq.py +361 -354
  59. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/heckai.py +30 -64
  60. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/llmchatco.py +8 -0
  61. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/mcpcore.py +7 -0
  62. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/multichat.py +8 -0
  63. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/netwrck.py +356 -350
  64. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/opkfc.py +8 -0
  65. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/scirachat.py +471 -462
  66. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/sonus.py +9 -0
  67. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/standardinput.py +9 -1
  68. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/textpollinations.py +339 -329
  69. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/toolbaz.py +7 -0
  70. webscout-8.2.8/webscout/Provider/OPENAI/typefully.py +355 -0
  71. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/typegpt.py +358 -346
  72. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/uncovrAI.py +7 -0
  73. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/utils.py +103 -7
  74. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/venice.py +12 -0
  75. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/wisecat.py +19 -19
  76. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/writecream.py +7 -0
  77. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/x0gpt.py +7 -0
  78. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OPENAI/yep.py +50 -21
  79. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OpenGPT.py +1 -1
  80. webscout-8.2.8/webscout/Provider/TTI/AiForce/README.md +159 -0
  81. webscout-8.2.8/webscout/Provider/TTI/FreeAIPlayground/README.md +99 -0
  82. webscout-8.2.8/webscout/Provider/TTI/ImgSys/README.md +174 -0
  83. webscout-8.2.8/webscout/Provider/TTI/MagicStudio/README.md +101 -0
  84. webscout-8.2.8/webscout/Provider/TTI/Nexra/README.md +155 -0
  85. webscout-8.2.8/webscout/Provider/TTI/PollinationsAI/README.md +146 -0
  86. webscout-8.2.8/webscout/Provider/TTI/README.md +128 -0
  87. webscout-8.2.8/webscout/Provider/TTI/aiarta/README.md +134 -0
  88. webscout-8.2.8/webscout/Provider/TTI/artbit/README.md +100 -0
  89. webscout-8.2.8/webscout/Provider/TTI/fastflux/README.md +129 -0
  90. webscout-8.2.8/webscout/Provider/TTI/huggingface/README.md +114 -0
  91. webscout-8.2.8/webscout/Provider/TTI/piclumen/README.md +161 -0
  92. webscout-8.2.8/webscout/Provider/TTI/pixelmuse/README.md +79 -0
  93. webscout-8.2.8/webscout/Provider/TTI/talkai/README.md +139 -0
  94. webscout-8.2.8/webscout/Provider/TTS/README.md +192 -0
  95. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/__init__.py +2 -1
  96. webscout-8.2.8/webscout/Provider/TTS/speechma.py +580 -0
  97. webscout-8.2.8/webscout/Provider/TTS/sthir.py +94 -0
  98. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TeachAnything.py +3 -7
  99. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TextPollinationsAI.py +4 -2
  100. webscout-8.2.6/webscout/Provider/aimathgpt.py → webscout-8.2.8/webscout/Provider/UNFINISHED/ChatHub.py +88 -68
  101. webscout-8.2.8/webscout/Provider/UNFINISHED/liner_api_request.py +263 -0
  102. webscout-8.2.8/webscout/Provider/UNFINISHED/oivscode.py +351 -0
  103. webscout-8.2.8/webscout/Provider/UNFINISHED/test_lmarena.py +119 -0
  104. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Writecream.py +11 -2
  105. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/__init__.py +8 -14
  106. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ai4chat.py +4 -58
  107. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/asksteve.py +17 -9
  108. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/cerebras.py +3 -1
  109. webscout-8.2.8/webscout/Provider/koala.py +170 -0
  110. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/llmchat.py +3 -0
  111. webscout-8.2.8/webscout/Provider/lmarena.py +198 -0
  112. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/meta.py +7 -4
  113. webscout-8.2.8/webscout/Provider/samurai.py +223 -0
  114. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/scira_chat.py +4 -2
  115. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/typefully.py +23 -151
  116. {webscout-8.2.6 → webscout-8.2.8}/webscout/__init__.py +4 -2
  117. {webscout-8.2.6 → webscout-8.2.8}/webscout/cli.py +3 -28
  118. {webscout-8.2.6 → webscout-8.2.8}/webscout/conversation.py +35 -35
  119. webscout-8.2.8/webscout/litagent/Readme.md +276 -0
  120. webscout-8.2.8/webscout/scout/README.md +402 -0
  121. webscout-8.2.8/webscout/swiftcli/Readme.md +323 -0
  122. webscout-8.2.8/webscout/version.py +2 -0
  123. {webscout-8.2.6 → webscout-8.2.8}/webscout/webscout_search.py +2 -182
  124. {webscout-8.2.6 → webscout-8.2.8}/webscout/webscout_search_async.py +1 -179
  125. webscout-8.2.8/webscout/zeroart/README.md +89 -0
  126. webscout-8.2.8/webscout/zeroart/__init__.py +135 -0
  127. {webscout-8.2.6 → webscout-8.2.8}/webscout/zeroart/base.py +19 -13
  128. {webscout-8.2.6 → webscout-8.2.8}/webscout/zeroart/effects.py +101 -99
  129. {webscout-8.2.6 → webscout-8.2.8}/webscout/zeroart/fonts.py +1239 -816
  130. {webscout-8.2.6 → webscout-8.2.8/webscout.egg-info}/PKG-INFO +116 -74
  131. webscout-8.2.8/webscout.egg-info/SOURCES.txt +668 -0
  132. webscout-8.2.8/webscout.egg-info/entry_points.txt +3 -0
  133. {webscout-8.2.6 → webscout-8.2.8}/webscout.egg-info/requires.txt +6 -4
  134. webscout-8.2.8/webscout.egg-info/top_level.txt +1 -0
  135. webscout-8.2.6/setup.py +0 -94
  136. webscout-8.2.6/webscout/AIutel.py +0 -240
  137. webscout-8.2.6/webscout/Extra/YTToolkit/ytapi/extras.py +0 -45
  138. webscout-8.2.6/webscout/Provider/AISEARCH/ISou.py +0 -256
  139. webscout-8.2.6/webscout/Provider/AISEARCH/genspark_search.py +0 -208
  140. webscout-8.2.6/webscout/Provider/Blackboxai.py +0 -229
  141. webscout-8.2.6/webscout/Provider/ElectronHub.py +0 -773
  142. webscout-8.2.6/webscout/Provider/Free2GPT.py +0 -241
  143. webscout-8.2.6/webscout/Provider/GPTWeb.py +0 -249
  144. webscout-8.2.6/webscout/Provider/OPENAI/base.py +0 -46
  145. webscout-8.2.6/webscout/Provider/TTS/speechma.py +0 -180
  146. webscout-8.2.6/webscout/Provider/bagoodex.py +0 -145
  147. webscout-8.2.6/webscout/Provider/geminiprorealtime.py +0 -160
  148. webscout-8.2.6/webscout/Provider/koala.py +0 -268
  149. webscout-8.2.6/webscout/scout/core.py +0 -881
  150. webscout-8.2.6/webscout/version.py +0 -2
  151. webscout-8.2.6/webscout/zeroart/__init__.py +0 -55
  152. webscout-8.2.6/webscout.egg-info/SOURCES.txt +0 -310
  153. webscout-8.2.6/webscout.egg-info/entry_points.txt +0 -3
  154. webscout-8.2.6/webscout.egg-info/top_level.txt +0 -2
  155. webscout-8.2.6/webstoken/__init__.py +0 -30
  156. webscout-8.2.6/webstoken/classifier.py +0 -189
  157. webscout-8.2.6/webstoken/keywords.py +0 -216
  158. webscout-8.2.6/webstoken/language.py +0 -128
  159. webscout-8.2.6/webstoken/ner.py +0 -164
  160. webscout-8.2.6/webstoken/normalizer.py +0 -35
  161. webscout-8.2.6/webstoken/processor.py +0 -77
  162. webscout-8.2.6/webstoken/sentiment.py +0 -206
  163. webscout-8.2.6/webstoken/stemmer.py +0 -73
  164. webscout-8.2.6/webstoken/tagger.py +0 -60
  165. webscout-8.2.6/webstoken/tokenizer.py +0 -158
  166. {webscout-8.2.6 → webscout-8.2.8}/LICENSE.md +0 -0
  167. {webscout-8.2.6 → webscout-8.2.8}/setup.cfg +0 -0
  168. {webscout-8.2.6 → webscout-8.2.8}/webscout/AIbase.py +0 -0
  169. {webscout-8.2.6 → webscout-8.2.8}/webscout/Bard.py +0 -0
  170. {webscout-8.2.6 → webscout-8.2.8}/webscout/DWEBS.py +0 -0
  171. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/GitToolkit/__init__.py +0 -0
  172. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/GitToolkit/gitapi/__init__.py +0 -0
  173. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/GitToolkit/gitapi/repository.py +0 -0
  174. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/GitToolkit/gitapi/user.py +0 -0
  175. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/GitToolkit/gitapi/utils.py +0 -0
  176. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
  177. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/__init__.py +0 -0
  178. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/transcriber.py +0 -0
  179. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  180. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  181. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  182. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  183. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  184. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  185. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  186. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  187. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  188. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  189. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
  190. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/__init__.py +0 -0
  191. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/autocoder/__init__.py +0 -0
  192. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/gguf.py +0 -0
  193. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/__init__.py +0 -0
  194. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/async_utils.py +0 -0
  195. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/base.py +0 -0
  196. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/cli.py +0 -0
  197. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/emailnator.py +0 -0
  198. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/mail_tm.py +0 -0
  199. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/tempmail/temp_mail_io.py +0 -0
  200. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/weather.py +0 -0
  201. {webscout-8.2.6 → webscout-8.2.8}/webscout/Extra/weather_ascii.py +0 -0
  202. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/__init__.py +0 -0
  203. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/core/__init__.py +0 -0
  204. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/core/level.py +0 -0
  205. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/core/logger.py +0 -0
  206. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/handlers/__init__.py +0 -0
  207. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/handlers/console.py +0 -0
  208. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/handlers/file.py +0 -0
  209. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/handlers/network.py +0 -0
  210. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/styles/__init__.py +0 -0
  211. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/styles/colors.py +0 -0
  212. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/styles/formats.py +0 -0
  213. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/styles/text.py +0 -0
  214. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/utils/__init__.py +0 -0
  215. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/utils/detectors.py +0 -0
  216. {webscout-8.2.6 → webscout-8.2.8}/webscout/Litlogger/utils/formatters.py +0 -0
  217. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AI21.py +0 -0
  218. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/Perplexity.py +0 -0
  219. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  220. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/iask_search.py +0 -0
  221. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/monica_search.py +0 -0
  222. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/AISEARCH/webpilotai_search.py +0 -0
  223. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Aitopia.py +0 -0
  224. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Andi.py +0 -0
  225. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ChatGPTClone.py +0 -0
  226. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ChatGPTGratis.py +0 -0
  227. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ChatSandbox.py +0 -0
  228. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Cohere.py +0 -0
  229. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ExaAI.py +0 -0
  230. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/ExaChat.py +0 -0
  231. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Gemini.py +0 -0
  232. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/GithubChat.py +0 -0
  233. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Groq.py +0 -0
  234. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/HF_space/__init__.py +0 -0
  235. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
  236. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/HuggingFaceChat.py +0 -0
  237. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Hunyuan.py +0 -0
  238. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Jadve.py +0 -0
  239. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Llama3.py +0 -0
  240. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/MCPCore.py +0 -0
  241. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Nemotron.py +0 -0
  242. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Netwrck.py +0 -0
  243. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/OLLAMA.py +0 -0
  244. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Openai.py +0 -0
  245. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/PI.py +0 -0
  246. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Perplexitylabs.py +0 -0
  247. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/QwenLM.py +0 -0
  248. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Reka.py +0 -0
  249. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/StandardInput.py +0 -0
  250. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
  251. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
  252. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
  253. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
  254. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
  255. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
  256. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/ImgSys/__init__.py +0 -0
  257. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -0
  258. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -0
  259. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/MagicStudio/__init__.py +0 -0
  260. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -0
  261. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -0
  262. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
  263. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
  264. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
  265. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
  266. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
  267. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
  268. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/__init__.py +0 -0
  269. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/aiarta/__init__.py +0 -0
  270. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/aiarta/async_aiarta.py +0 -0
  271. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -0
  272. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/artbit/__init__.py +0 -0
  273. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
  274. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
  275. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/fastflux/__init__.py +0 -0
  276. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/fastflux/async_fastflux.py +0 -0
  277. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -0
  278. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
  279. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
  280. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
  281. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
  282. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
  283. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
  284. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/pixelmuse/__init__.py +0 -0
  285. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -0
  286. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -0
  287. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/talkai/__init__.py +0 -0
  288. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
  289. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
  290. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/base.py +0 -0
  291. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/deepgram.py +0 -0
  292. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/elevenlabs.py +0 -0
  293. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/gesserit.py +0 -0
  294. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/murfai.py +0 -0
  295. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/parler.py +0 -0
  296. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/streamElements.py +0 -0
  297. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TTS/utils.py +0 -0
  298. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TwoAI.py +0 -0
  299. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/TypliAI.py +0 -0
  300. {webscout-8.2.6/webscout/Provider → webscout-8.2.8/webscout/Provider/UNFINISHED}/Youchat.py +0 -0
  301. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/Venice.py +0 -0
  302. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/VercelAI.py +0 -0
  303. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/WiseCat.py +0 -0
  304. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/WrDoChat.py +0 -0
  305. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/WritingMate.py +0 -0
  306. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/akashgpt.py +0 -0
  307. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/chatglm.py +0 -0
  308. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/cleeai.py +0 -0
  309. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/copilot.py +0 -0
  310. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/elmo.py +0 -0
  311. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/freeaichat.py +0 -0
  312. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/geminiapi.py +0 -0
  313. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/granite.py +0 -0
  314. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/hermes.py +0 -0
  315. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/julius.py +0 -0
  316. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/learnfastai.py +0 -0
  317. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/llama3mitril.py +0 -0
  318. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/llmchatco.py +0 -0
  319. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/multichat.py +0 -0
  320. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/scnet.py +0 -0
  321. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/searchchat.py +0 -0
  322. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/sonus.py +0 -0
  323. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/talkai.py +0 -0
  324. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/toolbaz.py +0 -0
  325. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/turboseek.py +0 -0
  326. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/typegpt.py +0 -0
  327. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/uncovr.py +0 -0
  328. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/x0gpt.py +0 -0
  329. {webscout-8.2.6 → webscout-8.2.8}/webscout/Provider/yep.py +0 -0
  330. {webscout-8.2.6 → webscout-8.2.8}/webscout/__main__.py +0 -0
  331. {webscout-8.2.6 → webscout-8.2.8}/webscout/exceptions.py +0 -0
  332. {webscout-8.2.6 → webscout-8.2.8}/webscout/litagent/__init__.py +0 -0
  333. {webscout-8.2.6 → webscout-8.2.8}/webscout/litagent/agent.py +0 -0
  334. {webscout-8.2.6 → webscout-8.2.8}/webscout/litagent/constants.py +0 -0
  335. {webscout-8.2.6 → webscout-8.2.8}/webscout/litprinter/__init__.py +0 -0
  336. {webscout-8.2.6 → webscout-8.2.8}/webscout/models.py +0 -0
  337. {webscout-8.2.6 → webscout-8.2.8}/webscout/optimizers.py +0 -0
  338. {webscout-8.2.6 → webscout-8.2.8}/webscout/prompt_manager.py +0 -0
  339. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/__init__.py +0 -0
  340. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/__init__.py +0 -0
  341. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/crawler.py +0 -0
  342. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/scout.py +0 -0
  343. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/search_result.py +0 -0
  344. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/text_analyzer.py +0 -0
  345. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/text_utils.py +0 -0
  346. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/core/web_analyzer.py +0 -0
  347. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/element.py +0 -0
  348. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/parsers/__init__.py +0 -0
  349. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/parsers/html5lib_parser.py +0 -0
  350. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/parsers/html_parser.py +0 -0
  351. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/parsers/lxml_parser.py +0 -0
  352. {webscout-8.2.6 → webscout-8.2.8}/webscout/scout/utils.py +0 -0
  353. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/__init__.py +0 -0
  354. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/core/__init__.py +0 -0
  355. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/core/cli.py +0 -0
  356. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/core/context.py +0 -0
  357. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/core/group.py +0 -0
  358. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/decorators/__init__.py +0 -0
  359. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/decorators/command.py +0 -0
  360. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/decorators/options.py +0 -0
  361. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/decorators/output.py +0 -0
  362. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/exceptions.py +0 -0
  363. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/plugins/__init__.py +0 -0
  364. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/plugins/base.py +0 -0
  365. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/plugins/manager.py +0 -0
  366. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/utils/__init__.py +0 -0
  367. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/utils/formatting.py +0 -0
  368. {webscout-8.2.6 → webscout-8.2.8}/webscout/swiftcli/utils/parsing.py +0 -0
  369. {webscout-8.2.6 → webscout-8.2.8}/webscout/tempid.py +0 -0
  370. {webscout-8.2.6 → webscout-8.2.8}/webscout/update_checker.py +0 -0
  371. {webscout-8.2.6 → webscout-8.2.8}/webscout/utils.py +0 -0
  372. {webscout-8.2.6 → webscout-8.2.8}/webscout/yep_search.py +0 -0
  373. {webscout-8.2.6 → webscout-8.2.8}/webscout.egg-info/dependency_links.txt +0 -0
@@ -0,0 +1,152 @@
1
+ # Legal Notice
2
+
3
+ > [!IMPORTANT]
4
+ > This repository is **not associated with or endorsed** by the providers of the APIs contained herein. This project is intended **for educational purposes only**. It is a personal project aimed at learning and exploration.
5
+
6
+ ## Affiliation Disclaimer
7
+
8
+ This repository is not associated with or endorsed by any of the API providers mentioned herein, including but not limited to:
9
+
10
+ - DuckDuckGo
11
+ - Google
12
+ - Meta
13
+ - OpenAI
14
+ - Anthropic
15
+ - Cohere
16
+ - Perplexity
17
+ - Yep.com
18
+ - HuggingFace
19
+ - And others
20
+
21
+ All trademarks, API services, and other intellectual property referenced are the property of their respective owners. No claim of ownership or affiliation is made by this project.
22
+
23
+ Owners of any included sites or services may contact the maintainers to improve their security or request the removal of their content from this repository.
24
+
25
+ ---
26
+
27
+ ## License
28
+
29
+ This repository is licensed under the Apache License, Version 2.0 with additional terms specific to Webscout's API usage and third-party services.
30
+
31
+ > 📄 The full text of this license is available in the [LICENSE.md](./LICENSE.md) file.
32
+
33
+ ---
34
+
35
+ ## Liability Limitation
36
+
37
+ In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, consequential, or exemplary damages of any character arising as a result of this License or out of the use or inability to use the Work.
38
+
39
+ ---
40
+
41
+ ## No Warranties
42
+
43
+ > [!WARNING]
44
+ > The Work is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of:
45
+ > - TITLE
46
+ > - NON-INFRINGEMENT
47
+ > - MERCHANTABILITY
48
+ > - FITNESS FOR A PARTICULAR PURPOSE
49
+
50
+ You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
51
+
52
+ ---
53
+
54
+ ## User Responsibility
55
+
56
+ > [!IMPORTANT]
57
+ > Users assume all risks associated with the use of this repository. They are responsible for ensuring their use complies with all terms of service for the APIs accessed through this toolkit and must obtain any necessary permissions or licenses for third-party services.
58
+
59
+ ---
60
+
61
+ ## Legal Compliance
62
+
63
+ Users are responsible for ensuring that their use of the repository and its contents complies with all applicable:
64
+
65
+ - Local laws and regulations
66
+ - State laws and regulations
67
+ - National laws and regulations
68
+ - International laws and regulations
69
+
70
+ Including but not limited to:
71
+ * Privacy laws
72
+ * Data protection regulations
73
+ * Export control laws
74
+
75
+ ---
76
+
77
+ ## Redistribution Requirements
78
+
79
+ When redistributing copies of the Work or Derivative Works thereof:
80
+
81
+ 1. You **must** give recipients a copy of the License
82
+ 2. You **must** cause any modified files to carry prominent notices stating that You changed the files
83
+ 3. You **must** retain all copyright, patent, trademark, and attribution notices from the Source form of the Work
84
+ 4. You **must** include any NOTICE file as part of its distribution
85
+
86
+ ---
87
+
88
+ ## Third-Party Services
89
+
90
+ > [!NOTE]
91
+ > When using the APIs and services accessed through this Work, you must:
92
+ >
93
+ > 1. Comply with all terms of service of the respective API providers
94
+ > 2. Maintain appropriate attribution and licenses for third-party services
95
+ > 3. Be responsible for obtaining any necessary permissions or licenses
96
+ > 4. Not use the Work in any way that could damage or overload third-party services
97
+
98
+ ---
99
+
100
+ ## Trademarks
101
+
102
+ This License does not grant permission to use trade names, trademarks, service marks, or product names of the contributors, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
103
+
104
+ ---
105
+
106
+ ## Privacy Notice
107
+
108
+ > [!NOTE]
109
+ > Webscout may collect usage data and performance metrics. By using this repository, you acknowledge that:
110
+ >
111
+ > 1. Such data collection will comply with applicable privacy laws
112
+ > 2. You must provide appropriate privacy notices to end users
113
+ > 3. You must obtain necessary consents for data collection
114
+ > 4. You must implement appropriate data security measures
115
+
116
+ ---
117
+
118
+ ## Contributions
119
+
120
+ Unless explicitly stated otherwise, any Contribution intentionally submitted for inclusion in the Work shall be under the terms and conditions of this License, without any additional terms or conditions.
121
+
122
+ **FOR CONTRIBUTORS**: By submitting content to this project, you agree to the terms outlined in this document.
123
+
124
+ ---
125
+
126
+ ## Export Compliance
127
+
128
+ The Work and its use may be subject to export laws and regulations. Users agree to comply with all such laws and regulations that may apply to the Work after distribution.
129
+
130
+ ---
131
+
132
+ ## Severability
133
+
134
+ If any provision of this notice is found to be unlawful, void, or unenforceable, that provision shall be deemed severable from this notice and shall not affect the validity and enforceability of the remaining provisions.
135
+
136
+ ---
137
+
138
+ ## Updates and Changes
139
+
140
+ > [!NOTE]
141
+ > The author reserves the right to modify, update, or remove any content, information, or features in this repository at any time without prior notice. Users are responsible for regularly reviewing the content and any changes made to this repository.
142
+
143
+ ---
144
+
145
+ <details>
146
+ <summary><strong>Document Version Information</strong></summary>
147
+
148
+ - **Last Updated**: April 14, 2025
149
+ - **Version**: 1.2
150
+ - **Document Owner**: Webscout Team
151
+ </details>
152
+
@@ -0,0 +1,12 @@
1
+ include LICENSE.md
2
+ include README.md
3
+ include LEGAL_NOTICE.md
4
+ include changelog.md
5
+
6
+ recursive-include webscout *
7
+
8
+ # Exclude common unwanted files and directories
9
+ recursive-exclude webscout __pycache__
10
+ recursive-exclude webscout *.pyc
11
+ recursive-exclude webscout *.pyo
12
+ recursive-exclude webscout *.pyd
@@ -1,9 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webscout
3
- Version: 8.2.6
3
+ Version: 8.2.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
- Author: OEvortex
6
- Author-email: helpingai5@gmail.com
5
+ Author-email: OEvortex <helpingai5@gmail.com>
7
6
  License: HelpingAI
8
7
  Project-URL: Source, https://github.com/OE-LUCIFER/Webscout
9
8
  Project-URL: Tracker, https://github.com/OE-LUCIFER/Webscout/issues
@@ -40,7 +39,6 @@ Requires-Dist: wheel
40
39
  Requires-Dist: pip
41
40
  Requires-Dist: nodriver
42
41
  Requires-Dist: mistune
43
- Requires-Dist: tenacity
44
42
  Requires-Dist: curl_cffi
45
43
  Requires-Dist: nest-asyncio
46
44
  Requires-Dist: websocket-client
@@ -50,7 +48,6 @@ Requires-Dist: markdownify
50
48
  Requires-Dist: requests
51
49
  Requires-Dist: google-generativeai
52
50
  Requires-Dist: lxml>=5.2.2
53
- Requires-Dist: termcolor
54
51
  Requires-Dist: orjson
55
52
  Requires-Dist: PyYAML
56
53
  Requires-Dist: ollama
@@ -60,27 +57,18 @@ Requires-Dist: cloudscraper
60
57
  Requires-Dist: html5lib
61
58
  Requires-Dist: aiofiles
62
59
  Requires-Dist: openai
63
- Requires-Dist: prompt-toolkit
64
- Requires-Dist: pyreqwest_impersonate
65
60
  Requires-Dist: gradio_client
66
61
  Requires-Dist: psutil
67
62
  Requires-Dist: aiohttp
68
63
  Provides-Extra: dev
69
64
  Requires-Dist: ruff>=0.1.6; extra == "dev"
70
65
  Requires-Dist: pytest>=7.4.2; extra == "dev"
71
- Dynamic: author
72
- Dynamic: author-email
73
- Dynamic: classifier
74
- Dynamic: description
75
- Dynamic: description-content-type
76
- Dynamic: keywords
77
- Dynamic: license
66
+ Provides-Extra: api
67
+ Requires-Dist: fastapi; extra == "api"
68
+ Requires-Dist: uvicorn[standard]; extra == "api"
69
+ Requires-Dist: pydantic; extra == "api"
70
+ Requires-Dist: python-multipart; extra == "api"
78
71
  Dynamic: license-file
79
- Dynamic: project-url
80
- Dynamic: provides-extra
81
- Dynamic: requires-dist
82
- Dynamic: requires-python
83
- Dynamic: summary
84
72
 
85
73
  <div align="center">
86
74
  <a href="https://github.com/OEvortex/Webscout">
@@ -101,6 +89,7 @@ Dynamic: summary
101
89
  <a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout/month?style=flat-square" alt="Monthly Downloads"></a>
102
90
  <a href="https://pepy.tech/project/webscout"><img src="https://static.pepy.tech/badge/webscout?style=flat-square" alt="Total Downloads"></a>
103
91
  <a href="#"><img src="https://img.shields.io/pypi/pyversions/webscout?style=flat-square&logo=python" alt="Python Version"></a>
92
+ <a href="https://deepwiki.com/OEvortex/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
104
93
  </p>
105
94
  </div>
106
95
 
@@ -111,6 +100,7 @@ Dynamic: summary
111
100
  - [🌟 Key Features](#-features)
112
101
  - [⚙️ Installation](#️-installation)
113
102
  - [🖥️ Command Line Interface](#️-command-line-interface)
103
+ - [🔄 OpenAI-Compatible API Server](#-openai-compatible-api-server)
114
104
  - [🔍 Search Engines](#-search-engines)
115
105
  - [🦆 DuckDuckGo Search](#-duckduckgo-search-with-webs-and-asyncwebs)
116
106
  - [💻 WEBS API Reference](#-webs-api-reference)
@@ -128,7 +118,7 @@ Dynamic: summary
128
118
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
129
119
  > - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
130
120
  >
131
- > Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
121
+ > 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.
132
122
 
133
123
  > [!NOTE]
134
124
  > Webscout supports over 90 AI providers including: LLAMA, C4ai, Venice, Copilot, HuggingFaceChat, PerplexityLabs, DeepSeek, WiseCat, GROQ, OPENAI, GEMINI, DeepInfra, Meta, YEPCHAT, TypeGPT, ChatGPTClone, ExaAI, Claude, Anthropic, Cloudflare, AI21, Cerebras, and many more. All providers follow similar usage patterns with consistent interfaces.
@@ -225,7 +215,6 @@ python -m webscout --help
225
215
  | Command | Description |
226
216
  |---------|-------------|
227
217
  | `python -m webscout answers -k "query"` | Perform an answers search |
228
- | `python -m webscout chat` | Start an interactive AI chat session |
229
218
  | `python -m webscout images -k "query"` | Search for images |
230
219
  | `python -m webscout maps -k "query"` | Perform a maps search |
231
220
  | `python -m webscout news -k "query"` | Search for news articles |
@@ -282,6 +271,111 @@ For more information, visit the [Inferno GitHub repository](https://github.com/H
282
271
  > - 32 GB of RAM for 33B models
283
272
  > - GPU acceleration is recommended for better performance
284
273
 
274
+ <details open>
275
+ <summary><b>🔄 OpenAI-Compatible API Server</b></summary>
276
+ <p>
277
+
278
+ Webscout includes an OpenAI-compatible API server that allows you to use any supported provider with tools and applications designed for OpenAI's API.
279
+
280
+ ### Starting the API Server
281
+
282
+ #### From Command Line
283
+
284
+ ```bash
285
+ # Start with default settings (port 8000)
286
+ python -m webscout.Provider.OPENAI.api
287
+
288
+ # Start with custom port
289
+ python -m webscout.Provider.OPENAI.api --port 8080
290
+
291
+ # Start with API key authentication
292
+ python -m webscout.Provider.OPENAI.api --api-key "your-secret-key"
293
+
294
+ # Specify a default provider
295
+ python -m webscout.Provider.OPENAI.api --default-provider "Claude"
296
+
297
+ # Run in debug mode
298
+ python -m webscout.Provider.OPENAI.api --debug
299
+ ```
300
+
301
+ #### From Python Code
302
+
303
+ ```python
304
+ # Method 1: Using the helper function
305
+ from webscout.Provider.OPENAI.api import start_server
306
+
307
+ # Start with default settings
308
+ start_server()
309
+
310
+ # Start with custom settings
311
+ start_server(port=8080, api_key="your-secret-key", default_provider="Claude")
312
+
313
+ # Method 2: Using the run_api function for more control
314
+ from webscout.Provider.OPENAI.api import run_api
315
+
316
+ run_api(
317
+ host="0.0.0.0",
318
+ port=8080,
319
+ api_key="your-secret-key",
320
+ default_provider="Claude",
321
+ debug=True
322
+ )
323
+ ```
324
+
325
+ ### Using the API
326
+
327
+ Once the server is running, you can use it with any OpenAI client library or tool:
328
+
329
+ ```python
330
+ # Using the OpenAI Python client
331
+ from openai import OpenAI
332
+
333
+ client = OpenAI(
334
+ api_key="your-secret-key", # Only needed if you set an API key
335
+ base_url="http://localhost:8000/v1" # Point to your local server
336
+ )
337
+
338
+ # Chat completion
339
+ response = client.chat.completions.create(
340
+ model="gpt-4", # This can be any model name registered with Webscout
341
+ messages=[
342
+ {"role": "system", "content": "You are a helpful assistant."},
343
+ {"role": "user", "content": "Hello, how are you?"}
344
+ ]
345
+ )
346
+
347
+ print(response.choices[0].message.content)
348
+ ```
349
+
350
+ ### Using with cURL
351
+
352
+ ```bash
353
+ # Basic chat completion request
354
+ curl http://localhost:8000/v1/chat/completions \
355
+ -H "Content-Type: application/json" \
356
+ -H "Authorization: Bearer your-secret-key" \
357
+ -d '{
358
+ "model": "gpt-4",
359
+ "messages": [
360
+ {"role": "system", "content": "You are a helpful assistant."},
361
+ {"role": "user", "content": "Hello, how are you?"}
362
+ ]
363
+ }'
364
+
365
+ # List available models
366
+ curl http://localhost:8000/v1/models \
367
+ -H "Authorization: Bearer your-secret-key"
368
+ ```
369
+
370
+ ### Available Endpoints
371
+
372
+ - `GET /v1/models` - List all available models
373
+ - `GET /v1/models/{model_name}` - Get information about a specific model
374
+ - `POST /v1/chat/completions` - Create a chat completion
375
+
376
+ </p>
377
+ </details>
378
+
285
379
  <hr/>
286
380
 
287
381
  ## 🔍 Search Engines
@@ -618,30 +712,12 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
618
712
  | `DeepInfra` | Various open models | Multiple model options |
619
713
  | `Cohere` | Cohere's language models | Command models |
620
714
  | `PerplexityLabs` | Perplexity AI | Web search integration |
621
- | `Anthropic` | Claude models | Long context windows |
622
715
  | `YEPCHAT` | Yep.com's AI | Streaming responses |
623
716
  | `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
624
- | `TypeGPT` | TypeChat models | Code generation focus |
717
+ | `TypeGPT` | TypeChat models | Multiple model options |
625
718
 
626
719
  </div>
627
720
 
628
- <details>
629
- <summary><b>Example: Using Duckchat</b></summary>
630
- <p>
631
-
632
- ```python
633
- from webscout import WEBS
634
-
635
- # Initialize and use Duckchat
636
- with WEBS() as webs:
637
- response = webs.chat(
638
- "Explain quantum computing in simple terms",
639
- model='gpt-4o-mini' # Options: mixtral-8x7b, llama-3.1-70b, claude-3-haiku, etc.
640
- )
641
- print(response)
642
- ```
643
- </p>
644
- </details>
645
721
 
646
722
  <details>
647
723
  <summary><b>Example: Using Meta AI</b></summary>
@@ -753,41 +829,7 @@ print(response)
753
829
  </p>
754
830
  </details>
755
831
 
756
- <hr/>
757
-
758
- ## 👨‍💻 Advanced AI Interfaces
759
-
760
- <details open>
761
- <summary><b>Direct Model Access with LLM and VLM</b></summary>
762
- <p>
763
-
764
- Webscout provides direct interfaces to language and vision-language models through the `LLM` and `VLM` classes.
765
-
766
- ```python
767
- from webscout.LLM import LLM, VLM
768
832
 
769
- # Text-only model interaction
770
- llm = LLM("meta-llama/Meta-Llama-3-70B-Instruct")
771
- response = llm.chat([
772
- {"role": "user", "content": "Explain the concept of neural networks"}
773
- ])
774
- print(response)
775
-
776
- # Vision-language model interaction
777
- vlm = VLM("cogvlm-grounding-generalist")
778
- response = vlm.chat([
779
- {
780
- "role": "user",
781
- "content": [
782
- {"type": "image", "image_url": "path/to/image.jpg"},
783
- {"type": "text", "text": "Describe what you see in this image"}
784
- ]
785
- }
786
- ])
787
- print(response)
788
- ```
789
- </p>
790
- </details>
791
833
 
792
834
  <details open>
793
835
  <summary><b>GGUF Model Conversion</b></summary>
@@ -17,6 +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/OEvortex/Webscout"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
20
21
  </p>
21
22
  </div>
22
23
 
@@ -27,6 +28,7 @@
27
28
  - [🌟 Key Features](#-features)
28
29
  - [⚙️ Installation](#️-installation)
29
30
  - [🖥️ Command Line Interface](#️-command-line-interface)
31
+ - [🔄 OpenAI-Compatible API Server](#-openai-compatible-api-server)
30
32
  - [🔍 Search Engines](#-search-engines)
31
33
  - [🦆 DuckDuckGo Search](#-duckduckgo-search-with-webs-and-asyncwebs)
32
34
  - [💻 WEBS API Reference](#-webs-api-reference)
@@ -44,7 +46,7 @@
44
46
  > - **OpenAI Compatibility:** Use providers with OpenAI-compatible interfaces
45
47
  > - **Local LLM Compatibility:** Run local models with [Inferno](https://github.com/HelpingAI/inferno), an OpenAI-compatible server (now a standalone package)
46
48
  >
47
- > Choose the approach that best fits your needs! For OpenAI compatibility, check the [OpenAI Providers README](webscout/Provider/OPENAI/README.md).
49
+ > 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
50
 
49
51
  > [!NOTE]
50
52
  > Webscout supports over 90 AI providers including: LLAMA, C4ai, Venice, Copilot, HuggingFaceChat, PerplexityLabs, DeepSeek, WiseCat, GROQ, OPENAI, GEMINI, DeepInfra, Meta, YEPCHAT, TypeGPT, ChatGPTClone, ExaAI, Claude, Anthropic, Cloudflare, AI21, Cerebras, and many more. All providers follow similar usage patterns with consistent interfaces.
@@ -141,7 +143,6 @@ python -m webscout --help
141
143
  | Command | Description |
142
144
  |---------|-------------|
143
145
  | `python -m webscout answers -k "query"` | Perform an answers search |
144
- | `python -m webscout chat` | Start an interactive AI chat session |
145
146
  | `python -m webscout images -k "query"` | Search for images |
146
147
  | `python -m webscout maps -k "query"` | Perform a maps search |
147
148
  | `python -m webscout news -k "query"` | Search for news articles |
@@ -198,6 +199,111 @@ For more information, visit the [Inferno GitHub repository](https://github.com/H
198
199
  > - 32 GB of RAM for 33B models
199
200
  > - GPU acceleration is recommended for better performance
200
201
 
202
+ <details open>
203
+ <summary><b>🔄 OpenAI-Compatible API Server</b></summary>
204
+ <p>
205
+
206
+ Webscout includes an OpenAI-compatible API server that allows you to use any supported provider with tools and applications designed for OpenAI's API.
207
+
208
+ ### Starting the API Server
209
+
210
+ #### From Command Line
211
+
212
+ ```bash
213
+ # Start with default settings (port 8000)
214
+ python -m webscout.Provider.OPENAI.api
215
+
216
+ # Start with custom port
217
+ python -m webscout.Provider.OPENAI.api --port 8080
218
+
219
+ # Start with API key authentication
220
+ python -m webscout.Provider.OPENAI.api --api-key "your-secret-key"
221
+
222
+ # Specify a default provider
223
+ python -m webscout.Provider.OPENAI.api --default-provider "Claude"
224
+
225
+ # Run in debug mode
226
+ python -m webscout.Provider.OPENAI.api --debug
227
+ ```
228
+
229
+ #### From Python Code
230
+
231
+ ```python
232
+ # Method 1: Using the helper function
233
+ from webscout.Provider.OPENAI.api import start_server
234
+
235
+ # Start with default settings
236
+ start_server()
237
+
238
+ # Start with custom settings
239
+ start_server(port=8080, api_key="your-secret-key", default_provider="Claude")
240
+
241
+ # Method 2: Using the run_api function for more control
242
+ from webscout.Provider.OPENAI.api import run_api
243
+
244
+ run_api(
245
+ host="0.0.0.0",
246
+ port=8080,
247
+ api_key="your-secret-key",
248
+ default_provider="Claude",
249
+ debug=True
250
+ )
251
+ ```
252
+
253
+ ### Using the API
254
+
255
+ Once the server is running, you can use it with any OpenAI client library or tool:
256
+
257
+ ```python
258
+ # Using the OpenAI Python client
259
+ from openai import OpenAI
260
+
261
+ client = OpenAI(
262
+ api_key="your-secret-key", # Only needed if you set an API key
263
+ base_url="http://localhost:8000/v1" # Point to your local server
264
+ )
265
+
266
+ # Chat completion
267
+ response = client.chat.completions.create(
268
+ model="gpt-4", # This can be any model name registered with Webscout
269
+ messages=[
270
+ {"role": "system", "content": "You are a helpful assistant."},
271
+ {"role": "user", "content": "Hello, how are you?"}
272
+ ]
273
+ )
274
+
275
+ print(response.choices[0].message.content)
276
+ ```
277
+
278
+ ### Using with cURL
279
+
280
+ ```bash
281
+ # Basic chat completion request
282
+ curl http://localhost:8000/v1/chat/completions \
283
+ -H "Content-Type: application/json" \
284
+ -H "Authorization: Bearer your-secret-key" \
285
+ -d '{
286
+ "model": "gpt-4",
287
+ "messages": [
288
+ {"role": "system", "content": "You are a helpful assistant."},
289
+ {"role": "user", "content": "Hello, how are you?"}
290
+ ]
291
+ }'
292
+
293
+ # List available models
294
+ curl http://localhost:8000/v1/models \
295
+ -H "Authorization: Bearer your-secret-key"
296
+ ```
297
+
298
+ ### Available Endpoints
299
+
300
+ - `GET /v1/models` - List all available models
301
+ - `GET /v1/models/{model_name}` - Get information about a specific model
302
+ - `POST /v1/chat/completions` - Create a chat completion
303
+
304
+ </p>
305
+ </details>
306
+
201
307
  <hr/>
202
308
 
203
309
  ## 🔍 Search Engines
@@ -534,30 +640,12 @@ Webscout offers a comprehensive collection of AI chat providers, giving you acce
534
640
  | `DeepInfra` | Various open models | Multiple model options |
535
641
  | `Cohere` | Cohere's language models | Command models |
536
642
  | `PerplexityLabs` | Perplexity AI | Web search integration |
537
- | `Anthropic` | Claude models | Long context windows |
538
643
  | `YEPCHAT` | Yep.com's AI | Streaming responses |
539
644
  | `ChatGPTClone` | ChatGPT-like interface | Multiple model options |
540
- | `TypeGPT` | TypeChat models | Code generation focus |
645
+ | `TypeGPT` | TypeChat models | Multiple model options |
541
646
 
542
647
  </div>
543
648
 
544
- <details>
545
- <summary><b>Example: Using Duckchat</b></summary>
546
- <p>
547
-
548
- ```python
549
- from webscout import WEBS
550
-
551
- # Initialize and use Duckchat
552
- with WEBS() as webs:
553
- response = webs.chat(
554
- "Explain quantum computing in simple terms",
555
- model='gpt-4o-mini' # Options: mixtral-8x7b, llama-3.1-70b, claude-3-haiku, etc.
556
- )
557
- print(response)
558
- ```
559
- </p>
560
- </details>
561
649
 
562
650
  <details>
563
651
  <summary><b>Example: Using Meta AI</b></summary>
@@ -669,41 +757,7 @@ print(response)
669
757
  </p>
670
758
  </details>
671
759
 
672
- <hr/>
673
-
674
- ## 👨‍💻 Advanced AI Interfaces
675
-
676
- <details open>
677
- <summary><b>Direct Model Access with LLM and VLM</b></summary>
678
- <p>
679
-
680
- Webscout provides direct interfaces to language and vision-language models through the `LLM` and `VLM` classes.
681
-
682
- ```python
683
- from webscout.LLM import LLM, VLM
684
760
 
685
- # Text-only model interaction
686
- llm = LLM("meta-llama/Meta-Llama-3-70B-Instruct")
687
- response = llm.chat([
688
- {"role": "user", "content": "Explain the concept of neural networks"}
689
- ])
690
- print(response)
691
-
692
- # Vision-language model interaction
693
- vlm = VLM("cogvlm-grounding-generalist")
694
- response = vlm.chat([
695
- {
696
- "role": "user",
697
- "content": [
698
- {"type": "image", "image_url": "path/to/image.jpg"},
699
- {"type": "text", "text": "Describe what you see in this image"}
700
- ]
701
- }
702
- ])
703
- print(response)
704
- ```
705
- </p>
706
- </details>
707
761
 
708
762
  <details open>
709
763
  <summary><b>GGUF Model Conversion</b></summary>
Binary file