webscout 7.4__tar.gz → 7.6__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 (263) hide show
  1. webscout-7.6/LICENSE.md +146 -0
  2. {webscout-7.4/webscout.egg-info → webscout-7.6}/PKG-INFO +101 -505
  3. {webscout-7.4 → webscout-7.6}/README.md +97 -501
  4. {webscout-7.4 → webscout-7.6}/setup.py +7 -13
  5. {webscout-7.4 → webscout-7.6}/webscout/AIauto.py +5 -53
  6. webscout-7.6/webscout/AIutel.py +131 -0
  7. {webscout-7.4 → webscout-7.6}/webscout/DWEBS.py +460 -489
  8. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/YTdownloader.py +14 -53
  9. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/transcriber.py +12 -13
  10. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/video.py +0 -1
  11. {webscout-7.4 → webscout-7.6}/webscout/Extra/__init__.py +0 -1
  12. {webscout-7.4 → webscout-7.6}/webscout/Extra/autocoder/autocoder_utiles.py +0 -4
  13. {webscout-7.4 → webscout-7.6}/webscout/Extra/autocoder/rawdog.py +13 -41
  14. webscout-7.6/webscout/Extra/gguf.py +652 -0
  15. webscout-7.6/webscout/Extra/weather.py +194 -0
  16. webscout-7.6/webscout/Extra/weather_ascii.py +76 -0
  17. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/core/logger.py +1 -2
  18. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/handlers/file.py +1 -1
  19. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/styles/formats.py +0 -2
  20. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/utils/detectors.py +0 -1
  21. {webscout-7.4 → webscout-7.6}/webscout/Provider/AISEARCH/DeepFind.py +0 -1
  22. {webscout-7.4 → webscout-7.6}/webscout/Provider/AISEARCH/ISou.py +1 -1
  23. {webscout-7.4 → webscout-7.6}/webscout/Provider/AISEARCH/felo_search.py +0 -1
  24. {webscout-7.4 → webscout-7.6}/webscout/Provider/AllenAI.py +24 -9
  25. webscout-7.6/webscout/Provider/C4ai.py +432 -0
  26. {webscout-7.4 → webscout-7.6}/webscout/Provider/ChatGPTGratis.py +24 -56
  27. {webscout-7.4 → webscout-7.6}/webscout/Provider/Cloudflare.py +18 -21
  28. {webscout-7.4 → webscout-7.6}/webscout/Provider/DeepSeek.py +27 -48
  29. {webscout-7.4 → webscout-7.6}/webscout/Provider/Deepinfra.py +129 -53
  30. {webscout-7.4 → webscout-7.6}/webscout/Provider/Gemini.py +1 -1
  31. webscout-7.6/webscout/Provider/GithubChat.py +362 -0
  32. {webscout-7.4 → webscout-7.6}/webscout/Provider/Glider.py +25 -8
  33. {webscout-7.4 → webscout-7.6}/webscout/Provider/HF_space/qwen_qwen2.py +2 -2
  34. {webscout-7.4 → webscout-7.6}/webscout/Provider/HeckAI.py +38 -5
  35. webscout-7.6/webscout/Provider/HuggingFaceChat.py +462 -0
  36. {webscout-7.4 → webscout-7.6}/webscout/Provider/Jadve.py +20 -5
  37. {webscout-7.4 → webscout-7.6}/webscout/Provider/Marcus.py +7 -50
  38. {webscout-7.4 → webscout-7.6}/webscout/Provider/Netwrck.py +43 -67
  39. {webscout-7.4 → webscout-7.6}/webscout/Provider/PI.py +4 -2
  40. {webscout-7.4 → webscout-7.6}/webscout/Provider/Perplexitylabs.py +26 -6
  41. {webscout-7.4 → webscout-7.6}/webscout/Provider/Phind.py +29 -3
  42. {webscout-7.4 → webscout-7.6}/webscout/Provider/PizzaGPT.py +10 -51
  43. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/AiForce/async_aiforce.py +4 -37
  44. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/AiForce/sync_aiforce.py +41 -38
  45. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/FreeAIPlayground/__init__.py +9 -9
  46. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +206 -206
  47. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +192 -192
  48. webscout-7.6/webscout/Provider/TTI/MagicStudio/__init__.py +2 -0
  49. webscout-7.6/webscout/Provider/TTI/MagicStudio/async_magicstudio.py +111 -0
  50. webscout-7.6/webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +109 -0
  51. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/PollinationsAI/async_pollinations.py +5 -24
  52. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +2 -22
  53. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/__init__.py +2 -3
  54. webscout-7.6/webscout/Provider/TTI/aiarta/__init__.py +2 -0
  55. webscout-7.6/webscout/Provider/TTI/aiarta/async_aiarta.py +482 -0
  56. webscout-7.6/webscout/Provider/TTI/aiarta/sync_aiarta.py +440 -0
  57. webscout-7.6/webscout/Provider/TTI/fastflux/__init__.py +22 -0
  58. webscout-7.6/webscout/Provider/TTI/fastflux/async_fastflux.py +257 -0
  59. webscout-7.6/webscout/Provider/TTI/fastflux/sync_fastflux.py +247 -0
  60. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/__init__.py +2 -2
  61. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/deepgram.py +12 -39
  62. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/elevenlabs.py +14 -40
  63. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/gesserit.py +11 -35
  64. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/murfai.py +13 -39
  65. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/parler.py +17 -40
  66. webscout-7.6/webscout/Provider/TTS/speechma.py +180 -0
  67. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/streamElements.py +17 -44
  68. {webscout-7.4 → webscout-7.6}/webscout/Provider/TextPollinationsAI.py +39 -59
  69. {webscout-7.4 → webscout-7.6}/webscout/Provider/Venice.py +217 -200
  70. {webscout-7.4 → webscout-7.6}/webscout/Provider/WiseCat.py +27 -5
  71. {webscout-7.4 → webscout-7.6}/webscout/Provider/Youchat.py +63 -36
  72. {webscout-7.4 → webscout-7.6}/webscout/Provider/__init__.py +13 -8
  73. {webscout-7.4 → webscout-7.6}/webscout/Provider/akashgpt.py +28 -10
  74. webscout-7.6/webscout/Provider/copilot.py +416 -0
  75. webscout-7.6/webscout/Provider/flowith.py +196 -0
  76. {webscout-7.4 → webscout-7.6}/webscout/Provider/freeaichat.py +32 -45
  77. {webscout-7.4 → webscout-7.6}/webscout/Provider/granite.py +17 -53
  78. {webscout-7.4 → webscout-7.6}/webscout/Provider/koala.py +20 -5
  79. {webscout-7.4 → webscout-7.6}/webscout/Provider/llamatutor.py +7 -47
  80. {webscout-7.4 → webscout-7.6}/webscout/Provider/llmchat.py +36 -53
  81. {webscout-7.4 → webscout-7.6}/webscout/Provider/multichat.py +92 -98
  82. {webscout-7.4 → webscout-7.6}/webscout/Provider/talkai.py +1 -0
  83. {webscout-7.4 → webscout-7.6}/webscout/Provider/turboseek.py +3 -0
  84. {webscout-7.4 → webscout-7.6}/webscout/Provider/tutorai.py +2 -0
  85. {webscout-7.4 → webscout-7.6}/webscout/Provider/typegpt.py +154 -64
  86. {webscout-7.4 → webscout-7.6}/webscout/Provider/x0gpt.py +3 -1
  87. {webscout-7.4 → webscout-7.6}/webscout/Provider/yep.py +102 -20
  88. {webscout-7.4 → webscout-7.6}/webscout/__init__.py +3 -0
  89. {webscout-7.4 → webscout-7.6}/webscout/cli.py +4 -40
  90. {webscout-7.4 → webscout-7.6}/webscout/conversation.py +1 -10
  91. {webscout-7.4 → webscout-7.6}/webscout/exceptions.py +19 -9
  92. {webscout-7.4 → webscout-7.6}/webscout/litagent/__init__.py +2 -2
  93. webscout-7.6/webscout/litagent/agent.py +450 -0
  94. webscout-7.6/webscout/litagent/constants.py +60 -0
  95. {webscout-7.4 → webscout-7.6}/webscout/litprinter/__init__.py +0 -3
  96. webscout-7.6/webscout/models.py +181 -0
  97. {webscout-7.4 → webscout-7.6}/webscout/optimizers.py +1 -1
  98. {webscout-7.4 → webscout-7.6}/webscout/prompt_manager.py +2 -8
  99. {webscout-7.4 → webscout-7.6}/webscout/scout/core/scout.py +1 -4
  100. {webscout-7.4 → webscout-7.6}/webscout/scout/core/search_result.py +1 -1
  101. {webscout-7.4 → webscout-7.6}/webscout/scout/core/text_utils.py +1 -1
  102. {webscout-7.4 → webscout-7.6}/webscout/scout/core.py +2 -5
  103. {webscout-7.4 → webscout-7.6}/webscout/scout/element.py +1 -1
  104. {webscout-7.4 → webscout-7.6}/webscout/scout/parsers/html_parser.py +1 -1
  105. {webscout-7.4 → webscout-7.6}/webscout/scout/utils.py +0 -1
  106. {webscout-7.4 → webscout-7.6}/webscout/swiftcli/__init__.py +1 -3
  107. {webscout-7.4 → webscout-7.6}/webscout/tempid.py +1 -1
  108. webscout-7.6/webscout/update_checker.py +134 -0
  109. {webscout-7.4 → webscout-7.6}/webscout/version.py +1 -1
  110. {webscout-7.4 → webscout-7.6}/webscout/webscout_search_async.py +1 -2
  111. {webscout-7.4 → webscout-7.6}/webscout/yep_search.py +297 -297
  112. {webscout-7.4 → webscout-7.6/webscout.egg-info}/PKG-INFO +101 -505
  113. {webscout-7.4 → webscout-7.6}/webscout.egg-info/SOURCES.txt +16 -23
  114. {webscout-7.4 → webscout-7.6}/webscout.egg-info/requires.txt +2 -10
  115. webscout-7.4/LICENSE.md +0 -211
  116. webscout-7.4/webscout/AIutel.py +0 -441
  117. webscout-7.4/webscout/Extra/autollama.py +0 -231
  118. webscout-7.4/webscout/Extra/gguf.py +0 -428
  119. webscout-7.4/webscout/Extra/weather.py +0 -172
  120. webscout-7.4/webscout/Extra/weather_ascii.py +0 -23
  121. webscout-7.4/webscout/Local/__init__.py +0 -10
  122. webscout-7.4/webscout/Local/_version.py +0 -3
  123. webscout-7.4/webscout/Local/formats.py +0 -747
  124. webscout-7.4/webscout/Local/model.py +0 -1368
  125. webscout-7.4/webscout/Local/samplers.py +0 -125
  126. webscout-7.4/webscout/Local/thread.py +0 -539
  127. webscout-7.4/webscout/Local/ui.py +0 -401
  128. webscout-7.4/webscout/Local/utils.py +0 -388
  129. webscout-7.4/webscout/Provider/Amigo.py +0 -274
  130. webscout-7.4/webscout/Provider/Bing.py +0 -243
  131. webscout-7.4/webscout/Provider/DiscordRocks.py +0 -253
  132. webscout-7.4/webscout/Provider/TTI/blackbox/__init__.py +0 -4
  133. webscout-7.4/webscout/Provider/TTI/blackbox/async_blackbox.py +0 -212
  134. webscout-7.4/webscout/Provider/TTI/blackbox/sync_blackbox.py +0 -199
  135. webscout-7.4/webscout/Provider/TTI/deepinfra/__init__.py +0 -4
  136. webscout-7.4/webscout/Provider/TTI/deepinfra/async_deepinfra.py +0 -227
  137. webscout-7.4/webscout/Provider/TTI/deepinfra/sync_deepinfra.py +0 -199
  138. webscout-7.4/webscout/Provider/TTI/imgninza/__init__.py +0 -4
  139. webscout-7.4/webscout/Provider/TTI/imgninza/async_ninza.py +0 -214
  140. webscout-7.4/webscout/Provider/TTI/imgninza/sync_ninza.py +0 -209
  141. webscout-7.4/webscout/Provider/TTS/voicepod.py +0 -117
  142. webscout-7.4/webscout/Provider/dgaf.py +0 -214
  143. webscout-7.4/webscout/litagent/agent.py +0 -119
  144. webscout-7.4/webscout/litagent/constants.py +0 -31
  145. webscout-7.4/webscout/update_checker.py +0 -174
  146. {webscout-7.4 → webscout-7.6}/setup.cfg +0 -0
  147. {webscout-7.4 → webscout-7.6}/webscout/AIbase.py +0 -0
  148. {webscout-7.4 → webscout-7.6}/webscout/Bard.py +0 -0
  149. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/__init__.py +0 -0
  150. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/__init__.py +0 -0
  151. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/channel.py +0 -0
  152. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/errors.py +0 -0
  153. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/extras.py +0 -0
  154. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/https.py +0 -0
  155. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/patterns.py +0 -0
  156. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/playlist.py +0 -0
  157. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/pool.py +0 -0
  158. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/query.py +0 -0
  159. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/stream.py +0 -0
  160. {webscout-7.4 → webscout-7.6}/webscout/Extra/YTToolkit/ytapi/utils.py +0 -0
  161. {webscout-7.4 → webscout-7.6}/webscout/Extra/autocoder/__init__.py +0 -0
  162. {webscout-7.4 → webscout-7.6}/webscout/LLM.py +0 -0
  163. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/__init__.py +0 -0
  164. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/core/__init__.py +0 -0
  165. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/core/level.py +0 -0
  166. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/handlers/__init__.py +0 -0
  167. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/handlers/console.py +0 -0
  168. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/handlers/network.py +0 -0
  169. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/styles/__init__.py +0 -0
  170. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/styles/colors.py +0 -0
  171. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/styles/text.py +0 -0
  172. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/utils/__init__.py +0 -0
  173. {webscout-7.4 → webscout-7.6}/webscout/Litlogger/utils/formatters.py +0 -0
  174. {webscout-7.4 → webscout-7.6}/webscout/Provider/AI21.py +0 -0
  175. {webscout-7.4 → webscout-7.6}/webscout/Provider/AISEARCH/__init__.py +0 -0
  176. {webscout-7.4 → webscout-7.6}/webscout/Provider/AISEARCH/genspark_search.py +0 -0
  177. {webscout-7.4 → webscout-7.6}/webscout/Provider/Andi.py +0 -0
  178. {webscout-7.4 → webscout-7.6}/webscout/Provider/Blackboxai.py +0 -0
  179. {webscout-7.4 → webscout-7.6}/webscout/Provider/ChatGPTES.py +0 -0
  180. {webscout-7.4 → webscout-7.6}/webscout/Provider/Chatify.py +0 -0
  181. {webscout-7.4 → webscout-7.6}/webscout/Provider/Cohere.py +0 -0
  182. {webscout-7.4 → webscout-7.6}/webscout/Provider/DARKAI.py +0 -0
  183. {webscout-7.4 → webscout-7.6}/webscout/Provider/EDITEE.py +0 -0
  184. {webscout-7.4 → webscout-7.6}/webscout/Provider/ElectronHub.py +0 -0
  185. {webscout-7.4 → webscout-7.6}/webscout/Provider/Free2GPT.py +0 -0
  186. {webscout-7.4 → webscout-7.6}/webscout/Provider/GPTWeb.py +0 -0
  187. {webscout-7.4 → webscout-7.6}/webscout/Provider/Groq.py +0 -0
  188. {webscout-7.4 → webscout-7.6}/webscout/Provider/HF_space/__init__.py +0 -0
  189. {webscout-7.4 → webscout-7.6}/webscout/Provider/Koboldai.py +0 -0
  190. {webscout-7.4 → webscout-7.6}/webscout/Provider/Llama.py +0 -0
  191. {webscout-7.4 → webscout-7.6}/webscout/Provider/Llama3.py +0 -0
  192. {webscout-7.4 → webscout-7.6}/webscout/Provider/OLLAMA.py +0 -0
  193. {webscout-7.4 → webscout-7.6}/webscout/Provider/Openai.py +0 -0
  194. {webscout-7.4 → webscout-7.6}/webscout/Provider/QwenLM.py +0 -0
  195. {webscout-7.4 → webscout-7.6}/webscout/Provider/Reka.py +0 -0
  196. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/AiForce/__init__.py +0 -0
  197. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/Nexra/__init__.py +0 -0
  198. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/Nexra/async_nexra.py +0 -0
  199. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/Nexra/sync_nexra.py +0 -0
  200. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/PollinationsAI/__init__.py +0 -0
  201. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/artbit/__init__.py +0 -0
  202. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/artbit/async_artbit.py +0 -0
  203. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/artbit/sync_artbit.py +0 -0
  204. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/huggingface/__init__.py +0 -0
  205. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/huggingface/async_huggingface.py +0 -0
  206. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -0
  207. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/piclumen/__init__.py +0 -0
  208. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/piclumen/async_piclumen.py +0 -0
  209. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -0
  210. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/talkai/__init__.py +0 -0
  211. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/talkai/async_talkai.py +0 -0
  212. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTI/talkai/sync_talkai.py +0 -0
  213. {webscout-7.4 → webscout-7.6}/webscout/Provider/TTS/utils.py +0 -0
  214. {webscout-7.4 → webscout-7.6}/webscout/Provider/TeachAnything.py +0 -0
  215. {webscout-7.4 → webscout-7.6}/webscout/Provider/TwoAI.py +0 -0
  216. {webscout-7.4 → webscout-7.6}/webscout/Provider/ai4chat.py +0 -0
  217. {webscout-7.4 → webscout-7.6}/webscout/Provider/aimathgpt.py +0 -0
  218. {webscout-7.4 → webscout-7.6}/webscout/Provider/askmyai.py +0 -0
  219. {webscout-7.4 → webscout-7.6}/webscout/Provider/bagoodex.py +0 -0
  220. {webscout-7.4 → webscout-7.6}/webscout/Provider/cerebras.py +0 -0
  221. {webscout-7.4 → webscout-7.6}/webscout/Provider/chatglm.py +0 -0
  222. {webscout-7.4 → webscout-7.6}/webscout/Provider/cleeai.py +0 -0
  223. {webscout-7.4 → webscout-7.6}/webscout/Provider/elmo.py +0 -0
  224. {webscout-7.4 → webscout-7.6}/webscout/Provider/gaurish.py +0 -0
  225. {webscout-7.4 → webscout-7.6}/webscout/Provider/geminiapi.py +0 -0
  226. {webscout-7.4 → webscout-7.6}/webscout/Provider/geminiprorealtime.py +0 -0
  227. {webscout-7.4 → webscout-7.6}/webscout/Provider/hermes.py +0 -0
  228. {webscout-7.4 → webscout-7.6}/webscout/Provider/julius.py +0 -0
  229. {webscout-7.4 → webscout-7.6}/webscout/Provider/learnfastai.py +0 -0
  230. {webscout-7.4 → webscout-7.6}/webscout/Provider/lepton.py +0 -0
  231. {webscout-7.4 → webscout-7.6}/webscout/Provider/llama3mitril.py +0 -0
  232. {webscout-7.4 → webscout-7.6}/webscout/Provider/meta.py +0 -0
  233. {webscout-7.4 → webscout-7.6}/webscout/Provider/promptrefine.py +0 -0
  234. {webscout-7.4 → webscout-7.6}/webscout/__main__.py +0 -0
  235. {webscout-7.4 → webscout-7.6}/webscout/litprinter/colors.py +0 -0
  236. {webscout-7.4 → webscout-7.6}/webscout/scout/__init__.py +0 -0
  237. {webscout-7.4 → webscout-7.6}/webscout/scout/core/__init__.py +0 -0
  238. {webscout-7.4 → webscout-7.6}/webscout/scout/core/crawler.py +0 -0
  239. {webscout-7.4 → webscout-7.6}/webscout/scout/core/text_analyzer.py +0 -0
  240. {webscout-7.4 → webscout-7.6}/webscout/scout/core/web_analyzer.py +0 -0
  241. {webscout-7.4 → webscout-7.6}/webscout/scout/parsers/__init__.py +0 -0
  242. {webscout-7.4 → webscout-7.6}/webscout/scout/parsers/html5lib_parser.py +0 -0
  243. {webscout-7.4 → webscout-7.6}/webscout/scout/parsers/lxml_parser.py +0 -0
  244. {webscout-7.4 → webscout-7.6}/webscout/utils.py +0 -0
  245. {webscout-7.4 → webscout-7.6}/webscout/webscout_search.py +0 -0
  246. {webscout-7.4 → webscout-7.6}/webscout/zeroart/__init__.py +0 -0
  247. {webscout-7.4 → webscout-7.6}/webscout/zeroart/base.py +0 -0
  248. {webscout-7.4 → webscout-7.6}/webscout/zeroart/effects.py +0 -0
  249. {webscout-7.4 → webscout-7.6}/webscout/zeroart/fonts.py +0 -0
  250. {webscout-7.4 → webscout-7.6}/webscout.egg-info/dependency_links.txt +0 -0
  251. {webscout-7.4 → webscout-7.6}/webscout.egg-info/entry_points.txt +0 -0
  252. {webscout-7.4 → webscout-7.6}/webscout.egg-info/top_level.txt +0 -0
  253. {webscout-7.4 → webscout-7.6}/webstoken/__init__.py +0 -0
  254. {webscout-7.4 → webscout-7.6}/webstoken/classifier.py +0 -0
  255. {webscout-7.4 → webscout-7.6}/webstoken/keywords.py +0 -0
  256. {webscout-7.4 → webscout-7.6}/webstoken/language.py +0 -0
  257. {webscout-7.4 → webscout-7.6}/webstoken/ner.py +0 -0
  258. {webscout-7.4 → webscout-7.6}/webstoken/normalizer.py +0 -0
  259. {webscout-7.4 → webscout-7.6}/webstoken/processor.py +0 -0
  260. {webscout-7.4 → webscout-7.6}/webstoken/sentiment.py +0 -0
  261. {webscout-7.4 → webscout-7.6}/webstoken/stemmer.py +0 -0
  262. {webscout-7.4 → webscout-7.6}/webstoken/tagger.py +0 -0
  263. {webscout-7.4 → webscout-7.6}/webstoken/tokenizer.py +0 -0
@@ -0,0 +1,146 @@
1
+
2
+ Version 2.0, March 2025
3
+ Webscout License
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work.
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other modifications
42
+ represent, as a whole, an original work of authorship.
43
+
44
+ "Contribution" shall mean any work of authorship, including
45
+ the original version of the Work and any modifications or additions
46
+ to that Work or Derivative Works thereof, that is intentionally
47
+ submitted to Licensor for inclusion in the Work by the copyright owner
48
+ or by an individual or Legal Entity authorized to submit on behalf of
49
+ the copyright owner.
50
+
51
+ 2. Grant of Copyright License. Subject to the terms and conditions of
52
+ this License, each Contributor hereby grants to You a perpetual,
53
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
54
+ copyright license to reproduce, prepare Derivative Works of,
55
+ publicly display, publicly perform, sublicense, and distribute the
56
+ Work and such Derivative Works in Source or Object form.
57
+
58
+ 3. Grant of Patent License. Subject to the terms and conditions of
59
+ this License, each Contributor hereby grants to You a perpetual,
60
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
61
+ (except as stated in this section) patent license to make, have made,
62
+ use, offer to sell, sell, import, and otherwise transfer the Work,
63
+ where such license applies only to those patent claims licensable
64
+ by such Contributor that are necessarily infringed by their
65
+ Contribution(s) alone or by combination of their Contribution(s)
66
+ with the Work to which such Contribution(s) was submitted.
67
+
68
+ 4. Redistribution. You may reproduce and distribute copies of the
69
+ Work or Derivative Works thereof in any medium, with or without
70
+ modifications, and in Source or Object form, provided that You
71
+ meet the following conditions:
72
+
73
+ (a) You must give any other recipients of the Work or
74
+ Derivative Works a copy of this License; and
75
+
76
+ (b) You must cause any modified files to carry prominent notices
77
+ stating that You changed the files; and
78
+
79
+ (c) You must retain, in the Source form of any Derivative Works
80
+ that You distribute, all copyright, patent, trademark, and
81
+ attribution notices from the Source form of the Work; and
82
+
83
+ (d) If the Work includes a "NOTICE" text file as part of its
84
+ distribution, then any Derivative Works that You distribute must
85
+ include a readable copy of the attribution notices contained
86
+ within such NOTICE file; and
87
+
88
+ (e) You must include the following attribution notice prominently
89
+ displayed in any Derivative Works:
90
+ "Based on Webscout (https://github.com/OE-LUCIFER/webscout)"
91
+
92
+ 5. API Usage and Third-Party Services. When using the APIs and services
93
+ accessed through this Work, you must:
94
+
95
+ (a) Comply with all terms of service of the respective API providers; and
96
+
97
+ (b) Maintain appropriate attribution and licenses for third-party services; and
98
+
99
+ (c) Be responsible for obtaining any necessary permissions or licenses; and
100
+
101
+ (d) Not use the Work in any way that could damage or overload third-party services.
102
+
103
+ 6. Submission of Contributions. Unless You explicitly state otherwise,
104
+ any Contribution intentionally submitted for inclusion in the Work
105
+ by You to the Licensor shall be under the terms and conditions of
106
+ this License, without any additional terms or conditions.
107
+
108
+ 7. Trademarks. This License does not grant permission to use the trade
109
+ names, trademarks, service marks, or product names of the Licensor,
110
+ except as required for reasonable and customary use in describing the
111
+ origin of the Work and reproducing the content of the NOTICE file.
112
+
113
+ 8. Disclaimer of Warranty. Unless required by applicable law or
114
+ agreed to in writing, Licensor provides the Work (and each
115
+ Contributor provides its Contributions) on an "AS IS" BASIS,
116
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
117
+ implied, including, without limitation, any warranties or conditions
118
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
119
+ PARTICULAR PURPOSE. You are solely responsible for determining the
120
+ appropriateness of using or redistributing the Work and assume any
121
+ risks associated with Your exercise of permissions under this License.
122
+
123
+ 9. Limitation of Liability. In no event and under no legal theory,
124
+ whether in tort (including negligence), contract, or otherwise,
125
+ unless required by applicable law (such as deliberate and grossly
126
+ negligent acts) or agreed to in writing, shall any Contributor be
127
+ liable to You for damages, including any direct, indirect, special,
128
+ incidental, consequential, or exemplary damages of any character
129
+ arising as a result of this License or out of the use or inability
130
+ to use the Work.
131
+
132
+ END OF TERMS AND CONDITIONS
133
+
134
+ Copyright 2024-2025 Webscout Contributors
135
+
136
+ Licensed under the Webscout License (the "License");
137
+ you may not use this file except in compliance with the License.
138
+ You may obtain a copy of the License at
139
+
140
+ https://github.com/OE-LUCIFER/webscout/blob/main/LICENSE.md
141
+
142
+ Unless required by applicable law or agreed to in writing, software
143
+ distributed under the License is distributed on an "AS IS" BASIS,
144
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145
+ See the License for the specific language governing permissions and
146
+ limitations under the License.