webscout 7.1__tar.gz → 7.3__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 (233) hide show
  1. {webscout-7.1/webscout.egg-info → webscout-7.3}/PKG-INFO +56 -56
  2. {webscout-7.1 → webscout-7.3}/README.md +53 -3
  3. {webscout-7.1 → webscout-7.3}/setup.py +93 -92
  4. {webscout-7.1 → webscout-7.3}/webscout/AIauto.py +191 -191
  5. {webscout-7.1 → webscout-7.3}/webscout/AIbase.py +122 -122
  6. {webscout-7.1 → webscout-7.3}/webscout/AIutel.py +440 -440
  7. webscout-7.3/webscout/Bard.py +547 -0
  8. {webscout-7.1 → webscout-7.3}/webscout/DWEBS.py +489 -492
  9. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/YTdownloader.py +995 -995
  10. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/__init__.py +2 -2
  11. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/transcriber.py +476 -479
  12. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/channel.py +307 -307
  13. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/playlist.py +58 -58
  14. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/pool.py +7 -7
  15. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/utils.py +62 -62
  16. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/video.py +103 -103
  17. {webscout-7.1 → webscout-7.3}/webscout/Extra/autocoder/__init__.py +9 -9
  18. {webscout-7.1 → webscout-7.3}/webscout/Extra/autocoder/autocoder_utiles.py +199 -199
  19. {webscout-7.1 → webscout-7.3}/webscout/Extra/autocoder/rawdog.py +5 -7
  20. {webscout-7.1 → webscout-7.3}/webscout/Extra/autollama.py +230 -230
  21. {webscout-7.1 → webscout-7.3}/webscout/Extra/gguf.py +3 -3
  22. {webscout-7.1 → webscout-7.3}/webscout/Extra/weather.py +171 -171
  23. {webscout-7.1 → webscout-7.3}/webscout/LLM.py +442 -442
  24. webscout-7.3/webscout/Litlogger/__init__.py +67 -0
  25. webscout-7.3/webscout/Litlogger/core/__init__.py +6 -0
  26. webscout-7.3/webscout/Litlogger/core/level.py +23 -0
  27. webscout-7.3/webscout/Litlogger/core/logger.py +166 -0
  28. webscout-7.3/webscout/Litlogger/handlers/__init__.py +12 -0
  29. webscout-7.3/webscout/Litlogger/handlers/console.py +33 -0
  30. webscout-7.3/webscout/Litlogger/handlers/file.py +143 -0
  31. webscout-7.3/webscout/Litlogger/handlers/network.py +173 -0
  32. webscout-7.3/webscout/Litlogger/styles/__init__.py +7 -0
  33. webscout-7.3/webscout/Litlogger/styles/colors.py +249 -0
  34. webscout-7.3/webscout/Litlogger/styles/formats.py +460 -0
  35. webscout-7.3/webscout/Litlogger/styles/text.py +87 -0
  36. webscout-7.3/webscout/Litlogger/utils/__init__.py +6 -0
  37. webscout-7.3/webscout/Litlogger/utils/detectors.py +154 -0
  38. webscout-7.3/webscout/Litlogger/utils/formatters.py +200 -0
  39. {webscout-7.1 → webscout-7.3}/webscout/Provider/AISEARCH/DeepFind.py +250 -250
  40. webscout-7.3/webscout/Provider/AISEARCH/ISou.py +277 -0
  41. webscout-7.3/webscout/Provider/AISEARCH/__init__.py +3 -0
  42. {webscout-7.1 → webscout-7.3}/webscout/Provider/Blackboxai.py +3 -3
  43. webscout-7.3/webscout/Provider/ChatGPTGratis.py +226 -0
  44. {webscout-7.1 → webscout-7.3}/webscout/Provider/Cloudflare.py +3 -4
  45. webscout-7.3/webscout/Provider/DeepSeek.py +218 -0
  46. {webscout-7.1 → webscout-7.3}/webscout/Provider/Deepinfra.py +40 -24
  47. webscout-7.3/webscout/Provider/Free2GPT.py +241 -0
  48. webscout-7.3/webscout/Provider/Gemini.py +179 -0
  49. {webscout-7.1 → webscout-7.3}/webscout/Provider/Glider.py +3 -3
  50. {webscout-7.1 → webscout-7.3}/webscout/Provider/Groq.py +5 -1
  51. {webscout-7.1 → webscout-7.3}/webscout/Provider/Jadve.py +3 -3
  52. {webscout-7.1 → webscout-7.3}/webscout/Provider/Marcus.py +191 -192
  53. {webscout-7.1 → webscout-7.3}/webscout/Provider/Netwrck.py +3 -3
  54. {webscout-7.1 → webscout-7.3}/webscout/Provider/PI.py +2 -2
  55. {webscout-7.1 → webscout-7.3}/webscout/Provider/PizzaGPT.py +2 -3
  56. webscout-7.3/webscout/Provider/QwenLM.py +311 -0
  57. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/AiForce/__init__.py +22 -22
  58. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/AiForce/async_aiforce.py +257 -257
  59. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/AiForce/sync_aiforce.py +242 -242
  60. webscout-7.3/webscout/Provider/TTI/FreeAIPlayground/__init__.py +9 -0
  61. webscout-7.3/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +206 -0
  62. webscout-7.3/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +192 -0
  63. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/Nexra/__init__.py +22 -22
  64. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/Nexra/async_nexra.py +286 -286
  65. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/Nexra/sync_nexra.py +258 -258
  66. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/PollinationsAI/__init__.py +23 -23
  67. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +330 -330
  68. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +285 -285
  69. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/__init__.py +2 -1
  70. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/artbit/__init__.py +22 -22
  71. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/artbit/async_artbit.py +184 -184
  72. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/artbit/sync_artbit.py +176 -176
  73. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/blackbox/__init__.py +4 -4
  74. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/blackbox/async_blackbox.py +212 -212
  75. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/blackbox/sync_blackbox.py +199 -199
  76. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/deepinfra/__init__.py +4 -4
  77. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/deepinfra/async_deepinfra.py +227 -227
  78. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/deepinfra/sync_deepinfra.py +199 -199
  79. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/huggingface/__init__.py +22 -22
  80. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/huggingface/async_huggingface.py +199 -199
  81. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/huggingface/sync_huggingface.py +195 -195
  82. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/imgninza/__init__.py +4 -4
  83. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/imgninza/async_ninza.py +214 -214
  84. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/imgninza/sync_ninza.py +209 -209
  85. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/talkai/__init__.py +4 -4
  86. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/talkai/async_talkai.py +229 -229
  87. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTI/talkai/sync_talkai.py +207 -207
  88. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/deepgram.py +182 -182
  89. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/elevenlabs.py +136 -136
  90. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/gesserit.py +150 -150
  91. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/murfai.py +138 -138
  92. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/parler.py +133 -134
  93. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/streamElements.py +360 -360
  94. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/utils.py +280 -280
  95. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/voicepod.py +116 -116
  96. {webscout-7.1 → webscout-7.3}/webscout/Provider/TextPollinationsAI.py +28 -8
  97. webscout-7.3/webscout/Provider/WiseCat.py +193 -0
  98. {webscout-7.1 → webscout-7.3}/webscout/Provider/__init__.py +146 -134
  99. {webscout-7.1 → webscout-7.3}/webscout/Provider/cerebras.py +242 -227
  100. {webscout-7.1 → webscout-7.3}/webscout/Provider/chatglm.py +204 -204
  101. {webscout-7.1 → webscout-7.3}/webscout/Provider/dgaf.py +2 -3
  102. webscout-7.3/webscout/Provider/freeaichat.py +221 -0
  103. {webscout-7.1 → webscout-7.3}/webscout/Provider/gaurish.py +2 -3
  104. {webscout-7.1 → webscout-7.3}/webscout/Provider/geminiapi.py +208 -208
  105. webscout-7.3/webscout/Provider/granite.py +223 -0
  106. {webscout-7.1 → webscout-7.3}/webscout/Provider/hermes.py +218 -218
  107. {webscout-7.1 → webscout-7.3}/webscout/Provider/llama3mitril.py +179 -179
  108. {webscout-7.1 → webscout-7.3}/webscout/Provider/llamatutor.py +3 -3
  109. {webscout-7.1 → webscout-7.3}/webscout/Provider/llmchat.py +2 -3
  110. {webscout-7.1 → webscout-7.3}/webscout/Provider/meta.py +794 -794
  111. {webscout-7.1 → webscout-7.3}/webscout/Provider/multichat.py +331 -331
  112. {webscout-7.1 → webscout-7.3}/webscout/Provider/typegpt.py +359 -359
  113. {webscout-7.1 → webscout-7.3}/webscout/Provider/yep.py +3 -3
  114. {webscout-7.1 → webscout-7.3}/webscout/__init__.py +1 -0
  115. {webscout-7.1 → webscout-7.3}/webscout/__main__.py +5 -5
  116. {webscout-7.1 → webscout-7.3}/webscout/cli.py +319 -319
  117. {webscout-7.1 → webscout-7.3}/webscout/conversation.py +241 -242
  118. {webscout-7.1 → webscout-7.3}/webscout/exceptions.py +328 -328
  119. {webscout-7.1 → webscout-7.3}/webscout/litagent/__init__.py +28 -28
  120. {webscout-7.1 → webscout-7.3}/webscout/litagent/agent.py +2 -3
  121. {webscout-7.1 → webscout-7.3}/webscout/litprinter/__init__.py +0 -58
  122. {webscout-7.1 → webscout-7.3}/webscout/scout/__init__.py +8 -8
  123. {webscout-7.1 → webscout-7.3}/webscout/scout/core.py +884 -884
  124. {webscout-7.1 → webscout-7.3}/webscout/scout/element.py +459 -459
  125. {webscout-7.1 → webscout-7.3}/webscout/scout/parsers/__init__.py +69 -69
  126. {webscout-7.1 → webscout-7.3}/webscout/scout/parsers/html5lib_parser.py +172 -172
  127. {webscout-7.1 → webscout-7.3}/webscout/scout/parsers/html_parser.py +236 -236
  128. {webscout-7.1 → webscout-7.3}/webscout/scout/parsers/lxml_parser.py +178 -178
  129. {webscout-7.1 → webscout-7.3}/webscout/scout/utils.py +38 -38
  130. {webscout-7.1 → webscout-7.3}/webscout/swiftcli/__init__.py +811 -811
  131. {webscout-7.1 → webscout-7.3}/webscout/update_checker.py +2 -12
  132. {webscout-7.1 → webscout-7.3}/webscout/version.py +1 -1
  133. {webscout-7.1 → webscout-7.3}/webscout/webscout_search.py +87 -6
  134. {webscout-7.1 → webscout-7.3}/webscout/webscout_search_async.py +58 -1
  135. webscout-7.3/webscout/yep_search.py +297 -0
  136. {webscout-7.1 → webscout-7.3}/webscout/zeroart/__init__.py +54 -54
  137. {webscout-7.1 → webscout-7.3}/webscout/zeroart/base.py +60 -60
  138. {webscout-7.1 → webscout-7.3}/webscout/zeroart/effects.py +99 -99
  139. {webscout-7.1 → webscout-7.3}/webscout/zeroart/fonts.py +816 -816
  140. {webscout-7.1 → webscout-7.3/webscout.egg-info}/PKG-INFO +56 -56
  141. {webscout-7.1 → webscout-7.3}/webscout.egg-info/SOURCES.txt +25 -0
  142. {webscout-7.1 → webscout-7.3}/webscout.egg-info/requires.txt +2 -1
  143. {webscout-7.1 → webscout-7.3}/webstoken/__init__.py +30 -30
  144. {webscout-7.1 → webscout-7.3}/webstoken/classifier.py +189 -189
  145. {webscout-7.1 → webscout-7.3}/webstoken/keywords.py +216 -216
  146. {webscout-7.1 → webscout-7.3}/webstoken/language.py +128 -128
  147. {webscout-7.1 → webscout-7.3}/webstoken/ner.py +164 -164
  148. {webscout-7.1 → webscout-7.3}/webstoken/normalizer.py +35 -35
  149. {webscout-7.1 → webscout-7.3}/webstoken/processor.py +77 -77
  150. {webscout-7.1 → webscout-7.3}/webstoken/sentiment.py +206 -206
  151. {webscout-7.1 → webscout-7.3}/webstoken/stemmer.py +73 -73
  152. {webscout-7.1 → webscout-7.3}/webstoken/tagger.py +60 -60
  153. {webscout-7.1 → webscout-7.3}/webstoken/tokenizer.py +158 -158
  154. webscout-7.1/webscout/Bard.py +0 -365
  155. webscout-7.1/webscout/Litlogger/__init__.py +0 -681
  156. webscout-7.1/webscout/Provider/AISEARCH/__init__.py +0 -2
  157. webscout-7.1/webscout/Provider/Free2GPT.py +0 -234
  158. webscout-7.1/webscout/Provider/Gemini.py +0 -194
  159. {webscout-7.1 → webscout-7.3}/LICENSE.md +0 -0
  160. {webscout-7.1 → webscout-7.3}/setup.cfg +0 -0
  161. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  162. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  163. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  164. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  165. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  166. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  167. {webscout-7.1 → webscout-7.3}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  168. {webscout-7.1 → webscout-7.3}/webscout/Extra/__init__.py +0 -0
  169. {webscout-7.1 → webscout-7.3}/webscout/Extra/weather_ascii.py +0 -0
  170. {webscout-7.1 → webscout-7.3}/webscout/Local/__init__.py +0 -0
  171. {webscout-7.1 → webscout-7.3}/webscout/Local/_version.py +0 -0
  172. {webscout-7.1 → webscout-7.3}/webscout/Local/formats.py +0 -0
  173. {webscout-7.1 → webscout-7.3}/webscout/Local/model.py +0 -0
  174. {webscout-7.1 → webscout-7.3}/webscout/Local/samplers.py +0 -0
  175. {webscout-7.1 → webscout-7.3}/webscout/Local/thread.py +0 -0
  176. {webscout-7.1 → webscout-7.3}/webscout/Local/ui.py +0 -0
  177. {webscout-7.1 → webscout-7.3}/webscout/Local/utils.py +0 -0
  178. {webscout-7.1 → webscout-7.3}/webscout/Provider/AI21.py +0 -0
  179. {webscout-7.1 → webscout-7.3}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  180. {webscout-7.1 → webscout-7.3}/webscout/Provider/Amigo.py +0 -0
  181. {webscout-7.1 → webscout-7.3}/webscout/Provider/Andi.py +0 -0
  182. {webscout-7.1 → webscout-7.3}/webscout/Provider/Bing.py +0 -0
  183. {webscout-7.1 → webscout-7.3}/webscout/Provider/ChatGPTES.py +0 -0
  184. {webscout-7.1 → webscout-7.3}/webscout/Provider/Chatify.py +0 -0
  185. {webscout-7.1 → webscout-7.3}/webscout/Provider/Cohere.py +0 -0
  186. {webscout-7.1 → webscout-7.3}/webscout/Provider/DARKAI.py +0 -0
  187. {webscout-7.1 → webscout-7.3}/webscout/Provider/DiscordRocks.py +0 -0
  188. {webscout-7.1 → webscout-7.3}/webscout/Provider/EDITEE.py +0 -0
  189. {webscout-7.1 → webscout-7.3}/webscout/Provider/GPTWeb.py +0 -0
  190. {webscout-7.1 → webscout-7.3}/webscout/Provider/HF_space/__init__.py +0 -0
  191. {webscout-7.1 → webscout-7.3}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
  192. {webscout-7.1 → webscout-7.3}/webscout/Provider/Koboldai.py +0 -0
  193. {webscout-7.1 → webscout-7.3}/webscout/Provider/Llama.py +0 -0
  194. {webscout-7.1 → webscout-7.3}/webscout/Provider/Llama3.py +0 -0
  195. {webscout-7.1 → webscout-7.3}/webscout/Provider/OLLAMA.py +0 -0
  196. {webscout-7.1 → webscout-7.3}/webscout/Provider/Openai.py +0 -0
  197. {webscout-7.1 → webscout-7.3}/webscout/Provider/Phind.py +0 -0
  198. {webscout-7.1 → webscout-7.3}/webscout/Provider/Reka.py +0 -0
  199. {webscout-7.1 → webscout-7.3}/webscout/Provider/TTS/__init__.py +0 -0
  200. {webscout-7.1 → webscout-7.3}/webscout/Provider/TeachAnything.py +0 -0
  201. {webscout-7.1 → webscout-7.3}/webscout/Provider/Youchat.py +0 -0
  202. {webscout-7.1 → webscout-7.3}/webscout/Provider/ai4chat.py +0 -0
  203. {webscout-7.1 → webscout-7.3}/webscout/Provider/aimathgpt.py +0 -0
  204. {webscout-7.1 → webscout-7.3}/webscout/Provider/askmyai.py +0 -0
  205. {webscout-7.1 → webscout-7.3}/webscout/Provider/bagoodex.py +0 -0
  206. {webscout-7.1 → webscout-7.3}/webscout/Provider/cleeai.py +0 -0
  207. {webscout-7.1 → webscout-7.3}/webscout/Provider/elmo.py +0 -0
  208. {webscout-7.1 → webscout-7.3}/webscout/Provider/geminiprorealtime.py +0 -0
  209. {webscout-7.1 → webscout-7.3}/webscout/Provider/julius.py +0 -0
  210. {webscout-7.1 → webscout-7.3}/webscout/Provider/koala.py +0 -0
  211. {webscout-7.1 → webscout-7.3}/webscout/Provider/learnfastai.py +0 -0
  212. {webscout-7.1 → webscout-7.3}/webscout/Provider/lepton.py +0 -0
  213. {webscout-7.1 → webscout-7.3}/webscout/Provider/promptrefine.py +0 -0
  214. {webscout-7.1 → webscout-7.3}/webscout/Provider/talkai.py +0 -0
  215. {webscout-7.1 → webscout-7.3}/webscout/Provider/turboseek.py +0 -0
  216. {webscout-7.1 → webscout-7.3}/webscout/Provider/tutorai.py +0 -0
  217. {webscout-7.1 → webscout-7.3}/webscout/Provider/x0gpt.py +0 -0
  218. {webscout-7.1 → webscout-7.3}/webscout/litagent/constants.py +0 -0
  219. {webscout-7.1 → webscout-7.3}/webscout/litprinter/colors.py +0 -0
  220. {webscout-7.1 → webscout-7.3}/webscout/optimizers.py +0 -0
  221. {webscout-7.1 → webscout-7.3}/webscout/prompt_manager.py +0 -0
  222. {webscout-7.1 → webscout-7.3}/webscout/scout/core/__init__.py +0 -0
  223. {webscout-7.1 → webscout-7.3}/webscout/scout/core/crawler.py +0 -0
  224. {webscout-7.1 → webscout-7.3}/webscout/scout/core/scout.py +0 -0
  225. {webscout-7.1 → webscout-7.3}/webscout/scout/core/search_result.py +0 -0
  226. {webscout-7.1 → webscout-7.3}/webscout/scout/core/text_analyzer.py +0 -0
  227. {webscout-7.1 → webscout-7.3}/webscout/scout/core/text_utils.py +0 -0
  228. {webscout-7.1 → webscout-7.3}/webscout/scout/core/web_analyzer.py +0 -0
  229. {webscout-7.1 → webscout-7.3}/webscout/tempid.py +0 -0
  230. {webscout-7.1 → webscout-7.3}/webscout/utils.py +0 -0
  231. {webscout-7.1 → webscout-7.3}/webscout.egg-info/dependency_links.txt +0 -0
  232. {webscout-7.1 → webscout-7.3}/webscout.egg-info/entry_points.txt +0 -0
  233. {webscout-7.1 → webscout-7.3}/webscout.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 7.1
3
+ Version: 7.3
4
4
  Summary: Search for anything using Google, DuckDuckGo, phind.com, Contains AI models, can transcribe yt videos, temporary email and phone number generation, has TTS support, webai (terminal gpt and open interpreter) and offline LLMs and more
5
5
  Author: OEvortex
6
6
  Author-email: helpingai5@gmail.com
@@ -23,59 +23,9 @@ Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
23
23
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
24
24
  Requires-Python: >=3.7
25
25
  Description-Content-Type: text/markdown
26
- License-File: LICENSE.md
27
- Requires-Dist: setuptools
28
- Requires-Dist: wheel
29
- Requires-Dist: pip
30
- Requires-Dist: mistune
31
- Requires-Dist: tenacity
32
- Requires-Dist: curl_cffi
33
- Requires-Dist: nest-asyncio
34
- Requires-Dist: rich
35
- Requires-Dist: markdownify
36
- Requires-Dist: requests
37
- Requires-Dist: google-generativeai
38
- Requires-Dist: lxml>=5.2.2
39
- Requires-Dist: termcolor
40
- Requires-Dist: orjson
41
- Requires-Dist: PyYAML
42
- Requires-Dist: tls_client
43
- Requires-Dist: clipman
44
- Requires-Dist: playsound
45
- Requires-Dist: ollama
46
- Requires-Dist: pillow
47
- Requires-Dist: bson
48
- Requires-Dist: cloudscraper
49
- Requires-Dist: html5lib
50
- Requires-Dist: aiofiles
51
- Requires-Dist: emoji
52
- Requires-Dist: openai
53
- Requires-Dist: prompt-toolkit
54
- Requires-Dist: primp
55
- Requires-Dist: pyreqwest_impersonate
56
- Requires-Dist: gradio_client
57
- Requires-Dist: psutil
58
- Requires-Dist: pygetwindow
59
26
  Provides-Extra: dev
60
- Requires-Dist: ruff>=0.1.6; extra == "dev"
61
- Requires-Dist: pytest>=7.4.2; extra == "dev"
62
27
  Provides-Extra: local
63
- Requires-Dist: llama-cpp-python; extra == "local"
64
- Requires-Dist: colorama; extra == "local"
65
- Requires-Dist: numpy; extra == "local"
66
- Requires-Dist: huggingface_hub[cli]; extra == "local"
67
- Requires-Dist: unicorn; extra == "local"
68
- Dynamic: author
69
- Dynamic: author-email
70
- Dynamic: classifier
71
- Dynamic: description
72
- Dynamic: description-content-type
73
- Dynamic: license
74
- Dynamic: project-url
75
- Dynamic: provides-extra
76
- Dynamic: requires-dist
77
- Dynamic: requires-python
78
- Dynamic: summary
28
+ License-File: LICENSE.md
79
29
 
80
30
 
81
31
  [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/official_helpingai)
@@ -95,7 +45,7 @@ Dynamic: summary
95
45
  <p align="center">
96
46
  <strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
97
47
  <br>
98
- Discover insights with Google, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
48
+ Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
99
49
  </p>
100
50
 
101
51
  <div align="center">
@@ -284,7 +234,43 @@ if __name__ == "__main__":
284
234
  asyncio.run(main())
285
235
  ```
286
236
 
237
+ ...
238
+
239
+ ### 🔍 `YepSearch` - Search using Yep.com
287
240
 
241
+ ```python
242
+ from webscout import YepSearch
243
+
244
+ # Initialize YepSearch
245
+ yep = YepSearch(
246
+ timeout=20, # Optional: Set custom timeout
247
+ proxies=None, # Optional: Use proxies
248
+ verify=True # Optional: SSL verification
249
+ )
250
+
251
+ # Text Search
252
+ text_results = yep.text(
253
+ keywords="artificial intelligence",
254
+ region="all", # Optional: Region for results
255
+ safesearch="moderate", # Optional: "on", "moderate", "off"
256
+ max_results=10 # Optional: Limit number of results
257
+ )
258
+ print(text_results)
259
+
260
+ # Image Search
261
+ image_results = yep.images(
262
+ keywords="nature photography",
263
+ region="all",
264
+ safesearch="moderate",
265
+ max_results=10
266
+ )
267
+ print(image_results)
268
+
269
+
270
+ # Suggestions
271
+ suggestions = yep.suggestions("hist")
272
+ print(suggestions)
273
+ ```
288
274
 
289
275
  ## 🔍 GoogleS (formerly DWEBS)
290
276
 
@@ -516,8 +502,21 @@ with WEBS() as WEBS:
516
502
  print(r)
517
503
  ```
518
504
 
505
+ ### 9. `weather()` - Weather Information by DuckDuckGo.com
506
+
507
+ ```python
508
+ from webscout import WEBS
509
+
510
+ # Get weather information for a location using DuckDuckGo.com
511
+ with WEBS() as webs:
512
+ weather_data = webs.weather("New York")
513
+ print(weather_data)
514
+
515
+ ```
516
+
519
517
 
520
- ## 🎭 ALL Acts
518
+
519
+ ## ALL Acts
521
520
 
522
521
  <details>
523
522
  <summary>Expand</summary>
@@ -1107,7 +1106,7 @@ print(a.chat("HelpingAI-9B"))
1107
1106
  ```
1108
1107
 
1109
1108
 
1110
- ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI
1109
+ ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek
1111
1110
 
1112
1111
  Code is similar to other providers.
1113
1112
 
@@ -1331,3 +1330,4 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1331
1330
 
1332
1331
  * All the amazing developers who have contributed to the project!
1333
1332
  * The open-source community for their support and inspiration.
1333
+
@@ -16,7 +16,7 @@
16
16
  <p align="center">
17
17
  <strong>Webscout</strong> is the all-in-one search and AI toolkit you need.
18
18
  <br>
19
- Discover insights with Google, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
19
+ Discover insights with Yep.com, DuckDuckGo, and Phind; access cutting-edge AI models; transcribe YouTube videos; generate temporary emails and phone numbers; perform text-to-speech conversions; run offline language models; and much more!
20
20
  </p>
21
21
 
22
22
  <div align="center">
@@ -205,7 +205,43 @@ if __name__ == "__main__":
205
205
  asyncio.run(main())
206
206
  ```
207
207
 
208
+ ...
208
209
 
210
+ ### 🔍 `YepSearch` - Search using Yep.com
211
+
212
+ ```python
213
+ from webscout import YepSearch
214
+
215
+ # Initialize YepSearch
216
+ yep = YepSearch(
217
+ timeout=20, # Optional: Set custom timeout
218
+ proxies=None, # Optional: Use proxies
219
+ verify=True # Optional: SSL verification
220
+ )
221
+
222
+ # Text Search
223
+ text_results = yep.text(
224
+ keywords="artificial intelligence",
225
+ region="all", # Optional: Region for results
226
+ safesearch="moderate", # Optional: "on", "moderate", "off"
227
+ max_results=10 # Optional: Limit number of results
228
+ )
229
+ print(text_results)
230
+
231
+ # Image Search
232
+ image_results = yep.images(
233
+ keywords="nature photography",
234
+ region="all",
235
+ safesearch="moderate",
236
+ max_results=10
237
+ )
238
+ print(image_results)
239
+
240
+
241
+ # Suggestions
242
+ suggestions = yep.suggestions("hist")
243
+ print(suggestions)
244
+ ```
209
245
 
210
246
  ## 🔍 GoogleS (formerly DWEBS)
211
247
 
@@ -437,8 +473,21 @@ with WEBS() as WEBS:
437
473
  print(r)
438
474
  ```
439
475
 
476
+ ### 9. `weather()` - Weather Information by DuckDuckGo.com
440
477
 
441
- ## 🎭 ALL Acts
478
+ ```python
479
+ from webscout import WEBS
480
+
481
+ # Get weather information for a location using DuckDuckGo.com
482
+ with WEBS() as webs:
483
+ weather_data = webs.weather("New York")
484
+ print(weather_data)
485
+
486
+ ```
487
+
488
+
489
+
490
+ ## ALL Acts
442
491
 
443
492
  <details>
444
493
  <summary>Expand</summary>
@@ -1028,7 +1077,7 @@ print(a.chat("HelpingAI-9B"))
1028
1077
  ```
1029
1078
 
1030
1079
 
1031
- ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI
1080
+ ### LLAMA3, pizzagpt, RUBIKSAI, Koala, Darkai, AI4Chat, Farfalle, PIAI, Felo, Julius, YouChat, YEPCHAT, Cloudflare, TurboSeek, Editee, AI21, Chatify, Cerebras, X0GPT, Lepton, GEMINIAPI, Cleeai, Elmo, Free2GPT, Bing, DiscordRocks, GPTWeb, LlamaTutor, PromptRefine, TutorAI, ChatGPTES, Bagoodex, ChatHub, AmigoChat, AIMathGPT, GaurishCerebras, NinjaChat, GeminiPro, Talkai, LLMChat, AskMyAI, Llama3Mitril, Marcus, TypeGPT, Mhystical, Netwrck, MultiChatAI, JadveOpenAI, ChatGLM, Deepfind, NousHermes, TextPollinationsAI, GliderAI, DGAFAI, ChatGPTGratis, QwenLM, IBMGranite, WiseCat, DeepSeek
1032
1081
 
1033
1082
  Code is similar to other providers.
1034
1083
 
@@ -1252,3 +1301,4 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1252
1301
 
1253
1302
  * All the amazing developers who have contributed to the project!
1254
1303
  * The open-source community for their support and inspiration.
1304
+
@@ -1,92 +1,93 @@
1
- from setuptools import setup, find_packages
2
- from webscout.version import __prog__, __version__
3
-
4
- with open("README.md", encoding="utf-8") as f:
5
- README = f.read()
6
-
7
- setup(
8
- name="webscout",
9
- version=__version__,
10
- description="Search for anything using Google, DuckDuckGo, phind.com, Contains AI models, can transcribe yt videos, temporary email and phone number generation, has TTS support, webai (terminal gpt and open interpreter) and offline LLMs and more",
11
- long_description=README,
12
- long_description_content_type="text/markdown",
13
- author="OEvortex",
14
- author_email="helpingai5@gmail.com",
15
- packages=find_packages(),
16
- python_requires=">=3.7",
17
- classifiers=[
18
- "Development Status :: 5 - Production/Stable",
19
- "Intended Audience :: Developers",
20
- "License :: Other/Proprietary License",
21
- "Operating System :: OS Independent",
22
- "Programming Language :: Python :: 3",
23
- "Programming Language :: Python :: 3.8",
24
- "Programming Language :: Python :: 3.9",
25
- "Programming Language :: Python :: 3.10",
26
- "Programming Language :: Python :: 3.11",
27
- "Programming Language :: Python :: 3.12",
28
- "Programming Language :: Python :: Implementation :: CPython",
29
- "Topic :: Internet :: WWW/HTTP :: Indexing/Search",
30
- "Topic :: Software Development :: Libraries :: Python Modules",
31
- ],
32
- install_requires=[
33
- "setuptools",
34
- "wheel",
35
- "pip",
36
- "mistune",
37
- "tenacity",
38
- "curl_cffi",
39
- "nest-asyncio",
40
- "rich",
41
- "markdownify",
42
- "requests",
43
- "google-generativeai",
44
- "lxml>=5.2.2",
45
- "termcolor",
46
- "orjson",
47
- "PyYAML",
48
- "tls_client",
49
- "clipman",
50
- "playsound",
51
- "ollama",
52
- "pillow",
53
- "bson",
54
- "cloudscraper",
55
- "html5lib",
56
- "aiofiles",
57
- "emoji",
58
- "openai",
59
- "prompt-toolkit",
60
- "primp",
61
- "pyreqwest_impersonate",
62
- "gradio_client",
63
- "psutil",
64
- "pygetwindow",
65
- ],
66
-
67
- entry_points={
68
- "console_scripts": [
69
- "WEBS = webscout.cli:cli",
70
- "webscout = webscout.cli:cli",
71
- ],
72
- },
73
- extras_require={
74
- "dev": [
75
- "ruff>=0.1.6",
76
- "pytest>=7.4.2",
77
- ],
78
- "local": [
79
- 'llama-cpp-python',
80
- 'colorama',
81
- 'numpy',
82
- 'huggingface_hub[cli]',
83
- 'unicorn',
84
- ],
85
- },
86
- license="HelpingAI",
87
- project_urls={
88
- "Source": "https://github.com/HelpingAI/Webscout",
89
- "Tracker": "https://github.com/HelpingAI/Webscout/issues",
90
- "YouTube": "https://youtube.com/@OEvortex",
91
- },
92
- )
1
+ from setuptools import setup, find_packages
2
+ from webscout.version import __prog__, __version__
3
+
4
+ with open("README.md", encoding="utf-8") as f:
5
+ README = f.read()
6
+
7
+ setup(
8
+ name="webscout",
9
+ version=__version__,
10
+ description="Search for anything using Google, DuckDuckGo, phind.com, Contains AI models, can transcribe yt videos, temporary email and phone number generation, has TTS support, webai (terminal gpt and open interpreter) and offline LLMs and more",
11
+ long_description=README,
12
+ long_description_content_type="text/markdown",
13
+ author="OEvortex",
14
+ author_email="helpingai5@gmail.com",
15
+ packages=find_packages(),
16
+ python_requires=">=3.7",
17
+ classifiers=[
18
+ "Development Status :: 5 - Production/Stable",
19
+ "Intended Audience :: Developers",
20
+ "License :: Other/Proprietary License",
21
+ "Operating System :: OS Independent",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.8",
24
+ "Programming Language :: Python :: 3.9",
25
+ "Programming Language :: Python :: 3.10",
26
+ "Programming Language :: Python :: 3.11",
27
+ "Programming Language :: Python :: 3.12",
28
+ "Programming Language :: Python :: Implementation :: CPython",
29
+ "Topic :: Internet :: WWW/HTTP :: Indexing/Search",
30
+ "Topic :: Software Development :: Libraries :: Python Modules",
31
+ ],
32
+ install_requires=[
33
+ "setuptools",
34
+ "wheel",
35
+ "pip",
36
+ "mistune",
37
+ "tenacity",
38
+ "curl_cffi",
39
+ "nest-asyncio",
40
+ "rich",
41
+ "markdownify",
42
+ "requests",
43
+ "google-generativeai",
44
+ "lxml>=5.2.2",
45
+ "termcolor",
46
+ "orjson",
47
+ "PyYAML",
48
+ "tls_client",
49
+ "clipman",
50
+ "playsound==1.2.2",
51
+ "ollama",
52
+ "pillow",
53
+ "bson",
54
+ "cloudscraper",
55
+ "html5lib",
56
+ "aiofiles",
57
+ "emoji",
58
+ "openai",
59
+ "prompt-toolkit",
60
+ "primp",
61
+ "pyreqwest_impersonate",
62
+ "gradio_client",
63
+ "psutil",
64
+ "pygetwindow",
65
+ "aiohttp",
66
+ ],
67
+
68
+ entry_points={
69
+ "console_scripts": [
70
+ "WEBS = webscout.cli:cli",
71
+ "webscout = webscout.cli:cli",
72
+ ],
73
+ },
74
+ extras_require={
75
+ "dev": [
76
+ "ruff>=0.1.6",
77
+ "pytest>=7.4.2",
78
+ ],
79
+ "local": [
80
+ 'llama-cpp-python',
81
+ 'colorama',
82
+ 'numpy',
83
+ 'huggingface_hub[cli]',
84
+ 'unicorn',
85
+ ],
86
+ },
87
+ license="HelpingAI",
88
+ project_urls={
89
+ "Source": "https://github.com/HelpingAI/Webscout",
90
+ "Tracker": "https://github.com/HelpingAI/Webscout/issues",
91
+ "YouTube": "https://youtube.com/@OEvortex",
92
+ },
93
+ )