unrealon 1.0.2__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.
Files changed (244) hide show
  1. unrealon-1.0.2.dist-info/LICENSE +21 -0
  2. unrealon-1.0.2.dist-info/METADATA +803 -0
  3. unrealon-1.0.2.dist-info/RECORD +244 -0
  4. unrealon-1.0.2.dist-info/WHEEL +4 -0
  5. unrealon_browser/README.md +24 -0
  6. unrealon_browser/__init__.py +26 -0
  7. unrealon_browser/pyproject.toml +182 -0
  8. unrealon_browser/src/__init__.py +62 -0
  9. unrealon_browser/src/cli/__init__.py +12 -0
  10. unrealon_browser/src/cli/browser_cli.py +249 -0
  11. unrealon_browser/src/cli/cookies_cli.py +397 -0
  12. unrealon_browser/src/cli/interactive_mode.py +338 -0
  13. unrealon_browser/src/cli/main.py +52 -0
  14. unrealon_browser/src/core/__init__.py +9 -0
  15. unrealon_browser/src/core/browser_manager.py +643 -0
  16. unrealon_browser/src/dto/__init__.py +65 -0
  17. unrealon_browser/src/dto/models/config.py +31 -0
  18. unrealon_browser/src/dto/models/core.py +60 -0
  19. unrealon_browser/src/dto/models/dataclasses.py +58 -0
  20. unrealon_browser/src/dto/models/detection.py +65 -0
  21. unrealon_browser/src/dto/models/enums.py +63 -0
  22. unrealon_browser/src/dto/models/statistics.py +74 -0
  23. unrealon_browser/src/managers/__init__.py +18 -0
  24. unrealon_browser/src/managers/captcha.py +542 -0
  25. unrealon_browser/src/managers/cookies.py +395 -0
  26. unrealon_browser/src/managers/logger_bridge.py +395 -0
  27. unrealon_browser/src/managers/profile.py +436 -0
  28. unrealon_browser/src/managers/stealth.py +377 -0
  29. unrealon_driver/README.md +204 -0
  30. unrealon_driver/__init__.py +26 -0
  31. unrealon_driver/pyproject.toml +187 -0
  32. unrealon_driver/src/__init__.py +90 -0
  33. unrealon_driver/src/cli/__init__.py +10 -0
  34. unrealon_driver/src/cli/main.py +66 -0
  35. unrealon_driver/src/cli/simple.py +510 -0
  36. unrealon_driver/src/config/__init__.py +11 -0
  37. unrealon_driver/src/config/auto_config.py +478 -0
  38. unrealon_driver/src/core/__init__.py +18 -0
  39. unrealon_driver/src/core/exceptions.py +289 -0
  40. unrealon_driver/src/core/parser.py +638 -0
  41. unrealon_driver/src/dto/__init__.py +66 -0
  42. unrealon_driver/src/dto/cli.py +119 -0
  43. unrealon_driver/src/dto/config.py +18 -0
  44. unrealon_driver/src/dto/events.py +237 -0
  45. unrealon_driver/src/dto/execution.py +313 -0
  46. unrealon_driver/src/dto/services.py +311 -0
  47. unrealon_driver/src/execution/__init__.py +23 -0
  48. unrealon_driver/src/execution/daemon_mode.py +317 -0
  49. unrealon_driver/src/execution/interactive_mode.py +88 -0
  50. unrealon_driver/src/execution/modes.py +45 -0
  51. unrealon_driver/src/execution/scheduled_mode.py +209 -0
  52. unrealon_driver/src/execution/test_mode.py +250 -0
  53. unrealon_driver/src/logging/__init__.py +24 -0
  54. unrealon_driver/src/logging/driver_logger.py +512 -0
  55. unrealon_driver/src/services/__init__.py +24 -0
  56. unrealon_driver/src/services/browser_service.py +726 -0
  57. unrealon_driver/src/services/llm/__init__.py +15 -0
  58. unrealon_driver/src/services/llm/browser_llm_service.py +363 -0
  59. unrealon_driver/src/services/llm/llm.py +195 -0
  60. unrealon_driver/src/services/logger_service.py +232 -0
  61. unrealon_driver/src/services/metrics_service.py +185 -0
  62. unrealon_driver/src/services/scheduler_service.py +489 -0
  63. unrealon_driver/src/services/websocket_service.py +362 -0
  64. unrealon_driver/src/utils/__init__.py +16 -0
  65. unrealon_driver/src/utils/service_factory.py +317 -0
  66. unrealon_driver/src/utils/time_formatter.py +338 -0
  67. unrealon_llm/README.md +44 -0
  68. unrealon_llm/__init__.py +26 -0
  69. unrealon_llm/pyproject.toml +154 -0
  70. unrealon_llm/src/__init__.py +228 -0
  71. unrealon_llm/src/cli/__init__.py +0 -0
  72. unrealon_llm/src/core/__init__.py +11 -0
  73. unrealon_llm/src/core/smart_client.py +438 -0
  74. unrealon_llm/src/dto/__init__.py +155 -0
  75. unrealon_llm/src/dto/models/__init__.py +0 -0
  76. unrealon_llm/src/dto/models/config.py +343 -0
  77. unrealon_llm/src/dto/models/core.py +328 -0
  78. unrealon_llm/src/dto/models/enums.py +123 -0
  79. unrealon_llm/src/dto/models/html_analysis.py +345 -0
  80. unrealon_llm/src/dto/models/statistics.py +473 -0
  81. unrealon_llm/src/dto/models/translation.py +383 -0
  82. unrealon_llm/src/dto/models/type_conversion.py +462 -0
  83. unrealon_llm/src/dto/schemas/__init__.py +0 -0
  84. unrealon_llm/src/exceptions.py +392 -0
  85. unrealon_llm/src/llm_config/__init__.py +20 -0
  86. unrealon_llm/src/llm_config/logging_config.py +178 -0
  87. unrealon_llm/src/llm_logging/__init__.py +42 -0
  88. unrealon_llm/src/llm_logging/llm_events.py +107 -0
  89. unrealon_llm/src/llm_logging/llm_logger.py +466 -0
  90. unrealon_llm/src/managers/__init__.py +15 -0
  91. unrealon_llm/src/managers/cache_manager.py +67 -0
  92. unrealon_llm/src/managers/cost_manager.py +107 -0
  93. unrealon_llm/src/managers/request_manager.py +298 -0
  94. unrealon_llm/src/modules/__init__.py +0 -0
  95. unrealon_llm/src/modules/html_processor/__init__.py +25 -0
  96. unrealon_llm/src/modules/html_processor/base_processor.py +294 -0
  97. unrealon_llm/src/modules/html_processor/details_processor.py +61 -0
  98. unrealon_llm/src/modules/html_processor/listing_processor.py +67 -0
  99. unrealon_llm/src/modules/html_processor/models/__init__.py +20 -0
  100. unrealon_llm/src/modules/html_processor/models/processing_models.py +40 -0
  101. unrealon_llm/src/modules/html_processor/models/universal_model.py +56 -0
  102. unrealon_llm/src/modules/html_processor/processor.py +102 -0
  103. unrealon_llm/src/modules/llm/__init__.py +0 -0
  104. unrealon_llm/src/modules/translator/__init__.py +0 -0
  105. unrealon_llm/src/provider.py +116 -0
  106. unrealon_llm/src/utils/__init__.py +95 -0
  107. unrealon_llm/src/utils/common.py +64 -0
  108. unrealon_llm/src/utils/data_extractor.py +188 -0
  109. unrealon_llm/src/utils/html_cleaner.py +767 -0
  110. unrealon_llm/src/utils/language_detector.py +308 -0
  111. unrealon_llm/src/utils/models_cache.py +592 -0
  112. unrealon_llm/src/utils/smart_counter.py +229 -0
  113. unrealon_llm/src/utils/token_counter.py +189 -0
  114. unrealon_sdk/README.md +25 -0
  115. unrealon_sdk/__init__.py +30 -0
  116. unrealon_sdk/pyproject.toml +231 -0
  117. unrealon_sdk/src/__init__.py +150 -0
  118. unrealon_sdk/src/cli/__init__.py +12 -0
  119. unrealon_sdk/src/cli/commands/__init__.py +22 -0
  120. unrealon_sdk/src/cli/commands/benchmark.py +42 -0
  121. unrealon_sdk/src/cli/commands/diagnostics.py +573 -0
  122. unrealon_sdk/src/cli/commands/health.py +46 -0
  123. unrealon_sdk/src/cli/commands/integration.py +498 -0
  124. unrealon_sdk/src/cli/commands/reports.py +43 -0
  125. unrealon_sdk/src/cli/commands/security.py +36 -0
  126. unrealon_sdk/src/cli/commands/server.py +483 -0
  127. unrealon_sdk/src/cli/commands/servers.py +56 -0
  128. unrealon_sdk/src/cli/commands/tests.py +55 -0
  129. unrealon_sdk/src/cli/main.py +126 -0
  130. unrealon_sdk/src/cli/utils/reporter.py +519 -0
  131. unrealon_sdk/src/clients/openapi.yaml +3347 -0
  132. unrealon_sdk/src/clients/python_http/__init__.py +3 -0
  133. unrealon_sdk/src/clients/python_http/api_config.py +228 -0
  134. unrealon_sdk/src/clients/python_http/models/BaseModel.py +12 -0
  135. unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +33 -0
  136. unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +17 -0
  137. unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +35 -0
  138. unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +10 -0
  139. unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +21 -0
  140. unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +33 -0
  141. unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +11 -0
  142. unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +27 -0
  143. unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +21 -0
  144. unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +23 -0
  145. unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +25 -0
  146. unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +16 -0
  147. unrealon_sdk/src/clients/python_http/models/HealthResponse.py +23 -0
  148. unrealon_sdk/src/clients/python_http/models/HealthStatus.py +33 -0
  149. unrealon_sdk/src/clients/python_http/models/LogLevel.py +10 -0
  150. unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +27 -0
  151. unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +23 -0
  152. unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +9 -0
  153. unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +33 -0
  154. unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +39 -0
  155. unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +25 -0
  156. unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +21 -0
  157. unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +28 -0
  158. unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +25 -0
  159. unrealon_sdk/src/clients/python_http/models/ParserType.py +10 -0
  160. unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +19 -0
  161. unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +20 -0
  162. unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +19 -0
  163. unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +10 -0
  164. unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +25 -0
  165. unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +47 -0
  166. unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +23 -0
  167. unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +10 -0
  168. unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +19 -0
  169. unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +26 -0
  170. unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +23 -0
  171. unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +31 -0
  172. unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +23 -0
  173. unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +25 -0
  174. unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +23 -0
  175. unrealon_sdk/src/clients/python_http/models/ValidationError.py +18 -0
  176. unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +21 -0
  177. unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +21 -0
  178. unrealon_sdk/src/clients/python_http/models/__init__.py +44 -0
  179. unrealon_sdk/src/clients/python_http/services/None_service.py +35 -0
  180. unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +190 -0
  181. unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +289 -0
  182. unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +187 -0
  183. unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +119 -0
  184. unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +198 -0
  185. unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
  186. unrealon_sdk/src/clients/python_http/services/admin_service.py +125 -0
  187. unrealon_sdk/src/clients/python_http/services/async_None_service.py +35 -0
  188. unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +190 -0
  189. unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +289 -0
  190. unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +189 -0
  191. unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +123 -0
  192. unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +200 -0
  193. unrealon_sdk/src/clients/python_http/services/async_admin_service.py +125 -0
  194. unrealon_sdk/src/clients/python_websocket/__init__.py +28 -0
  195. unrealon_sdk/src/clients/python_websocket/client.py +490 -0
  196. unrealon_sdk/src/clients/python_websocket/events.py +732 -0
  197. unrealon_sdk/src/clients/python_websocket/example.py +136 -0
  198. unrealon_sdk/src/clients/python_websocket/types.py +871 -0
  199. unrealon_sdk/src/core/__init__.py +64 -0
  200. unrealon_sdk/src/core/client.py +556 -0
  201. unrealon_sdk/src/core/config.py +465 -0
  202. unrealon_sdk/src/core/exceptions.py +239 -0
  203. unrealon_sdk/src/core/metadata.py +191 -0
  204. unrealon_sdk/src/core/models.py +142 -0
  205. unrealon_sdk/src/core/types.py +68 -0
  206. unrealon_sdk/src/dto/__init__.py +268 -0
  207. unrealon_sdk/src/dto/authentication.py +108 -0
  208. unrealon_sdk/src/dto/cache.py +208 -0
  209. unrealon_sdk/src/dto/common.py +19 -0
  210. unrealon_sdk/src/dto/concurrency.py +393 -0
  211. unrealon_sdk/src/dto/events.py +108 -0
  212. unrealon_sdk/src/dto/health.py +339 -0
  213. unrealon_sdk/src/dto/load_balancing.py +336 -0
  214. unrealon_sdk/src/dto/logging.py +230 -0
  215. unrealon_sdk/src/dto/performance.py +165 -0
  216. unrealon_sdk/src/dto/rate_limiting.py +295 -0
  217. unrealon_sdk/src/dto/resource_pooling.py +128 -0
  218. unrealon_sdk/src/dto/structured_logging.py +112 -0
  219. unrealon_sdk/src/dto/task_scheduling.py +121 -0
  220. unrealon_sdk/src/dto/websocket.py +55 -0
  221. unrealon_sdk/src/enterprise/__init__.py +59 -0
  222. unrealon_sdk/src/enterprise/authentication.py +401 -0
  223. unrealon_sdk/src/enterprise/cache_manager.py +578 -0
  224. unrealon_sdk/src/enterprise/error_recovery.py +494 -0
  225. unrealon_sdk/src/enterprise/event_system.py +549 -0
  226. unrealon_sdk/src/enterprise/health_monitor.py +747 -0
  227. unrealon_sdk/src/enterprise/load_balancer.py +964 -0
  228. unrealon_sdk/src/enterprise/logging/__init__.py +68 -0
  229. unrealon_sdk/src/enterprise/logging/cleanup.py +156 -0
  230. unrealon_sdk/src/enterprise/logging/development.py +744 -0
  231. unrealon_sdk/src/enterprise/logging/service.py +410 -0
  232. unrealon_sdk/src/enterprise/multithreading_manager.py +853 -0
  233. unrealon_sdk/src/enterprise/performance_monitor.py +539 -0
  234. unrealon_sdk/src/enterprise/proxy_manager.py +696 -0
  235. unrealon_sdk/src/enterprise/rate_limiter.py +652 -0
  236. unrealon_sdk/src/enterprise/resource_pool.py +763 -0
  237. unrealon_sdk/src/enterprise/task_scheduler.py +709 -0
  238. unrealon_sdk/src/internal/__init__.py +10 -0
  239. unrealon_sdk/src/internal/command_router.py +497 -0
  240. unrealon_sdk/src/internal/connection_manager.py +397 -0
  241. unrealon_sdk/src/internal/http_client.py +446 -0
  242. unrealon_sdk/src/internal/websocket_client.py +420 -0
  243. unrealon_sdk/src/provider.py +471 -0
  244. unrealon_sdk/src/utils.py +234 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 UnrealOn Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.