webscout 7.3__tar.gz → 7.4__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 (240) hide show
  1. {webscout-7.3/webscout.egg-info → webscout-7.4}/PKG-INFO +43 -49
  2. {webscout-7.3 → webscout-7.4}/README.md +42 -48
  3. {webscout-7.3 → webscout-7.4}/setup.py +1 -0
  4. webscout-7.4/webscout/Provider/AISEARCH/__init__.py +4 -0
  5. webscout-7.4/webscout/Provider/AISEARCH/genspark_search.py +208 -0
  6. webscout-7.4/webscout/Provider/AllenAI.py +282 -0
  7. {webscout-7.3 → webscout-7.4}/webscout/Provider/Deepinfra.py +43 -44
  8. webscout-7.4/webscout/Provider/ElectronHub.py +634 -0
  9. {webscout-7.3 → webscout-7.4}/webscout/Provider/Glider.py +7 -41
  10. webscout-7.4/webscout/Provider/HeckAI.py +200 -0
  11. {webscout-7.3 → webscout-7.4}/webscout/Provider/Jadve.py +49 -63
  12. {webscout-7.3 → webscout-7.4}/webscout/Provider/PI.py +106 -93
  13. webscout-7.4/webscout/Provider/Perplexitylabs.py +395 -0
  14. {webscout-7.3 → webscout-7.4}/webscout/Provider/QwenLM.py +7 -61
  15. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/__init__.py +1 -0
  16. webscout-7.4/webscout/Provider/TTI/piclumen/__init__.py +23 -0
  17. webscout-7.4/webscout/Provider/TTI/piclumen/async_piclumen.py +268 -0
  18. webscout-7.4/webscout/Provider/TTI/piclumen/sync_piclumen.py +233 -0
  19. {webscout-7.3 → webscout-7.4}/webscout/Provider/TextPollinationsAI.py +3 -2
  20. webscout-7.4/webscout/Provider/TwoAI.py +200 -0
  21. webscout-7.4/webscout/Provider/Venice.py +200 -0
  22. {webscout-7.3 → webscout-7.4}/webscout/Provider/WiseCat.py +1 -18
  23. {webscout-7.3 → webscout-7.4}/webscout/Provider/__init__.py +12 -0
  24. webscout-7.4/webscout/Provider/akashgpt.py +312 -0
  25. {webscout-7.3 → webscout-7.4}/webscout/Provider/chatglm.py +5 -5
  26. {webscout-7.3 → webscout-7.4}/webscout/Provider/freeaichat.py +251 -221
  27. {webscout-7.3 → webscout-7.4}/webscout/Provider/koala.py +9 -1
  28. {webscout-7.3 → webscout-7.4}/webscout/Provider/yep.py +4 -24
  29. {webscout-7.3 → webscout-7.4}/webscout/version.py +1 -1
  30. {webscout-7.3 → webscout-7.4/webscout.egg-info}/PKG-INFO +43 -49
  31. {webscout-7.3 → webscout-7.4}/webscout.egg-info/SOURCES.txt +11 -0
  32. {webscout-7.3 → webscout-7.4}/webscout.egg-info/requires.txt +1 -0
  33. webscout-7.3/webscout/Provider/AISEARCH/__init__.py +0 -3
  34. {webscout-7.3 → webscout-7.4}/LICENSE.md +0 -0
  35. {webscout-7.3 → webscout-7.4}/setup.cfg +0 -0
  36. {webscout-7.3 → webscout-7.4}/webscout/AIauto.py +0 -0
  37. {webscout-7.3 → webscout-7.4}/webscout/AIbase.py +0 -0
  38. {webscout-7.3 → webscout-7.4}/webscout/AIutel.py +0 -0
  39. {webscout-7.3 → webscout-7.4}/webscout/Bard.py +0 -0
  40. {webscout-7.3 → webscout-7.4}/webscout/DWEBS.py +0 -0
  41. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/YTdownloader.py +0 -0
  42. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/__init__.py +0 -0
  43. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/transcriber.py +0 -0
  44. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  45. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  46. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  47. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  48. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  49. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  50. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  51. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  52. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  53. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  54. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  55. {webscout-7.3 → webscout-7.4}/webscout/Extra/YTToolkit/ytapi/video.py +0 -0
  56. {webscout-7.3 → webscout-7.4}/webscout/Extra/__init__.py +0 -0
  57. {webscout-7.3 → webscout-7.4}/webscout/Extra/autocoder/__init__.py +0 -0
  58. {webscout-7.3 → webscout-7.4}/webscout/Extra/autocoder/autocoder_utiles.py +0 -0
  59. {webscout-7.3 → webscout-7.4}/webscout/Extra/autocoder/rawdog.py +0 -0
  60. {webscout-7.3 → webscout-7.4}/webscout/Extra/autollama.py +0 -0
  61. {webscout-7.3 → webscout-7.4}/webscout/Extra/gguf.py +0 -0
  62. {webscout-7.3 → webscout-7.4}/webscout/Extra/weather.py +0 -0
  63. {webscout-7.3 → webscout-7.4}/webscout/Extra/weather_ascii.py +0 -0
  64. {webscout-7.3 → webscout-7.4}/webscout/LLM.py +0 -0
  65. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/__init__.py +0 -0
  66. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/core/__init__.py +0 -0
  67. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/core/level.py +0 -0
  68. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/core/logger.py +0 -0
  69. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/handlers/__init__.py +0 -0
  70. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/handlers/console.py +0 -0
  71. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/handlers/file.py +0 -0
  72. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/handlers/network.py +0 -0
  73. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/styles/__init__.py +0 -0
  74. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/styles/colors.py +0 -0
  75. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/styles/formats.py +0 -0
  76. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/styles/text.py +0 -0
  77. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/utils/__init__.py +0 -0
  78. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/utils/detectors.py +0 -0
  79. {webscout-7.3 → webscout-7.4}/webscout/Litlogger/utils/formatters.py +0 -0
  80. {webscout-7.3 → webscout-7.4}/webscout/Local/__init__.py +0 -0
  81. {webscout-7.3 → webscout-7.4}/webscout/Local/_version.py +0 -0
  82. {webscout-7.3 → webscout-7.4}/webscout/Local/formats.py +0 -0
  83. {webscout-7.3 → webscout-7.4}/webscout/Local/model.py +0 -0
  84. {webscout-7.3 → webscout-7.4}/webscout/Local/samplers.py +0 -0
  85. {webscout-7.3 → webscout-7.4}/webscout/Local/thread.py +0 -0
  86. {webscout-7.3 → webscout-7.4}/webscout/Local/ui.py +0 -0
  87. {webscout-7.3 → webscout-7.4}/webscout/Local/utils.py +0 -0
  88. {webscout-7.3 → webscout-7.4}/webscout/Provider/AI21.py +0 -0
  89. {webscout-7.3 → webscout-7.4}/webscout/Provider/AISEARCH/DeepFind.py +0 -0
  90. {webscout-7.3 → webscout-7.4}/webscout/Provider/AISEARCH/ISou.py +0 -0
  91. {webscout-7.3 → webscout-7.4}/webscout/Provider/AISEARCH/felo_search.py +0 -0
  92. {webscout-7.3 → webscout-7.4}/webscout/Provider/Amigo.py +0 -0
  93. {webscout-7.3 → webscout-7.4}/webscout/Provider/Andi.py +0 -0
  94. {webscout-7.3 → webscout-7.4}/webscout/Provider/Bing.py +0 -0
  95. {webscout-7.3 → webscout-7.4}/webscout/Provider/Blackboxai.py +0 -0
  96. {webscout-7.3 → webscout-7.4}/webscout/Provider/ChatGPTES.py +0 -0
  97. {webscout-7.3 → webscout-7.4}/webscout/Provider/ChatGPTGratis.py +0 -0
  98. {webscout-7.3 → webscout-7.4}/webscout/Provider/Chatify.py +0 -0
  99. {webscout-7.3 → webscout-7.4}/webscout/Provider/Cloudflare.py +0 -0
  100. {webscout-7.3 → webscout-7.4}/webscout/Provider/Cohere.py +0 -0
  101. {webscout-7.3 → webscout-7.4}/webscout/Provider/DARKAI.py +0 -0
  102. {webscout-7.3 → webscout-7.4}/webscout/Provider/DeepSeek.py +0 -0
  103. {webscout-7.3 → webscout-7.4}/webscout/Provider/DiscordRocks.py +0 -0
  104. {webscout-7.3 → webscout-7.4}/webscout/Provider/EDITEE.py +0 -0
  105. {webscout-7.3 → webscout-7.4}/webscout/Provider/Free2GPT.py +0 -0
  106. {webscout-7.3 → webscout-7.4}/webscout/Provider/GPTWeb.py +0 -0
  107. {webscout-7.3 → webscout-7.4}/webscout/Provider/Gemini.py +0 -0
  108. {webscout-7.3 → webscout-7.4}/webscout/Provider/Groq.py +0 -0
  109. {webscout-7.3 → webscout-7.4}/webscout/Provider/HF_space/__init__.py +0 -0
  110. {webscout-7.3 → webscout-7.4}/webscout/Provider/HF_space/qwen_qwen2.py +0 -0
  111. {webscout-7.3 → webscout-7.4}/webscout/Provider/Koboldai.py +0 -0
  112. {webscout-7.3 → webscout-7.4}/webscout/Provider/Llama.py +0 -0
  113. {webscout-7.3 → webscout-7.4}/webscout/Provider/Llama3.py +0 -0
  114. {webscout-7.3 → webscout-7.4}/webscout/Provider/Marcus.py +0 -0
  115. {webscout-7.3 → webscout-7.4}/webscout/Provider/Netwrck.py +0 -0
  116. {webscout-7.3 → webscout-7.4}/webscout/Provider/OLLAMA.py +0 -0
  117. {webscout-7.3 → webscout-7.4}/webscout/Provider/Openai.py +0 -0
  118. {webscout-7.3 → webscout-7.4}/webscout/Provider/Phind.py +0 -0
  119. {webscout-7.3 → webscout-7.4}/webscout/Provider/PizzaGPT.py +0 -0
  120. {webscout-7.3 → webscout-7.4}/webscout/Provider/Reka.py +0 -0
  121. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
  122. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/AiForce/async_aiforce.py +0 -0
  123. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -0
  124. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -0
  125. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -0
  126. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -0
  127. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
  128. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
  129. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
  130. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
  131. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -0
  132. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -0
  133. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/artbit/__init__.py +0 -0
  134. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
  135. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
  136. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/blackbox/__init__.py +0 -0
  137. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/blackbox/async_blackbox.py +0 -0
  138. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/blackbox/sync_blackbox.py +0 -0
  139. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/deepinfra/__init__.py +0 -0
  140. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/deepinfra/async_deepinfra.py +0 -0
  141. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/deepinfra/sync_deepinfra.py +0 -0
  142. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
  143. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
  144. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
  145. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/imgninza/__init__.py +0 -0
  146. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/imgninza/async_ninza.py +0 -0
  147. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/imgninza/sync_ninza.py +0 -0
  148. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/talkai/__init__.py +0 -0
  149. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
  150. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
  151. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/__init__.py +0 -0
  152. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/deepgram.py +0 -0
  153. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/elevenlabs.py +0 -0
  154. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/gesserit.py +0 -0
  155. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/murfai.py +0 -0
  156. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/parler.py +0 -0
  157. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/streamElements.py +0 -0
  158. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/utils.py +0 -0
  159. {webscout-7.3 → webscout-7.4}/webscout/Provider/TTS/voicepod.py +0 -0
  160. {webscout-7.3 → webscout-7.4}/webscout/Provider/TeachAnything.py +0 -0
  161. {webscout-7.3 → webscout-7.4}/webscout/Provider/Youchat.py +0 -0
  162. {webscout-7.3 → webscout-7.4}/webscout/Provider/ai4chat.py +0 -0
  163. {webscout-7.3 → webscout-7.4}/webscout/Provider/aimathgpt.py +0 -0
  164. {webscout-7.3 → webscout-7.4}/webscout/Provider/askmyai.py +0 -0
  165. {webscout-7.3 → webscout-7.4}/webscout/Provider/bagoodex.py +0 -0
  166. {webscout-7.3 → webscout-7.4}/webscout/Provider/cerebras.py +0 -0
  167. {webscout-7.3 → webscout-7.4}/webscout/Provider/cleeai.py +0 -0
  168. {webscout-7.3 → webscout-7.4}/webscout/Provider/dgaf.py +0 -0
  169. {webscout-7.3 → webscout-7.4}/webscout/Provider/elmo.py +0 -0
  170. {webscout-7.3 → webscout-7.4}/webscout/Provider/gaurish.py +0 -0
  171. {webscout-7.3 → webscout-7.4}/webscout/Provider/geminiapi.py +0 -0
  172. {webscout-7.3 → webscout-7.4}/webscout/Provider/geminiprorealtime.py +0 -0
  173. {webscout-7.3 → webscout-7.4}/webscout/Provider/granite.py +0 -0
  174. {webscout-7.3 → webscout-7.4}/webscout/Provider/hermes.py +0 -0
  175. {webscout-7.3 → webscout-7.4}/webscout/Provider/julius.py +0 -0
  176. {webscout-7.3 → webscout-7.4}/webscout/Provider/learnfastai.py +0 -0
  177. {webscout-7.3 → webscout-7.4}/webscout/Provider/lepton.py +0 -0
  178. {webscout-7.3 → webscout-7.4}/webscout/Provider/llama3mitril.py +0 -0
  179. {webscout-7.3 → webscout-7.4}/webscout/Provider/llamatutor.py +0 -0
  180. {webscout-7.3 → webscout-7.4}/webscout/Provider/llmchat.py +0 -0
  181. {webscout-7.3 → webscout-7.4}/webscout/Provider/meta.py +0 -0
  182. {webscout-7.3 → webscout-7.4}/webscout/Provider/multichat.py +0 -0
  183. {webscout-7.3 → webscout-7.4}/webscout/Provider/promptrefine.py +0 -0
  184. {webscout-7.3 → webscout-7.4}/webscout/Provider/talkai.py +0 -0
  185. {webscout-7.3 → webscout-7.4}/webscout/Provider/turboseek.py +0 -0
  186. {webscout-7.3 → webscout-7.4}/webscout/Provider/tutorai.py +0 -0
  187. {webscout-7.3 → webscout-7.4}/webscout/Provider/typegpt.py +0 -0
  188. {webscout-7.3 → webscout-7.4}/webscout/Provider/x0gpt.py +0 -0
  189. {webscout-7.3 → webscout-7.4}/webscout/__init__.py +0 -0
  190. {webscout-7.3 → webscout-7.4}/webscout/__main__.py +0 -0
  191. {webscout-7.3 → webscout-7.4}/webscout/cli.py +0 -0
  192. {webscout-7.3 → webscout-7.4}/webscout/conversation.py +0 -0
  193. {webscout-7.3 → webscout-7.4}/webscout/exceptions.py +0 -0
  194. {webscout-7.3 → webscout-7.4}/webscout/litagent/__init__.py +0 -0
  195. {webscout-7.3 → webscout-7.4}/webscout/litagent/agent.py +0 -0
  196. {webscout-7.3 → webscout-7.4}/webscout/litagent/constants.py +0 -0
  197. {webscout-7.3 → webscout-7.4}/webscout/litprinter/__init__.py +0 -0
  198. {webscout-7.3 → webscout-7.4}/webscout/litprinter/colors.py +0 -0
  199. {webscout-7.3 → webscout-7.4}/webscout/optimizers.py +0 -0
  200. {webscout-7.3 → webscout-7.4}/webscout/prompt_manager.py +0 -0
  201. {webscout-7.3 → webscout-7.4}/webscout/scout/__init__.py +0 -0
  202. {webscout-7.3 → webscout-7.4}/webscout/scout/core/__init__.py +0 -0
  203. {webscout-7.3 → webscout-7.4}/webscout/scout/core/crawler.py +0 -0
  204. {webscout-7.3 → webscout-7.4}/webscout/scout/core/scout.py +0 -0
  205. {webscout-7.3 → webscout-7.4}/webscout/scout/core/search_result.py +0 -0
  206. {webscout-7.3 → webscout-7.4}/webscout/scout/core/text_analyzer.py +0 -0
  207. {webscout-7.3 → webscout-7.4}/webscout/scout/core/text_utils.py +0 -0
  208. {webscout-7.3 → webscout-7.4}/webscout/scout/core/web_analyzer.py +0 -0
  209. {webscout-7.3 → webscout-7.4}/webscout/scout/core.py +0 -0
  210. {webscout-7.3 → webscout-7.4}/webscout/scout/element.py +0 -0
  211. {webscout-7.3 → webscout-7.4}/webscout/scout/parsers/__init__.py +0 -0
  212. {webscout-7.3 → webscout-7.4}/webscout/scout/parsers/html5lib_parser.py +0 -0
  213. {webscout-7.3 → webscout-7.4}/webscout/scout/parsers/html_parser.py +0 -0
  214. {webscout-7.3 → webscout-7.4}/webscout/scout/parsers/lxml_parser.py +0 -0
  215. {webscout-7.3 → webscout-7.4}/webscout/scout/utils.py +0 -0
  216. {webscout-7.3 → webscout-7.4}/webscout/swiftcli/__init__.py +0 -0
  217. {webscout-7.3 → webscout-7.4}/webscout/tempid.py +0 -0
  218. {webscout-7.3 → webscout-7.4}/webscout/update_checker.py +0 -0
  219. {webscout-7.3 → webscout-7.4}/webscout/utils.py +0 -0
  220. {webscout-7.3 → webscout-7.4}/webscout/webscout_search.py +0 -0
  221. {webscout-7.3 → webscout-7.4}/webscout/webscout_search_async.py +0 -0
  222. {webscout-7.3 → webscout-7.4}/webscout/yep_search.py +0 -0
  223. {webscout-7.3 → webscout-7.4}/webscout/zeroart/__init__.py +0 -0
  224. {webscout-7.3 → webscout-7.4}/webscout/zeroart/base.py +0 -0
  225. {webscout-7.3 → webscout-7.4}/webscout/zeroart/effects.py +0 -0
  226. {webscout-7.3 → webscout-7.4}/webscout/zeroart/fonts.py +0 -0
  227. {webscout-7.3 → webscout-7.4}/webscout.egg-info/dependency_links.txt +0 -0
  228. {webscout-7.3 → webscout-7.4}/webscout.egg-info/entry_points.txt +0 -0
  229. {webscout-7.3 → webscout-7.4}/webscout.egg-info/top_level.txt +0 -0
  230. {webscout-7.3 → webscout-7.4}/webstoken/__init__.py +0 -0
  231. {webscout-7.3 → webscout-7.4}/webstoken/classifier.py +0 -0
  232. {webscout-7.3 → webscout-7.4}/webstoken/keywords.py +0 -0
  233. {webscout-7.3 → webscout-7.4}/webstoken/language.py +0 -0
  234. {webscout-7.3 → webscout-7.4}/webstoken/ner.py +0 -0
  235. {webscout-7.3 → webscout-7.4}/webstoken/normalizer.py +0 -0
  236. {webscout-7.3 → webscout-7.4}/webstoken/processor.py +0 -0
  237. {webscout-7.3 → webscout-7.4}/webstoken/sentiment.py +0 -0
  238. {webscout-7.3 → webscout-7.4}/webstoken/stemmer.py +0 -0
  239. {webscout-7.3 → webscout-7.4}/webstoken/tagger.py +0 -0
  240. {webscout-7.3 → webscout-7.4}/webstoken/tokenizer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: webscout
3
- Version: 7.3
3
+ Version: 7.4
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
@@ -27,13 +27,11 @@ Provides-Extra: dev
27
27
  Provides-Extra: local
28
28
  License-File: LICENSE.md
29
29
 
30
-
31
- [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/official_helpingai)
30
+ [![Telegram](https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white)](https://t.me/PyscoutAI)
32
31
  [![Instagram](https://img.shields.io/badge/Instagram-E4405F?style=for-the-badge&logo=instagram&logoColor=white)](https://www.instagram.com/oevortex/)
33
32
  [![LinkedIn](https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white)](https://www.linkedin.com/in/oe-vortex-29a407265/)
34
33
  [![Buy Me A Coffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?style=for-the-badge&logo=buymeacoffee&logoColor=black)](https://buymeacoffee.com/oevortex)
35
34
 
36
-
37
35
  <div align="center">
38
36
  <a href="https://youtube.com/@OEvortex">▶️ Vortex’s YouTube Channel</a> &bull;
39
37
  <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code’s YouTube Channel</a> &bull;
@@ -57,9 +55,11 @@ License-File: LICENSE.md
57
55
  ---
58
56
 
59
57
  ## 🚀 Features
58
+
60
59
  * **Comprehensive Search:** Leverage Google, DuckDuckGo for diverse search results.
61
60
  * **AI Powerhouse:** Access and interact with various AI models, including OpenAI, Cohere, and more.
62
61
  * **[YouTube Toolkit](webscout/Extra/YTToolkit):** Advanced YouTube video and transcript management with multi-language support, versatile downloading, and intelligent data extraction
62
+ * **[GitAPI](webscout/Extra/GitToolkit/gitapi):** Powerful GitHub data extraction toolkit for seamless repository and user information retrieval, featuring commit tracking, issue management, and comprehensive user analytics - all without authentication requirements for public data
63
63
  * **Tempmail & Temp Number:** Generate temporary email addresses and phone numbers for enhanced privacy.
64
64
  * **[Text-to-Speech (TTS)](webscout/Provider/TTS/README.md):** Convert text into natural-sounding speech using multiple AI-powered providers like ElevenLabs, StreamElements, and Voicepods.
65
65
  * **Offline LLMs:** Utilize powerful language models offline with GGUF support.
@@ -73,8 +73,10 @@ License-File: LICENSE.md
73
73
  * **[LitAgent](webscout/litagent/Readme.md):** Powerful and modern user agent generator that keeps your requests fresh and undetectable
74
74
  * **[Text-to-Image](webscout/Provider/TTI/README.md):** Generate high-quality images using a wide range of AI art providers
75
75
  * **[Scout](webscout/scout/README.md):** Advanced web parsing and crawling library with intelligent HTML/XML parsing, web crawling, and Markdown conversion
76
+ * **[AISearch](webscout/Provider/AISEARCH/README.md):** AI Search Providers offer powerful and flexible AI-powered search Search Engine
76
77
 
77
78
  ## ⚙️ Installation
79
+
78
80
  ```python
79
81
  pip install -U webscout
80
82
  ```
@@ -94,12 +96,13 @@ python -m webscout --help
94
96
  | python -m webscout suggestions -k Text | CLI function to perform a suggestions search using Webscout. |
95
97
  | python -m webscout text -k Text | CLI function to perform a text search using Webscout. |
96
98
  | python -m webscout translate -k Text | CLI function to perform translate using Webscout. |
97
- | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
99
+ | python -m webscout version | A command-line interface command that prints and returns the version of the program. |
98
100
  | python -m webscout videos -k Text | CLI function to perform a videos search using DuckDuckGo API. |
99
101
 
100
- [Go To TOP](#webscout-️)
102
+ [Go To TOP](#webscout-️)
101
103
 
102
104
  ## 🌍 Regions
105
+
103
106
  <details>
104
107
  <summary>Expand</summary>
105
108
 
@@ -172,17 +175,14 @@ python -m webscout --help
172
175
  vn-vi for Vietnam
173
176
  wt-wt for No region
174
177
 
175
-
176
178
  </details>
177
179
 
178
-
179
180
  [Go To TOP](#webscout-️)
180
181
 
181
-
182
-
183
182
  ## ☀️ Weather
184
183
 
185
- ### 1. Weather
184
+ ### 1. Weather
185
+
186
186
  ```python
187
187
  from webscout import weather as w
188
188
  weather = w.get("Qazigund")
@@ -190,6 +190,7 @@ print(weather)
190
190
  ```
191
191
 
192
192
  ### 2. Weather ASCII
193
+
193
194
  ```python
194
195
  from webscout import weather_ascii as w
195
196
  weather = w.get("Qazigund")
@@ -283,7 +284,6 @@ for result in results:
283
284
  print(result)
284
285
  ```
285
286
 
286
-
287
287
  ## 🦆 WEBS and AsyncWEBS
288
288
 
289
289
  The `WEBS` and `AsyncWEBS` classes are used to retrieve search results from DuckDuckGo.com.
@@ -353,7 +353,7 @@ await main()
353
353
 
354
354
  ## 💻 Usage of WEBS
355
355
 
356
- ### 1. `text()` - Text Search by DuckDuckGo.com
356
+ ### 1. `text()` - Text Search by DuckDuckGo.com
357
357
 
358
358
  ```python
359
359
  from webscout import WEBS
@@ -367,7 +367,7 @@ with WEBS() as WEBS:
367
367
  print(r)
368
368
  ```
369
369
 
370
- ### 2. `answers()` - Instant Answers by DuckDuckGo.com
370
+ ### 2. `answers()` - Instant Answers by DuckDuckGo.com
371
371
 
372
372
  ```python
373
373
  from webscout import WEBS
@@ -378,7 +378,7 @@ with WEBS() as WEBS:
378
378
  print(r)
379
379
  ```
380
380
 
381
- ### 3. `images()` - Image Search by DuckDuckGo.com
381
+ ### 3. `images()` - Image Search by DuckDuckGo.com
382
382
 
383
383
  ```python
384
384
  from webscout import WEBS
@@ -400,7 +400,7 @@ with WEBS() as WEBS:
400
400
  print(r)
401
401
  ```
402
402
 
403
- ### 4. `videos()` - Video Search by DuckDuckGo.com
403
+ ### 4. `videos()` - Video Search by DuckDuckGo.com
404
404
 
405
405
  ```python
406
406
  from webscout import WEBS
@@ -421,7 +421,7 @@ with WEBS() as WEBS:
421
421
  print(r)
422
422
  ```
423
423
 
424
- ### 5. `news()` - News Search by DuckDuckGo.com
424
+ ### 5. `news()` - News Search by DuckDuckGo.com
425
425
 
426
426
  ```python
427
427
  from webscout import WEBS
@@ -514,19 +514,17 @@ with WEBS() as webs:
514
514
 
515
515
  ```
516
516
 
517
-
518
-
519
- ## ALL Acts
517
+ ## ALL Acts
520
518
 
521
519
  <details>
522
520
  <summary>Expand</summary>
523
521
 
524
- ## Webscout Supported Acts:
522
+ ## Webscout Supported Acts
525
523
 
526
524
  1. Free-mode
527
525
  2. Linux Terminal
528
526
  3. English Translator and Improver
529
- 4. `position` Interviewer
527
+ 4. `position` Interviewer
530
528
  5. JavaScript Console
531
529
  6. Excel Sheet
532
530
  7. English Pronunciation Helper
@@ -684,7 +682,7 @@ with WEBS() as webs:
684
682
  159. Wikipedia page
685
683
  160. Japanese Kanji quiz machine
686
684
  161. note-taking assistant
687
- 162. `language` Literary Critic
685
+ 162. `language` Literary Critic
688
686
  163. Cheap Travel Ticket Advisor
689
687
  164. DALL-E
690
688
  165. MathBot
@@ -709,7 +707,7 @@ with WEBS() as webs:
709
707
  184. Hypothetical response
710
708
  185. BH
711
709
  186. Text Continuation
712
- 187. Dude v3
710
+ 187. Dude v3
713
711
  188. SDA (Superior DAN)
714
712
  189. AntiGPT
715
713
  190. BasedGPT v2
@@ -758,19 +756,19 @@ with WEBS() as webs:
758
756
  233. LiveGPT
759
757
  234. DAN Jailbreak
760
758
  235. Cooper
761
- 236. Steve
759
+ 236. Steve
762
760
  237. DAN 5.0
763
761
  238. Axies
764
762
  239. OMNI
765
763
  240. Burple
766
- 241. JOHN
764
+ 241. JOHN
767
765
  242. An Ethereum Developer
768
766
  243. SEO Prompt
769
767
  244. Prompt Enhancer
770
768
  245. Data Scientist
771
769
  246. League of Legends Player
772
770
 
773
- **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
771
+ **Note:** Some "acts" use placeholders like `position` or `language` which should be replaced with a specific value when using the prompt.
774
772
  ___
775
773
  </details>
776
774
 
@@ -864,7 +862,7 @@ for chunk in response:
864
862
 
865
863
  ```
866
864
 
867
- ### ⬛ `BlackBox` - Search/Chat with BlackBox
865
+ ### ⬛ `BlackBox` - Search/Chat with BlackBox
868
866
 
869
867
  ```python
870
868
  from webscout import BLACKBOXAI
@@ -891,8 +889,7 @@ r = ai.chat(prompt)
891
889
  print(r)
892
890
  ```
893
891
 
894
-
895
- ### 🤖 `Meta AI` - Chat with Meta AI
892
+ ### 🤖 `Meta AI` - Chat with Meta AI
896
893
 
897
894
  ```python
898
895
  from webscout import Meta
@@ -926,7 +923,7 @@ for media in response["media"]:
926
923
 
927
924
  ```
928
925
 
929
- ### `KOBOLDAI`
926
+ ### `KOBOLDAI`
930
927
 
931
928
  ```python
932
929
  from webscout import KOBOLDAI
@@ -946,7 +943,7 @@ print(message)
946
943
 
947
944
  ```
948
945
 
949
- ### `Reka` - Chat with Reka
946
+ ### `Reka` - Chat with Reka
950
947
 
951
948
  ```python
952
949
  from webscout import REKA
@@ -958,7 +955,7 @@ response_str = a.chat(prompt)
958
955
  print(response_str)
959
956
  ```
960
957
 
961
- ### `Cohere` - Chat with Cohere
958
+ ### `Cohere` - Chat with Cohere
962
959
 
963
960
  ```python
964
961
  from webscout import Cohere
@@ -970,7 +967,7 @@ response_str = a.chat(prompt)
970
967
  print(response_str)
971
968
  ```
972
969
 
973
- ### `Deepinfra`
970
+ ### `Deepinfra`
974
971
 
975
972
  ```python
976
973
  from webscout import DeepInfra
@@ -997,8 +994,7 @@ message = ai.get_message(response)
997
994
  print(message)
998
995
  ```
999
996
 
1000
-
1001
- ### `GROQ`
997
+ ### `GROQ`
1002
998
 
1003
999
  ```python
1004
1000
  from webscout import GROQ
@@ -1085,7 +1081,7 @@ print(response_search)
1085
1081
 
1086
1082
  ```
1087
1083
 
1088
- ### `LLama 70b` - Chat with Meta's Llama 3 70b
1084
+ ### `LLama 70b` - Chat with Meta's Llama 3 70b
1089
1085
 
1090
1086
  ```python
1091
1087
 
@@ -1097,7 +1093,7 @@ r = llama.chat("What is the meaning of life?")
1097
1093
  print(r)
1098
1094
  ```
1099
1095
 
1100
- ### `AndiSearch`
1096
+ ### `AndiSearch`
1101
1097
 
1102
1098
  ```python
1103
1099
  from webscout import AndiSearch
@@ -1105,8 +1101,7 @@ a = AndiSearch()
1105
1101
  print(a.chat("HelpingAI-9B"))
1106
1102
  ```
1107
1103
 
1108
-
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
1104
+ ### 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, FreeAIChat, AkashGPT, PerplexityLabs, AllenAI, HeckAI, TwoAI, Venice
1110
1105
 
1111
1106
  Code is similar to other providers.
1112
1107
 
@@ -1130,7 +1125,7 @@ response = vlm.chat([{
1130
1125
  }])
1131
1126
  ```
1132
1127
 
1133
- ## 💻 Local-LLM
1128
+ ## 💻 Local-LLM
1134
1129
 
1135
1130
  Webscout can now run GGUF models locally. You can download and run your favorite models with minimal configuration.
1136
1131
 
@@ -1242,7 +1237,7 @@ while True:
1242
1237
 
1243
1238
  ```
1244
1239
 
1245
- ## GGUF
1240
+ ## GGUF
1246
1241
 
1247
1242
  Webscout provides tools to convert and quantize Hugging Face models into the GGUF format for use with offline LLMs.
1248
1243
 
@@ -1281,21 +1276,22 @@ autollama.main(model_path, gguf_file)
1281
1276
  **Command Line Usage:**
1282
1277
 
1283
1278
  * **GGUF Conversion:**
1279
+
1284
1280
  ```bash
1285
1281
  python -m webscout.Extra.gguf -m "OEvortex/HelpingAI-Lite-1.5T" -u "your_username" -t "your_hf_token" -q "q4_k_m,q5_k_m"
1286
1282
  ```
1287
1283
 
1288
1284
  * **Autollama:**
1285
+
1289
1286
  ```bash
1290
1287
  python -m webscout.Extra.autollama -m "OEvortex/HelpingAI-Lite-1.5T" -g "HelpingAI-Lite-1.5T.q4_k_m.gguf"
1291
1288
  ```
1292
1289
 
1293
- **Note:**
1290
+ **Note:**
1294
1291
 
1295
1292
  * Replace `"your_username"` and `"your_hf_token"` with your actual Hugging Face credentials.
1296
1293
  * The `model_path` in `autollama` is the Hugging Face model ID, and `gguf_file` is the GGUF file ID.
1297
1294
 
1298
-
1299
1295
  <div align="center">
1300
1296
  <!-- Replace `#` with your actual links -->
1301
1297
  <a href="https://t.me/official_helpingai"><img alt="Telegram" src="https://img.shields.io/badge/Telegram-2CA5E0?style=for-the-badge&logo=telegram&logoColor=white"></a>
@@ -1306,13 +1302,13 @@ autollama.main(model_path, gguf_file)
1306
1302
 
1307
1303
  <div align="center">
1308
1304
  <!-- Replace `#` with your actual links -->
1309
- <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1305
+ <a href="https://youtube.com/@OEvortex">▶️ Vortex's YouTube Channel</a>
1310
1306
  </div>
1311
1307
  <div align="center">
1312
- <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1308
+ <a href="https://youtube.com/@devsdocode">▶️ Devs Do Code's YouTube Channel</a>
1313
1309
  </div>
1314
1310
  <div align="center">
1315
- <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1311
+ <a href="https://t.me/ANONYMOUS_56788">📢 Anonymous Coder's Telegram</a>
1316
1312
  </div>
1317
1313
 
1318
1314
  ## 🤝 Contributing
@@ -1325,9 +1321,7 @@ Contributions are welcome! If you'd like to contribute to Webscout, please follo
1325
1321
  4. Push your branch to your forked repository.
1326
1322
  5. Submit a pull request to the main repository.
1327
1323
 
1328
-
1329
1324
  ## 🙏 Acknowledgments
1330
1325
 
1331
1326
  * All the amazing developers who have contributed to the project!
1332
1327
  * The open-source community for their support and inspiration.
1333
-