webscout 8.2.8__py3-none-any.whl → 8.3__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (197) hide show
  1. webscout/AIauto.py +34 -16
  2. webscout/AIbase.py +96 -37
  3. webscout/AIutel.py +491 -87
  4. webscout/Bard.py +441 -323
  5. webscout/Extra/GitToolkit/__init__.py +10 -10
  6. webscout/Extra/YTToolkit/ytapi/video.py +232 -232
  7. webscout/Litlogger/README.md +10 -0
  8. webscout/Litlogger/__init__.py +7 -59
  9. webscout/Litlogger/formats.py +4 -0
  10. webscout/Litlogger/handlers.py +103 -0
  11. webscout/Litlogger/levels.py +13 -0
  12. webscout/Litlogger/logger.py +92 -0
  13. webscout/Provider/AISEARCH/Perplexity.py +332 -358
  14. webscout/Provider/AISEARCH/felo_search.py +9 -35
  15. webscout/Provider/AISEARCH/genspark_search.py +30 -56
  16. webscout/Provider/AISEARCH/hika_search.py +4 -16
  17. webscout/Provider/AISEARCH/iask_search.py +410 -436
  18. webscout/Provider/AISEARCH/monica_search.py +4 -30
  19. webscout/Provider/AISEARCH/scira_search.py +6 -32
  20. webscout/Provider/AISEARCH/webpilotai_search.py +38 -64
  21. webscout/Provider/Blackboxai.py +155 -35
  22. webscout/Provider/ChatSandbox.py +2 -1
  23. webscout/Provider/Deepinfra.py +339 -339
  24. webscout/Provider/ExaChat.py +358 -358
  25. webscout/Provider/Gemini.py +169 -169
  26. webscout/Provider/GithubChat.py +1 -2
  27. webscout/Provider/Glider.py +3 -3
  28. webscout/Provider/HeckAI.py +172 -82
  29. webscout/Provider/LambdaChat.py +1 -0
  30. webscout/Provider/MCPCore.py +7 -3
  31. webscout/Provider/OPENAI/BLACKBOXAI.py +421 -139
  32. webscout/Provider/OPENAI/Cloudflare.py +38 -21
  33. webscout/Provider/OPENAI/FalconH1.py +457 -0
  34. webscout/Provider/OPENAI/FreeGemini.py +35 -18
  35. webscout/Provider/OPENAI/NEMOTRON.py +34 -34
  36. webscout/Provider/OPENAI/PI.py +427 -0
  37. webscout/Provider/OPENAI/Qwen3.py +304 -0
  38. webscout/Provider/OPENAI/README.md +952 -1253
  39. webscout/Provider/OPENAI/TwoAI.py +374 -0
  40. webscout/Provider/OPENAI/__init__.py +7 -1
  41. webscout/Provider/OPENAI/ai4chat.py +73 -63
  42. webscout/Provider/OPENAI/api.py +869 -644
  43. webscout/Provider/OPENAI/base.py +2 -0
  44. webscout/Provider/OPENAI/c4ai.py +34 -13
  45. webscout/Provider/OPENAI/chatgpt.py +575 -556
  46. webscout/Provider/OPENAI/chatgptclone.py +512 -487
  47. webscout/Provider/OPENAI/chatsandbox.py +11 -6
  48. webscout/Provider/OPENAI/copilot.py +258 -0
  49. webscout/Provider/OPENAI/deepinfra.py +327 -318
  50. webscout/Provider/OPENAI/e2b.py +140 -104
  51. webscout/Provider/OPENAI/exaai.py +420 -411
  52. webscout/Provider/OPENAI/exachat.py +448 -443
  53. webscout/Provider/OPENAI/flowith.py +7 -3
  54. webscout/Provider/OPENAI/freeaichat.py +12 -8
  55. webscout/Provider/OPENAI/glider.py +15 -8
  56. webscout/Provider/OPENAI/groq.py +5 -2
  57. webscout/Provider/OPENAI/heckai.py +311 -307
  58. webscout/Provider/OPENAI/llmchatco.py +9 -7
  59. webscout/Provider/OPENAI/mcpcore.py +18 -9
  60. webscout/Provider/OPENAI/multichat.py +7 -5
  61. webscout/Provider/OPENAI/netwrck.py +16 -11
  62. webscout/Provider/OPENAI/oivscode.py +290 -0
  63. webscout/Provider/OPENAI/opkfc.py +507 -496
  64. webscout/Provider/OPENAI/pydantic_imports.py +172 -0
  65. webscout/Provider/OPENAI/scirachat.py +29 -17
  66. webscout/Provider/OPENAI/sonus.py +308 -303
  67. webscout/Provider/OPENAI/standardinput.py +442 -433
  68. webscout/Provider/OPENAI/textpollinations.py +18 -11
  69. webscout/Provider/OPENAI/toolbaz.py +419 -413
  70. webscout/Provider/OPENAI/typefully.py +17 -10
  71. webscout/Provider/OPENAI/typegpt.py +21 -11
  72. webscout/Provider/OPENAI/uncovrAI.py +477 -462
  73. webscout/Provider/OPENAI/utils.py +90 -79
  74. webscout/Provider/OPENAI/venice.py +435 -425
  75. webscout/Provider/OPENAI/wisecat.py +387 -381
  76. webscout/Provider/OPENAI/writecream.py +166 -163
  77. webscout/Provider/OPENAI/x0gpt.py +26 -37
  78. webscout/Provider/OPENAI/yep.py +384 -356
  79. webscout/Provider/PI.py +2 -1
  80. webscout/Provider/TTI/README.md +55 -101
  81. webscout/Provider/TTI/__init__.py +4 -9
  82. webscout/Provider/TTI/aiarta.py +365 -0
  83. webscout/Provider/TTI/artbit.py +0 -0
  84. webscout/Provider/TTI/base.py +64 -0
  85. webscout/Provider/TTI/fastflux.py +200 -0
  86. webscout/Provider/TTI/magicstudio.py +201 -0
  87. webscout/Provider/TTI/piclumen.py +203 -0
  88. webscout/Provider/TTI/pixelmuse.py +225 -0
  89. webscout/Provider/TTI/pollinations.py +221 -0
  90. webscout/Provider/TTI/utils.py +11 -0
  91. webscout/Provider/TTS/__init__.py +2 -1
  92. webscout/Provider/TTS/base.py +159 -159
  93. webscout/Provider/TTS/openai_fm.py +129 -0
  94. webscout/Provider/TextPollinationsAI.py +308 -308
  95. webscout/Provider/TwoAI.py +239 -44
  96. webscout/Provider/UNFINISHED/Youchat.py +330 -330
  97. webscout/Provider/UNFINISHED/puterjs.py +635 -0
  98. webscout/Provider/UNFINISHED/test_lmarena.py +119 -119
  99. webscout/Provider/Writecream.py +246 -246
  100. webscout/Provider/__init__.py +2 -2
  101. webscout/Provider/ai4chat.py +33 -8
  102. webscout/Provider/granite.py +41 -6
  103. webscout/Provider/koala.py +169 -169
  104. webscout/Provider/oivscode.py +309 -0
  105. webscout/Provider/samurai.py +3 -2
  106. webscout/Provider/scnet.py +1 -0
  107. webscout/Provider/typegpt.py +3 -3
  108. webscout/Provider/uncovr.py +368 -368
  109. webscout/client.py +70 -0
  110. webscout/litprinter/__init__.py +58 -58
  111. webscout/optimizers.py +419 -419
  112. webscout/scout/README.md +3 -1
  113. webscout/scout/core/crawler.py +134 -64
  114. webscout/scout/core/scout.py +148 -109
  115. webscout/scout/element.py +106 -88
  116. webscout/swiftcli/Readme.md +323 -323
  117. webscout/swiftcli/plugins/manager.py +9 -2
  118. webscout/version.py +1 -1
  119. webscout/zeroart/__init__.py +134 -134
  120. webscout/zeroart/effects.py +100 -100
  121. webscout/zeroart/fonts.py +1238 -1238
  122. {webscout-8.2.8.dist-info → webscout-8.3.dist-info}/METADATA +160 -35
  123. webscout-8.3.dist-info/RECORD +290 -0
  124. {webscout-8.2.8.dist-info → webscout-8.3.dist-info}/WHEEL +1 -1
  125. {webscout-8.2.8.dist-info → webscout-8.3.dist-info}/entry_points.txt +1 -0
  126. webscout/Litlogger/Readme.md +0 -175
  127. webscout/Litlogger/core/__init__.py +0 -6
  128. webscout/Litlogger/core/level.py +0 -23
  129. webscout/Litlogger/core/logger.py +0 -165
  130. webscout/Litlogger/handlers/__init__.py +0 -12
  131. webscout/Litlogger/handlers/console.py +0 -33
  132. webscout/Litlogger/handlers/file.py +0 -143
  133. webscout/Litlogger/handlers/network.py +0 -173
  134. webscout/Litlogger/styles/__init__.py +0 -7
  135. webscout/Litlogger/styles/colors.py +0 -249
  136. webscout/Litlogger/styles/formats.py +0 -458
  137. webscout/Litlogger/styles/text.py +0 -87
  138. webscout/Litlogger/utils/__init__.py +0 -6
  139. webscout/Litlogger/utils/detectors.py +0 -153
  140. webscout/Litlogger/utils/formatters.py +0 -200
  141. webscout/Provider/ChatGPTGratis.py +0 -194
  142. webscout/Provider/TTI/AiForce/README.md +0 -159
  143. webscout/Provider/TTI/AiForce/__init__.py +0 -22
  144. webscout/Provider/TTI/AiForce/async_aiforce.py +0 -224
  145. webscout/Provider/TTI/AiForce/sync_aiforce.py +0 -245
  146. webscout/Provider/TTI/FreeAIPlayground/README.md +0 -99
  147. webscout/Provider/TTI/FreeAIPlayground/__init__.py +0 -9
  148. webscout/Provider/TTI/FreeAIPlayground/async_freeaiplayground.py +0 -181
  149. webscout/Provider/TTI/FreeAIPlayground/sync_freeaiplayground.py +0 -180
  150. webscout/Provider/TTI/ImgSys/README.md +0 -174
  151. webscout/Provider/TTI/ImgSys/__init__.py +0 -23
  152. webscout/Provider/TTI/ImgSys/async_imgsys.py +0 -202
  153. webscout/Provider/TTI/ImgSys/sync_imgsys.py +0 -195
  154. webscout/Provider/TTI/MagicStudio/README.md +0 -101
  155. webscout/Provider/TTI/MagicStudio/__init__.py +0 -2
  156. webscout/Provider/TTI/MagicStudio/async_magicstudio.py +0 -111
  157. webscout/Provider/TTI/MagicStudio/sync_magicstudio.py +0 -109
  158. webscout/Provider/TTI/Nexra/README.md +0 -155
  159. webscout/Provider/TTI/Nexra/__init__.py +0 -22
  160. webscout/Provider/TTI/Nexra/async_nexra.py +0 -286
  161. webscout/Provider/TTI/Nexra/sync_nexra.py +0 -258
  162. webscout/Provider/TTI/PollinationsAI/README.md +0 -146
  163. webscout/Provider/TTI/PollinationsAI/__init__.py +0 -23
  164. webscout/Provider/TTI/PollinationsAI/async_pollinations.py +0 -311
  165. webscout/Provider/TTI/PollinationsAI/sync_pollinations.py +0 -265
  166. webscout/Provider/TTI/aiarta/README.md +0 -134
  167. webscout/Provider/TTI/aiarta/__init__.py +0 -2
  168. webscout/Provider/TTI/aiarta/async_aiarta.py +0 -482
  169. webscout/Provider/TTI/aiarta/sync_aiarta.py +0 -440
  170. webscout/Provider/TTI/artbit/README.md +0 -100
  171. webscout/Provider/TTI/artbit/__init__.py +0 -22
  172. webscout/Provider/TTI/artbit/async_artbit.py +0 -155
  173. webscout/Provider/TTI/artbit/sync_artbit.py +0 -148
  174. webscout/Provider/TTI/fastflux/README.md +0 -129
  175. webscout/Provider/TTI/fastflux/__init__.py +0 -22
  176. webscout/Provider/TTI/fastflux/async_fastflux.py +0 -261
  177. webscout/Provider/TTI/fastflux/sync_fastflux.py +0 -252
  178. webscout/Provider/TTI/huggingface/README.md +0 -114
  179. webscout/Provider/TTI/huggingface/__init__.py +0 -22
  180. webscout/Provider/TTI/huggingface/async_huggingface.py +0 -199
  181. webscout/Provider/TTI/huggingface/sync_huggingface.py +0 -195
  182. webscout/Provider/TTI/piclumen/README.md +0 -161
  183. webscout/Provider/TTI/piclumen/__init__.py +0 -23
  184. webscout/Provider/TTI/piclumen/async_piclumen.py +0 -268
  185. webscout/Provider/TTI/piclumen/sync_piclumen.py +0 -233
  186. webscout/Provider/TTI/pixelmuse/README.md +0 -79
  187. webscout/Provider/TTI/pixelmuse/__init__.py +0 -4
  188. webscout/Provider/TTI/pixelmuse/async_pixelmuse.py +0 -249
  189. webscout/Provider/TTI/pixelmuse/sync_pixelmuse.py +0 -182
  190. webscout/Provider/TTI/talkai/README.md +0 -139
  191. webscout/Provider/TTI/talkai/__init__.py +0 -4
  192. webscout/Provider/TTI/talkai/async_talkai.py +0 -229
  193. webscout/Provider/TTI/talkai/sync_talkai.py +0 -207
  194. webscout/Provider/UNFINISHED/oivscode.py +0 -351
  195. webscout-8.2.8.dist-info/RECORD +0 -334
  196. {webscout-8.2.8.dist-info → webscout-8.3.dist-info}/licenses/LICENSE.md +0 -0
  197. {webscout-8.2.8.dist-info → webscout-8.3.dist-info}/top_level.txt +0 -0
@@ -1,249 +0,0 @@
1
- import aiohttp
2
- import asyncio
3
- import os
4
- import time
5
- from typing import List, Optional, Union, AsyncGenerator
6
- from string import punctuation
7
- from random import choice
8
- from aiohttp import ClientError
9
- from pathlib import Path
10
-
11
- from webscout.AIbase import AsyncImageProvider
12
- from webscout.litagent import LitAgent
13
-
14
- agent = LitAgent()
15
-
16
- class AsyncPixelMuseImager(AsyncImageProvider):
17
- """Your go-to async provider for generating fire images with PixelMuse! ⚡
18
-
19
- Examples:
20
- >>> # Basic usage
21
- >>> provider = AsyncPixelMuseImager()
22
- >>> async def example():
23
- ... images = await provider.generate("Cool art")
24
- ... paths = await provider.save(images)
25
- >>>
26
- >>> # Advanced usage
27
- >>> provider = AsyncPixelMuseImager(timeout=120)
28
- >>> async def example():
29
- ... images = await provider.generate(
30
- ... prompt="Epic dragon",
31
- ... amount=3,
32
- ... model="flux-schnell",
33
- ... style="none",
34
- ... aspect_ratio="1:1"
35
- ... )
36
- ... paths = await provider.save(images, name="dragon", dir="my_art")
37
- """
38
-
39
- AVAILABLE_MODELS = [
40
- "flux-schnell",
41
- "imagen-3-fast",
42
- "imagen-3",
43
- "recraft-v3"
44
- ]
45
-
46
- def __init__(self, timeout: int = 60, proxies: dict = {}):
47
- """Initialize your async PixelMuse provider with custom settings! ⚙️
48
-
49
- Args:
50
- timeout (int): Request timeout in seconds (default: 60)
51
- proxies (dict): Proxy settings for requests (default: {})
52
- """
53
- self.api_endpoint = "https://www.pixelmuse.studio/api/predictions"
54
- self.headers = {
55
- "accept": "*/*",
56
- "accept-language": "en-US,en;q=0.9",
57
- "content-type": "application/json",
58
- "origin": "https://www.pixelmuse.studio",
59
- "referer": "https://www.pixelmuse.studio/",
60
- "sec-ch-ua": '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"',
61
- "sec-ch-ua-mobile": "?0",
62
- "sec-ch-ua-platform": '"Windows"',
63
- "sec-fetch-dest": "empty",
64
- "sec-fetch-mode": "cors",
65
- "sec-fetch-site": "same-origin",
66
- "user-agent": agent.random(),
67
- }
68
- self.timeout = timeout
69
- self.proxies = proxies
70
- self.prompt: str = "AI-generated image - webscout"
71
- self.image_extension: str = "webp"
72
-
73
- async def generate(
74
- self,
75
- prompt: str,
76
- amount: int = 1,
77
- max_retries: int = 3,
78
- retry_delay: int = 5,
79
- model: str = "flux-schnell",
80
- style: str = "none",
81
- aspect_ratio: str = "1:1"
82
- ) -> List[bytes]:
83
- """Generate some amazing images from your prompt asynchronously! ⚡
84
-
85
- Examples:
86
- >>> provider = AsyncPixelMuseImager()
87
- >>> async def example():
88
- ... # Basic usage
89
- ... images = await provider.generate("Cool art")
90
- ... # Advanced usage
91
- ... images = await provider.generate(
92
- ... prompt="Epic dragon",
93
- ... amount=3,
94
- ... model="flux-schnell"
95
- ... )
96
-
97
- Args:
98
- prompt (str): Your creative prompt
99
- amount (int): How many images to generate
100
- max_retries (int): Max retry attempts if generation fails
101
- retry_delay (int): Seconds to wait between retries
102
- model (str): Model to use - check AVAILABLE_MODELS (default: "flux-schnell")
103
- style (str): Style to apply (default: "none")
104
- aspect_ratio (str): Aspect ratio (default: "1:1")
105
-
106
- Returns:
107
- List[bytes]: Your generated images
108
-
109
- Raises:
110
- ValueError: If the inputs ain't valid
111
- ClientError: If the API calls fail after retries
112
- """
113
- assert bool(prompt), "Prompt cannot be null"
114
- assert isinstance(amount, int), f"Amount should be an integer only not {type(amount)}"
115
- assert amount > 0, "Amount should be greater than 0"
116
- assert model in self.AVAILABLE_MODELS, f"Model should be one of {self.AVAILABLE_MODELS}"
117
-
118
- self.prompt = prompt
119
- response = []
120
-
121
- async with aiohttp.ClientSession(headers=self.headers) as session:
122
- for _ in range(amount):
123
- for attempt in range(max_retries):
124
- try:
125
- # First request to get the prediction
126
- async with session.post(
127
- self.api_endpoint,
128
- json=self._create_payload(prompt, model, style, aspect_ratio),
129
- timeout=self.timeout,
130
- proxy=self.proxies.get('http')
131
- ) as resp:
132
- resp.raise_for_status()
133
- data = await resp.json()
134
-
135
- if 'output' in data and len(data['output']) > 0:
136
- image_url = data['output'][0]
137
- # Get the image data from the URL
138
- async with session.get(
139
- image_url,
140
- timeout=self.timeout,
141
- proxy=self.proxies.get('http')
142
- ) as img_resp:
143
- img_resp.raise_for_status()
144
- response.append(await img_resp.read())
145
- break
146
- else:
147
- print(f"Warning: No image data in response: {data}")
148
- if attempt == max_retries - 1:
149
- raise Exception("No image data received after all retries")
150
-
151
- except ClientError as e:
152
- if attempt == max_retries - 1:
153
- raise
154
- else:
155
- await asyncio.sleep(retry_delay)
156
-
157
- return response
158
-
159
- def _create_payload(self, prompt: str, model: str, style: str, aspect_ratio: str) -> dict:
160
- """Create the API request payload 📦
161
-
162
- Args:
163
- prompt (str): The image generation prompt
164
- model (str): Model to use
165
- style (str): Style to apply
166
- aspect_ratio (str): Aspect ratio
167
-
168
- Returns:
169
- dict: API request payload
170
- """
171
- return {
172
- "prompt": prompt,
173
- "model": model,
174
- "style": style,
175
- "aspect_ratio": aspect_ratio
176
- }
177
-
178
- async def save(
179
- self,
180
- response: Union[AsyncGenerator[bytes, None], List[bytes]],
181
- name: Optional[str] = None,
182
- dir: Optional[Union[str, Path]] = None,
183
- filenames_prefix: str = "",
184
- ) -> List[str]:
185
- """Save your amazing images asynchronously! 💾
186
-
187
- Examples:
188
- >>> provider = AsyncPixelMuseImager()
189
- >>> async def example():
190
- ... images = await provider.generate("Cool art")
191
- ... # Save with default settings
192
- ... paths = await provider.save(images)
193
- ... # Save with custom name and directory
194
- ... paths = await provider.save(
195
- ... images,
196
- ... name="my_art",
197
- ... dir="my_images",
198
- ... filenames_prefix="test_"
199
- ... )
200
-
201
- Args:
202
- response (Union[AsyncGenerator[bytes, None], List[bytes]]): Your generated images
203
- name (Optional[str]): Custom name for your images
204
- dir (Optional[Union[str, Path]]): Where to save the images (default: current directory)
205
- filenames_prefix (str): Prefix for your image files
206
-
207
- Returns:
208
- List[str]: Paths to your saved images
209
- """
210
- save_dir = dir if dir else os.getcwd()
211
- if not os.path.exists(save_dir):
212
- os.makedirs(save_dir)
213
-
214
- name = self.prompt if name is None else name
215
- saved_paths = []
216
- timestamp = int(time.time())
217
-
218
- async def save_single_image(image_bytes: bytes, index: int) -> str:
219
- filename = f"{filenames_prefix}{name}_{index}.{self.image_extension}"
220
- filepath = os.path.join(save_dir, filename)
221
-
222
- # Write file using asyncio
223
- async with asyncio.Lock():
224
- with open(filepath, "wb") as f:
225
- f.write(image_bytes)
226
-
227
- return filepath
228
-
229
- # Handle both List[bytes] and AsyncGenerator
230
- if isinstance(response, list):
231
- image_list = response
232
- else:
233
- image_list = [chunk async for chunk in response]
234
-
235
- tasks = [save_single_image(img, i) for i, img in enumerate(image_list)]
236
- saved_paths = await asyncio.gather(*tasks)
237
- return saved_paths
238
-
239
- if __name__ == "__main__":
240
- async def main():
241
- bot = AsyncPixelMuseImager()
242
- try:
243
- resp = await bot.generate("A magical forest with glowing mushrooms and fairy lights", 1)
244
- paths = await bot.save(resp)
245
- print(paths)
246
- except Exception as e:
247
- print(f"An error occurred: {e}")
248
-
249
- asyncio.run(main())
@@ -1,182 +0,0 @@
1
- import requests
2
- import os
3
- from typing import Union, List
4
- from string import punctuation
5
- from random import choice
6
-
7
- from webscout.AIbase import ImageProvider
8
- from webscout.litagent import LitAgent
9
-
10
- class PixelMuseImager(ImageProvider):
11
- """
12
- PixelMuse Image Provider - Create stunning AI art with PixelMuse! 🎨
13
- """
14
-
15
- AVAILABLE_MODELS = [
16
- "flux-schnell",
17
- "imagen-3-fast",
18
- "imagen-3",
19
- "recraft-v3"
20
- ]
21
-
22
- def __init__(
23
- self,
24
- model: str = "flux-schnell",
25
- timeout: int = 60,
26
- proxies: dict = {},
27
- ):
28
- """Initialize your PixelMuse provider with custom settings! ⚙️
29
-
30
- Args:
31
- model (str): Which model to use (default: flux-schnell)
32
- timeout (int): Request timeout in seconds (default: 60)
33
- proxies (dict): Proxy settings for requests (default: {})
34
- logging (bool): Enable fire logging (default: True)
35
- """
36
- self.api_endpoint = "https://www.pixelmuse.studio/api/predictions"
37
- self.headers = {
38
- "accept": "*/*",
39
- "accept-language": "en-US,en;q=0.9",
40
- "content-type": "application/json",
41
- "origin": "https://www.pixelmuse.studio",
42
- "referer": "https://www.pixelmuse.studio/",
43
- "sec-ch-ua": '"Chromium";v="134", "Not:A-Brand";v="24", "Google Chrome";v="134"',
44
- "sec-ch-ua-mobile": "?0",
45
- "sec-ch-ua-platform": '"Windows"',
46
- "sec-fetch-dest": "empty",
47
- "sec-fetch-mode": "cors",
48
- "sec-fetch-site": "same-origin",
49
- "user-agent": LitAgent().random(),
50
- }
51
- self.session = requests.Session()
52
- self.session.headers.update(self.headers)
53
- self.session.proxies.update(proxies)
54
- self.timeout = timeout
55
- self.model = model
56
- self.prompt: str = "AI-generated image - webscout"
57
- self.image_extension: str = "webp"
58
-
59
- def generate(
60
- self, prompt: str, amount: int = 1,
61
- max_retries: int = 3, retry_delay: int = 5,
62
- style: str = "none", aspect_ratio: str = "1:1"
63
- ) -> List[bytes]:
64
- """Generate some amazing images from your prompt! 🎨
65
-
66
- Args:
67
- prompt (str): Your creative prompt
68
- amount (int): How many images to generate
69
- max_retries (int): Max retry attempts if generation fails
70
- retry_delay (int): Seconds to wait between retries
71
- style (str): Style to apply (default: "none")
72
- aspect_ratio (str): Aspect ratio (default: "1:1")
73
-
74
- Returns:
75
- List[bytes]: Your generated images as bytes
76
- """
77
- assert bool(prompt), "Prompt cannot be empty."
78
- assert isinstance(amount, int) and amount > 0, "Amount must be a positive integer."
79
-
80
- self.prompt = prompt
81
- response = []
82
-
83
- for _ in range(amount):
84
- for attempt in range(max_retries):
85
- try:
86
- with self.session.post(
87
- self.api_endpoint,
88
- json=self._create_payload(prompt, self.model, style, aspect_ratio),
89
- timeout=self.timeout
90
- ) as resp:
91
- resp.raise_for_status()
92
- data = resp.json()
93
-
94
- if 'output' in data and len(data['output']) > 0:
95
- image_url = data['output'][0]
96
- # Get the image data from the URL
97
- img_resp = self.session.get(image_url, timeout=self.timeout)
98
- img_resp.raise_for_status()
99
- response.append(img_resp.content)
100
- break
101
- else:
102
- print(f"Warning: No image data in response: {data}")
103
- if attempt == max_retries - 1:
104
- raise Exception("No image data received after all retries")
105
-
106
- except Exception as e:
107
- print(f"Error generating image (attempt {attempt + 1}/{max_retries}): {str(e)}")
108
- if attempt == max_retries - 1:
109
- raise
110
- import time
111
- time.sleep(retry_delay)
112
-
113
- return response
114
-
115
- def _create_payload(self, prompt: str, model: str, style: str, aspect_ratio: str) -> dict:
116
- """Create the API request payload 📦
117
-
118
- Args:
119
- prompt (str): The image generation prompt
120
- model (str): Model to use
121
- style (str): Style to apply
122
- aspect_ratio (str): Aspect ratio
123
-
124
- Returns:
125
- dict: API request payload
126
- """
127
- return {
128
- "prompt": prompt,
129
- "model": model,
130
- "style": style,
131
- "aspect_ratio": aspect_ratio
132
- }
133
-
134
- def save(
135
- self,
136
- response: List[bytes],
137
- name: str = None,
138
- dir: str = os.getcwd(),
139
- filenames_prefix: str = "",
140
- ) -> List[str]:
141
- """Save your amazing images! 💾
142
-
143
- Args:
144
- response (List[bytes]): List of image data
145
- name (str, optional): Base name for saved files
146
- dir (str, optional): Where to save the images
147
- filenames_prefix (str, optional): Prefix for filenames
148
-
149
- Returns:
150
- List[str]: List of saved filenames
151
- """
152
- assert isinstance(response, list), f"Response should be of {list} not {type(response)}"
153
- name = self.prompt if name is None else name
154
-
155
- if not os.path.exists(dir):
156
- os.makedirs(dir)
157
-
158
- filenames = []
159
- count = 0
160
- for image in response:
161
- def complete_path():
162
- count_value = "" if count == 0 else f"_{count}"
163
- return os.path.join(dir, name + count_value + "." + self.image_extension)
164
-
165
- while os.path.isfile(complete_path()):
166
- count += 1
167
-
168
- absolute_path_to_file = complete_path()
169
- filenames.append(filenames_prefix + os.path.split(absolute_path_to_file)[1])
170
-
171
- with open(absolute_path_to_file, "wb") as fh:
172
- fh.write(image)
173
- return filenames
174
-
175
-
176
- if __name__ == "__main__":
177
- bot = PixelMuseImager()
178
- try:
179
- resp = bot.generate("A magical forest with glowing mushrooms and fairy lights", 1)
180
- print(bot.save(resp))
181
- except Exception:
182
- pass
@@ -1,139 +0,0 @@
1
- # 🎨 TalkaiImager - Fire AI Art Generator! 🔥
2
-
3
- Yo fam! Welcome to TalkaiImager - your go-to provider for creating some absolutely fire AI art! 🎨
4
-
5
- ## 🚀 Features
6
-
7
- - Both sync and async support for maximum flexibility 💪
8
- - Fire error handling for smooth operation 🛡️
9
- - Optional logging with cyberpunk vibes 🌟
10
- - Dynamic user agents for stealth mode 🥷
11
- - Proxy support for extra privacy 🔒
12
- - Customizable timeouts and retries ⚙️
13
- - Smart retry mechanism 🔄
14
-
15
- ## 💫 Installation
16
-
17
- ```bash
18
- pip install webscout # All you need fam! 🔥
19
- ```
20
-
21
- ## 🎯 Usage
22
-
23
- ### 🔥 Sync Way (TalkaiImager)
24
-
25
- ```python
26
- from webscout import TalkaiImager
27
-
28
- # Initialize with fire logging! 🚀
29
- imager = TalkaiImager(logging=True)
30
-
31
- # Generate a single image
32
- images = imager.generate("Epic dragon breathing fire")
33
- paths = imager.save(images)
34
- print(paths) # ['epic_dragon_0.png']
35
-
36
- # Generate multiple images with retries
37
- images = imager.generate(
38
- "Cyberpunk city at night",
39
- amount=3,
40
- max_retries=5,
41
- retry_delay=3
42
- )
43
- paths = imager.save(images)
44
- print(paths) # ['cyberpunk_city_0.png', 'cyberpunk_city_1.png', 'cyberpunk_city_2.png']
45
-
46
- # Stealth mode (no logging)
47
- quiet_imager = TalkaiImager(logging=False)
48
- images = quiet_imager.generate("Secret art")
49
- paths = quiet_imager.save(images)
50
- ```
51
-
52
- ### ⚡ Async Way (AsyncTalkaiImager)
53
-
54
- ```python
55
- from webscout import AsyncTalkaiImager
56
- import asyncio
57
-
58
- async def generate_art():
59
- # Initialize with fire logging! 🚀
60
- imager = AsyncTalkaiImager(logging=True)
61
-
62
- # Generate multiple images
63
- images = await imager.generate(
64
- "Epic dragon breathing fire",
65
- amount=2,
66
- max_retries=3,
67
- retry_delay=5
68
- )
69
- paths = await imager.save(images)
70
- print(paths) # ['epic_dragon_0.png', 'epic_dragon_1.png']
71
-
72
- # Custom save location
73
- images = await imager.generate("Cool art")
74
- paths = await imager.save(images, dir="my_art", filenames_prefix="fire_")
75
-
76
- # Run it!
77
- asyncio.run(generate_art())
78
- ```
79
-
80
- ### 🛠️ Advanced Usage
81
-
82
- ```python
83
- # With proxy and custom timeout
84
- imager = TalkaiImager(
85
- timeout=120,
86
- proxies={
87
- 'http': 'http://10.10.10.1:8000',
88
- 'https': 'http://10.10.10.1:8000'
89
- },
90
- logging=True
91
- )
92
-
93
- # Custom save options
94
- images = imager.generate(
95
- "Cool art",
96
- max_retries=5,
97
- retry_delay=3
98
- )
99
- paths = imager.save(
100
- images,
101
- name="masterpiece",
102
- dir="my_art_folder",
103
- filenames_prefix="fire_"
104
- )
105
- ```
106
-
107
- ## ⚡ Error Handling
108
-
109
- We got your back with proper error handling:
110
-
111
- ```python
112
- try:
113
- images = imager.generate("Cool art")
114
- paths = imager.save(images)
115
- except exceptions.APIConnectionError as e:
116
- print("Connection issues! Check your internet! 🌐")
117
- except exceptions.InvalidResponseError as e:
118
- print("Invalid response from API! 🚫")
119
- except exceptions.FailedToGenerateResponseError as e:
120
- print("Failed to generate image! 😢")
121
- except Exception as e:
122
- print(f"Something went wrong fam: {e} 😢")
123
- ```
124
-
125
- ## 🔒 Security Tips
126
-
127
- - Use proxies for extra privacy 🛡️
128
- - Enable stealth mode (logging=False) for sensitive ops 🤫
129
- - Don't expose sensitive info in prompts 🔐
130
- - Use custom timeouts for stability 🕒
131
-
132
- ## 🎛️ Parameters Guide
133
-
134
- - `amount`: Number of images to generate (default: 1)
135
- - `max_retries`: Number of retry attempts (default: 3)
136
- - `retry_delay`: Seconds between retries (default: 5)
137
- - `timeout`: Request timeout in seconds (default: 60)
138
-
139
- Made with 💖 by the HelpingAI Team! Keep it real fam! 🔥👑
@@ -1,4 +0,0 @@
1
- from .sync_talkai import TalkaiImager
2
- from .async_talkai import AsyncTalkaiImager
3
-
4
- __all__ = ["TalkaiImager", "AsyncTalkaiImager"]