unrealon 1.0.9__tar.gz → 1.1.1__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.
Files changed (312) hide show
  1. unrealon-1.1.1/.gitignore +350 -0
  2. {unrealon-1.0.9 → unrealon-1.1.1}/LICENSE +1 -1
  3. unrealon-1.1.1/MANIFEST.in +55 -0
  4. unrealon-1.1.1/PKG-INFO +722 -0
  5. unrealon-1.1.1/README.md +643 -0
  6. unrealon-1.1.1/pyproject.toml +327 -0
  7. unrealon-1.1.1/requirements-dev.txt +41 -0
  8. unrealon-1.1.1/requirements-test.txt +29 -0
  9. unrealon-1.1.1/requirements.txt +23 -0
  10. unrealon-1.1.1/src/unrealon/__init__.py +30 -0
  11. unrealon-1.1.1/src/unrealon_bridge/__init__.py +114 -0
  12. unrealon-1.1.1/src/unrealon_bridge/cli.py +316 -0
  13. unrealon-1.1.1/src/unrealon_bridge/client/__init__.py +93 -0
  14. unrealon-1.1.1/src/unrealon_bridge/client/base.py +78 -0
  15. unrealon-1.1.1/src/unrealon_bridge/client/commands.py +89 -0
  16. unrealon-1.1.1/src/unrealon_bridge/client/connection.py +90 -0
  17. unrealon-1.1.1/src/unrealon_bridge/client/events.py +65 -0
  18. unrealon-1.1.1/src/unrealon_bridge/client/health.py +38 -0
  19. unrealon-1.1.1/src/unrealon_bridge/client/html_parser.py +146 -0
  20. unrealon-1.1.1/src/unrealon_bridge/client/logging.py +139 -0
  21. unrealon-1.1.1/src/unrealon_bridge/client/proxy.py +70 -0
  22. unrealon-1.1.1/src/unrealon_bridge/client/scheduler.py +450 -0
  23. unrealon-1.1.1/src/unrealon_bridge/client/session.py +70 -0
  24. unrealon-1.1.1/src/unrealon_bridge/configs/__init__.py +14 -0
  25. unrealon-1.1.1/src/unrealon_bridge/configs/bridge_config.py +212 -0
  26. unrealon-1.1.1/src/unrealon_bridge/configs/bridge_config.yaml +39 -0
  27. unrealon-1.1.1/src/unrealon_bridge/models/__init__.py +138 -0
  28. unrealon-1.1.1/src/unrealon_bridge/models/base.py +28 -0
  29. unrealon-1.1.1/src/unrealon_bridge/models/command.py +41 -0
  30. unrealon-1.1.1/src/unrealon_bridge/models/events.py +40 -0
  31. unrealon-1.1.1/src/unrealon_bridge/models/html_parser.py +79 -0
  32. unrealon-1.1.1/src/unrealon_bridge/models/logging.py +55 -0
  33. unrealon-1.1.1/src/unrealon_bridge/models/parser.py +63 -0
  34. unrealon-1.1.1/src/unrealon_bridge/models/proxy.py +41 -0
  35. unrealon-1.1.1/src/unrealon_bridge/models/requests.py +95 -0
  36. unrealon-1.1.1/src/unrealon_bridge/models/responses.py +88 -0
  37. unrealon-1.1.1/src/unrealon_bridge/models/scheduler.py +592 -0
  38. unrealon-1.1.1/src/unrealon_bridge/models/session.py +28 -0
  39. unrealon-1.1.1/src/unrealon_bridge/server/__init__.py +91 -0
  40. unrealon-1.1.1/src/unrealon_bridge/server/base.py +171 -0
  41. unrealon-1.1.1/src/unrealon_bridge/server/handlers/__init__.py +23 -0
  42. unrealon-1.1.1/src/unrealon_bridge/server/handlers/command.py +110 -0
  43. unrealon-1.1.1/src/unrealon_bridge/server/handlers/html_parser.py +139 -0
  44. unrealon-1.1.1/src/unrealon_bridge/server/handlers/logging.py +95 -0
  45. unrealon-1.1.1/src/unrealon_bridge/server/handlers/parser.py +95 -0
  46. unrealon-1.1.1/src/unrealon_bridge/server/handlers/proxy.py +75 -0
  47. unrealon-1.1.1/src/unrealon_bridge/server/handlers/scheduler.py +545 -0
  48. unrealon-1.1.1/src/unrealon_bridge/server/handlers/session.py +66 -0
  49. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/__init__.py +7 -0
  50. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/cli/browser_cli.py +6 -13
  51. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/cli/cookies_cli.py +5 -1
  52. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/core/browser_manager.py +2 -2
  53. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/managers/captcha.py +1 -1
  54. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/managers/cookies.py +1 -1
  55. unrealon-1.1.1/src/unrealon_browser/managers/logger_bridge.py +231 -0
  56. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/managers/profile.py +1 -1
  57. unrealon-1.1.1/src/unrealon_driver/__init__.py +80 -0
  58. unrealon-1.1.1/src/unrealon_driver/browser/__init__.py +8 -0
  59. unrealon-1.1.1/src/unrealon_driver/browser/config.py +74 -0
  60. unrealon-1.1.1/src/unrealon_driver/browser/manager.py +416 -0
  61. unrealon-1.1.1/src/unrealon_driver/exceptions.py +28 -0
  62. unrealon-1.1.1/src/unrealon_driver/parser/__init__.py +55 -0
  63. unrealon-1.1.1/src/unrealon_driver/parser/cli_manager.py +141 -0
  64. unrealon-1.1.1/src/unrealon_driver/parser/daemon_manager.py +227 -0
  65. unrealon-1.1.1/src/unrealon_driver/parser/managers/__init__.py +46 -0
  66. unrealon-1.1.1/src/unrealon_driver/parser/managers/browser.py +51 -0
  67. unrealon-1.1.1/src/unrealon_driver/parser/managers/config.py +281 -0
  68. unrealon-1.1.1/src/unrealon_driver/parser/managers/error.py +412 -0
  69. unrealon-1.1.1/src/unrealon_driver/parser/managers/html.py +732 -0
  70. unrealon-1.1.1/src/unrealon_driver/parser/managers/logging.py +609 -0
  71. unrealon-1.1.1/src/unrealon_driver/parser/managers/result.py +321 -0
  72. unrealon-1.1.1/src/unrealon_driver/parser/parser_manager.py +628 -0
  73. unrealon-1.0.9/PKG-INFO +0 -810
  74. unrealon-1.0.9/README.md +0 -769
  75. unrealon-1.0.9/pyproject.toml +0 -114
  76. unrealon-1.0.9/requirements-dev.txt +0 -87
  77. unrealon-1.0.9/requirements.txt +0 -75
  78. unrealon-1.0.9/unrealon/__init__.py +0 -28
  79. unrealon-1.0.9/unrealon/sdk_config.py +0 -88
  80. unrealon-1.0.9/unrealon_browser/__init__.py +0 -26
  81. unrealon-1.0.9/unrealon_browser/pyproject.toml +0 -182
  82. unrealon-1.0.9/unrealon_browser/src/managers/logger_bridge.py +0 -395
  83. unrealon-1.0.9/unrealon_driver/README.md +0 -204
  84. unrealon-1.0.9/unrealon_driver/__init__.py +0 -26
  85. unrealon-1.0.9/unrealon_driver/pyproject.toml +0 -187
  86. unrealon-1.0.9/unrealon_driver/src/__init__.py +0 -90
  87. unrealon-1.0.9/unrealon_driver/src/cli/__init__.py +0 -10
  88. unrealon-1.0.9/unrealon_driver/src/cli/main.py +0 -66
  89. unrealon-1.0.9/unrealon_driver/src/cli/simple.py +0 -510
  90. unrealon-1.0.9/unrealon_driver/src/config/__init__.py +0 -11
  91. unrealon-1.0.9/unrealon_driver/src/config/auto_config.py +0 -478
  92. unrealon-1.0.9/unrealon_driver/src/core/__init__.py +0 -18
  93. unrealon-1.0.9/unrealon_driver/src/core/exceptions.py +0 -289
  94. unrealon-1.0.9/unrealon_driver/src/core/parser.py +0 -638
  95. unrealon-1.0.9/unrealon_driver/src/dto/__init__.py +0 -66
  96. unrealon-1.0.9/unrealon_driver/src/dto/cli.py +0 -119
  97. unrealon-1.0.9/unrealon_driver/src/dto/config.py +0 -18
  98. unrealon-1.0.9/unrealon_driver/src/dto/events.py +0 -237
  99. unrealon-1.0.9/unrealon_driver/src/dto/execution.py +0 -313
  100. unrealon-1.0.9/unrealon_driver/src/dto/services.py +0 -311
  101. unrealon-1.0.9/unrealon_driver/src/execution/__init__.py +0 -23
  102. unrealon-1.0.9/unrealon_driver/src/execution/daemon_mode.py +0 -317
  103. unrealon-1.0.9/unrealon_driver/src/execution/interactive_mode.py +0 -88
  104. unrealon-1.0.9/unrealon_driver/src/execution/modes.py +0 -45
  105. unrealon-1.0.9/unrealon_driver/src/execution/scheduled_mode.py +0 -209
  106. unrealon-1.0.9/unrealon_driver/src/execution/test_mode.py +0 -250
  107. unrealon-1.0.9/unrealon_driver/src/logging/__init__.py +0 -24
  108. unrealon-1.0.9/unrealon_driver/src/logging/driver_logger.py +0 -512
  109. unrealon-1.0.9/unrealon_driver/src/services/__init__.py +0 -24
  110. unrealon-1.0.9/unrealon_driver/src/services/browser_service.py +0 -726
  111. unrealon-1.0.9/unrealon_driver/src/services/llm/__init__.py +0 -15
  112. unrealon-1.0.9/unrealon_driver/src/services/llm/browser_llm_service.py +0 -363
  113. unrealon-1.0.9/unrealon_driver/src/services/llm/llm.py +0 -195
  114. unrealon-1.0.9/unrealon_driver/src/services/logger_service.py +0 -232
  115. unrealon-1.0.9/unrealon_driver/src/services/metrics_service.py +0 -185
  116. unrealon-1.0.9/unrealon_driver/src/services/scheduler_service.py +0 -489
  117. unrealon-1.0.9/unrealon_driver/src/services/websocket_service.py +0 -362
  118. unrealon-1.0.9/unrealon_driver/src/utils/__init__.py +0 -16
  119. unrealon-1.0.9/unrealon_driver/src/utils/service_factory.py +0 -317
  120. unrealon-1.0.9/unrealon_driver/src/utils/time_formatter.py +0 -338
  121. unrealon-1.0.9/unrealon_llm/README.md +0 -44
  122. unrealon-1.0.9/unrealon_llm/__init__.py +0 -26
  123. unrealon-1.0.9/unrealon_llm/pyproject.toml +0 -154
  124. unrealon-1.0.9/unrealon_llm/src/__init__.py +0 -228
  125. unrealon-1.0.9/unrealon_llm/src/cli/__init__.py +0 -0
  126. unrealon-1.0.9/unrealon_llm/src/core/__init__.py +0 -11
  127. unrealon-1.0.9/unrealon_llm/src/core/smart_client.py +0 -438
  128. unrealon-1.0.9/unrealon_llm/src/dto/__init__.py +0 -155
  129. unrealon-1.0.9/unrealon_llm/src/dto/models/__init__.py +0 -0
  130. unrealon-1.0.9/unrealon_llm/src/dto/models/config.py +0 -343
  131. unrealon-1.0.9/unrealon_llm/src/dto/models/core.py +0 -328
  132. unrealon-1.0.9/unrealon_llm/src/dto/models/enums.py +0 -123
  133. unrealon-1.0.9/unrealon_llm/src/dto/models/html_analysis.py +0 -345
  134. unrealon-1.0.9/unrealon_llm/src/dto/models/statistics.py +0 -473
  135. unrealon-1.0.9/unrealon_llm/src/dto/models/translation.py +0 -383
  136. unrealon-1.0.9/unrealon_llm/src/dto/models/type_conversion.py +0 -462
  137. unrealon-1.0.9/unrealon_llm/src/dto/schemas/__init__.py +0 -0
  138. unrealon-1.0.9/unrealon_llm/src/exceptions.py +0 -392
  139. unrealon-1.0.9/unrealon_llm/src/llm_config/__init__.py +0 -20
  140. unrealon-1.0.9/unrealon_llm/src/llm_config/logging_config.py +0 -178
  141. unrealon-1.0.9/unrealon_llm/src/llm_logging/__init__.py +0 -42
  142. unrealon-1.0.9/unrealon_llm/src/llm_logging/llm_events.py +0 -107
  143. unrealon-1.0.9/unrealon_llm/src/llm_logging/llm_logger.py +0 -466
  144. unrealon-1.0.9/unrealon_llm/src/managers/__init__.py +0 -15
  145. unrealon-1.0.9/unrealon_llm/src/managers/cache_manager.py +0 -67
  146. unrealon-1.0.9/unrealon_llm/src/managers/cost_manager.py +0 -107
  147. unrealon-1.0.9/unrealon_llm/src/managers/request_manager.py +0 -298
  148. unrealon-1.0.9/unrealon_llm/src/modules/__init__.py +0 -0
  149. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/__init__.py +0 -25
  150. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/base_processor.py +0 -415
  151. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/details_processor.py +0 -85
  152. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/listing_processor.py +0 -91
  153. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/models/__init__.py +0 -20
  154. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -40
  155. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -56
  156. unrealon-1.0.9/unrealon_llm/src/modules/html_processor/processor.py +0 -102
  157. unrealon-1.0.9/unrealon_llm/src/modules/llm/__init__.py +0 -0
  158. unrealon-1.0.9/unrealon_llm/src/modules/translator/__init__.py +0 -0
  159. unrealon-1.0.9/unrealon_llm/src/provider.py +0 -116
  160. unrealon-1.0.9/unrealon_llm/src/utils/__init__.py +0 -95
  161. unrealon-1.0.9/unrealon_llm/src/utils/common.py +0 -64
  162. unrealon-1.0.9/unrealon_llm/src/utils/data_extractor.py +0 -188
  163. unrealon-1.0.9/unrealon_llm/src/utils/html_cleaner.py +0 -767
  164. unrealon-1.0.9/unrealon_llm/src/utils/language_detector.py +0 -308
  165. unrealon-1.0.9/unrealon_llm/src/utils/models_cache.py +0 -592
  166. unrealon-1.0.9/unrealon_llm/src/utils/smart_counter.py +0 -229
  167. unrealon-1.0.9/unrealon_llm/src/utils/token_counter.py +0 -189
  168. unrealon-1.0.9/unrealon_sdk/README.md +0 -25
  169. unrealon-1.0.9/unrealon_sdk/__init__.py +0 -30
  170. unrealon-1.0.9/unrealon_sdk/pyproject.toml +0 -231
  171. unrealon-1.0.9/unrealon_sdk/src/__init__.py +0 -150
  172. unrealon-1.0.9/unrealon_sdk/src/cli/__init__.py +0 -12
  173. unrealon-1.0.9/unrealon_sdk/src/cli/commands/__init__.py +0 -22
  174. unrealon-1.0.9/unrealon_sdk/src/cli/commands/benchmark.py +0 -42
  175. unrealon-1.0.9/unrealon_sdk/src/cli/commands/diagnostics.py +0 -573
  176. unrealon-1.0.9/unrealon_sdk/src/cli/commands/health.py +0 -46
  177. unrealon-1.0.9/unrealon_sdk/src/cli/commands/integration.py +0 -498
  178. unrealon-1.0.9/unrealon_sdk/src/cli/commands/reports.py +0 -43
  179. unrealon-1.0.9/unrealon_sdk/src/cli/commands/security.py +0 -36
  180. unrealon-1.0.9/unrealon_sdk/src/cli/commands/server.py +0 -483
  181. unrealon-1.0.9/unrealon_sdk/src/cli/commands/servers.py +0 -56
  182. unrealon-1.0.9/unrealon_sdk/src/cli/commands/tests.py +0 -55
  183. unrealon-1.0.9/unrealon_sdk/src/cli/main.py +0 -126
  184. unrealon-1.0.9/unrealon_sdk/src/cli/utils/reporter.py +0 -519
  185. unrealon-1.0.9/unrealon_sdk/src/clients/openapi.yaml +0 -3347
  186. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/__init__.py +0 -3
  187. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/api_config.py +0 -228
  188. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -12
  189. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -33
  190. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -17
  191. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -35
  192. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -10
  193. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -21
  194. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -33
  195. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -11
  196. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -27
  197. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -21
  198. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -23
  199. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -25
  200. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -16
  201. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -23
  202. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -33
  203. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -10
  204. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -27
  205. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -23
  206. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -9
  207. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -33
  208. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -39
  209. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -25
  210. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -21
  211. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -28
  212. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -25
  213. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -10
  214. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -19
  215. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -20
  216. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -19
  217. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -10
  218. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -25
  219. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -47
  220. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -23
  221. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -10
  222. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -19
  223. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -26
  224. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -23
  225. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -31
  226. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -23
  227. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -25
  228. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -23
  229. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -18
  230. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -21
  231. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -21
  232. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/models/__init__.py +0 -44
  233. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/None_service.py +0 -35
  234. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -190
  235. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -289
  236. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -187
  237. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -119
  238. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -198
  239. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
  240. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -125
  241. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -35
  242. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -190
  243. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -289
  244. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -189
  245. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -123
  246. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -200
  247. unrealon-1.0.9/unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -125
  248. unrealon-1.0.9/unrealon_sdk/src/clients/python_websocket/__init__.py +0 -28
  249. unrealon-1.0.9/unrealon_sdk/src/clients/python_websocket/client.py +0 -490
  250. unrealon-1.0.9/unrealon_sdk/src/clients/python_websocket/events.py +0 -732
  251. unrealon-1.0.9/unrealon_sdk/src/clients/python_websocket/example.py +0 -136
  252. unrealon-1.0.9/unrealon_sdk/src/clients/python_websocket/types.py +0 -871
  253. unrealon-1.0.9/unrealon_sdk/src/core/__init__.py +0 -64
  254. unrealon-1.0.9/unrealon_sdk/src/core/client.py +0 -556
  255. unrealon-1.0.9/unrealon_sdk/src/core/config.py +0 -465
  256. unrealon-1.0.9/unrealon_sdk/src/core/exceptions.py +0 -239
  257. unrealon-1.0.9/unrealon_sdk/src/core/metadata.py +0 -191
  258. unrealon-1.0.9/unrealon_sdk/src/core/models.py +0 -142
  259. unrealon-1.0.9/unrealon_sdk/src/core/types.py +0 -68
  260. unrealon-1.0.9/unrealon_sdk/src/dto/__init__.py +0 -268
  261. unrealon-1.0.9/unrealon_sdk/src/dto/authentication.py +0 -108
  262. unrealon-1.0.9/unrealon_sdk/src/dto/cache.py +0 -208
  263. unrealon-1.0.9/unrealon_sdk/src/dto/common.py +0 -19
  264. unrealon-1.0.9/unrealon_sdk/src/dto/concurrency.py +0 -393
  265. unrealon-1.0.9/unrealon_sdk/src/dto/events.py +0 -108
  266. unrealon-1.0.9/unrealon_sdk/src/dto/health.py +0 -339
  267. unrealon-1.0.9/unrealon_sdk/src/dto/load_balancing.py +0 -336
  268. unrealon-1.0.9/unrealon_sdk/src/dto/logging.py +0 -230
  269. unrealon-1.0.9/unrealon_sdk/src/dto/performance.py +0 -165
  270. unrealon-1.0.9/unrealon_sdk/src/dto/rate_limiting.py +0 -295
  271. unrealon-1.0.9/unrealon_sdk/src/dto/resource_pooling.py +0 -128
  272. unrealon-1.0.9/unrealon_sdk/src/dto/structured_logging.py +0 -112
  273. unrealon-1.0.9/unrealon_sdk/src/dto/task_scheduling.py +0 -121
  274. unrealon-1.0.9/unrealon_sdk/src/dto/websocket.py +0 -55
  275. unrealon-1.0.9/unrealon_sdk/src/enterprise/__init__.py +0 -59
  276. unrealon-1.0.9/unrealon_sdk/src/enterprise/authentication.py +0 -401
  277. unrealon-1.0.9/unrealon_sdk/src/enterprise/cache_manager.py +0 -578
  278. unrealon-1.0.9/unrealon_sdk/src/enterprise/error_recovery.py +0 -494
  279. unrealon-1.0.9/unrealon_sdk/src/enterprise/event_system.py +0 -549
  280. unrealon-1.0.9/unrealon_sdk/src/enterprise/health_monitor.py +0 -747
  281. unrealon-1.0.9/unrealon_sdk/src/enterprise/load_balancer.py +0 -964
  282. unrealon-1.0.9/unrealon_sdk/src/enterprise/logging/__init__.py +0 -68
  283. unrealon-1.0.9/unrealon_sdk/src/enterprise/logging/cleanup.py +0 -156
  284. unrealon-1.0.9/unrealon_sdk/src/enterprise/logging/development.py +0 -744
  285. unrealon-1.0.9/unrealon_sdk/src/enterprise/logging/service.py +0 -410
  286. unrealon-1.0.9/unrealon_sdk/src/enterprise/multithreading_manager.py +0 -853
  287. unrealon-1.0.9/unrealon_sdk/src/enterprise/performance_monitor.py +0 -539
  288. unrealon-1.0.9/unrealon_sdk/src/enterprise/proxy_manager.py +0 -696
  289. unrealon-1.0.9/unrealon_sdk/src/enterprise/rate_limiter.py +0 -652
  290. unrealon-1.0.9/unrealon_sdk/src/enterprise/resource_pool.py +0 -763
  291. unrealon-1.0.9/unrealon_sdk/src/enterprise/task_scheduler.py +0 -709
  292. unrealon-1.0.9/unrealon_sdk/src/internal/__init__.py +0 -10
  293. unrealon-1.0.9/unrealon_sdk/src/internal/command_router.py +0 -497
  294. unrealon-1.0.9/unrealon_sdk/src/internal/connection_manager.py +0 -397
  295. unrealon-1.0.9/unrealon_sdk/src/internal/http_client.py +0 -446
  296. unrealon-1.0.9/unrealon_sdk/src/internal/websocket_client.py +0 -420
  297. unrealon-1.0.9/unrealon_sdk/src/provider.py +0 -471
  298. unrealon-1.0.9/unrealon_sdk/src/utils.py +0 -234
  299. {unrealon-1.0.9 → unrealon-1.1.1/src}/unrealon_browser/README.md +0 -0
  300. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/cli/__init__.py +0 -0
  301. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/cli/interactive_mode.py +0 -0
  302. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/cli/main.py +0 -0
  303. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/core/__init__.py +0 -0
  304. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/__init__.py +0 -0
  305. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/config.py +0 -0
  306. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/core.py +0 -0
  307. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/dataclasses.py +0 -0
  308. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/detection.py +0 -0
  309. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/enums.py +0 -0
  310. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/dto/models/statistics.py +0 -0
  311. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/managers/__init__.py +0 -0
  312. {unrealon-1.0.9/unrealon_browser/src → unrealon-1.1.1/src/unrealon_browser}/managers/stealth.py +0 -0
@@ -0,0 +1,350 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py,cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # poetry
98
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
+ #poetry.lock
103
+
104
+ # pdm
105
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106
+ #pdm.lock
107
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108
+ # in version control.
109
+ # https://pdm.fming.dev/#use-with-ide
110
+ .pdm.toml
111
+
112
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113
+ __pypackages__/
114
+
115
+ # Celery stuff
116
+ celerybeat-schedule
117
+ celerybeat.pid
118
+
119
+ # SageMath parsed files
120
+ *.sage.py
121
+
122
+ # Environments
123
+ .env
124
+ .env*
125
+ .venv
126
+ env/
127
+ venv/
128
+ ENV/
129
+ env.bak/
130
+ venv.bak/
131
+
132
+ # Spyder project settings
133
+ .spyderproject
134
+ .spyproject
135
+
136
+ # Rope project settings
137
+ .ropeproject
138
+
139
+ # mkdocs documentation
140
+ /site
141
+
142
+ # mypy
143
+ .mypy_cache/
144
+ .dmypy.json
145
+ dmypy.json
146
+
147
+ # Pyre type checker
148
+ .pyre/
149
+
150
+ # pytype static type analyzer
151
+ .pytype/
152
+
153
+ # Cython debug symbols
154
+ cython_debug/
155
+
156
+ # PyCharm
157
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
158
+ # be added to the global gitignore or merged into this project gitignore. For a PyCharm
159
+ # project, it is recommended to include the following files in version control:
160
+ # - .idea/inspectionProfiles/profiles_settings.xml
161
+ # - .idea/inspectionProfiles/Project_Default.xml
162
+ # - .idea/misc.xml
163
+ # - .idea/modules.xml
164
+ # - .idea/scopes/scope_settings.xml
165
+ # - .idea/vcs.xml
166
+ # - .idea/workspace.xml
167
+ # - .idea/tasks.xml
168
+ # - .idea/gradle.xml
169
+ # - .idea/assetWizardSettings.xml
170
+ # - .idea/dictionaries
171
+ # - .idea/libraries
172
+ # Sensitive or high-churn files:
173
+ # - .idea/dataSources/
174
+ # - .idea/dataSources.ids
175
+ # - .idea/dataSources.local.xml
176
+ # - .idea/sqlDataSources.xml
177
+ # - .idea/dynamic.xml
178
+ # - .idea/uiDesigner.xml
179
+ # - .idea/dbnavigator.xml
180
+ .idea/
181
+
182
+ # VS Code
183
+ .vscode/
184
+ !.vscode/settings.json
185
+ !.vscode/tasks.json
186
+ !.vscode/launch.json
187
+ !.vscode/extensions.json
188
+ !.vscode/*.code-snippets
189
+
190
+ # Local History for Visual Studio Code
191
+ .history/
192
+
193
+ # Built Visual Studio Code Extensions
194
+ *.vsix
195
+
196
+ # =============================================================================
197
+ # PROJECT SPECIFIC IGNORES
198
+ # =============================================================================
199
+
200
+ # Log files from unrealon-rpc
201
+ logs/
202
+ *.log
203
+
204
+ # Redis dump files
205
+ dump.rdb
206
+ *.rdb
207
+
208
+ # IPFS data
209
+ .ipfs/
210
+ ipfs_data/
211
+
212
+ # WebSocket connection files
213
+ *.sock
214
+
215
+ # Configuration files with secrets
216
+ config.local.yml
217
+ config.local.yaml
218
+ .env.local
219
+ .env.production
220
+ secrets.yml
221
+ secrets.yaml
222
+
223
+ # API keys and credentials
224
+ api_keys.txt
225
+ credentials.json
226
+ *.pem
227
+ *.key
228
+ *.crt
229
+
230
+ # Parser data and cache
231
+ parser_cache/
232
+ scraped_data/
233
+ temp_data/
234
+
235
+ # Development databases
236
+ dev.db
237
+ test.db
238
+ *.sqlite
239
+
240
+ # Backup files
241
+ *.bak
242
+ *.backup
243
+ *.old
244
+
245
+ # OS generated files
246
+ .DS_Store
247
+ .DS_Store?
248
+ ._*
249
+ .Spotlight-V100
250
+ .Trashes
251
+ ehthumbs.db
252
+ Thumbs.db
253
+
254
+ # Temporary files
255
+ tmp/
256
+ temp/
257
+ *.tmp
258
+ *.temp
259
+
260
+ # Editor backup files
261
+ *~
262
+ *.swp
263
+ *.swo
264
+
265
+ # Node.js (for any JS tooling)
266
+ node_modules/
267
+ npm-debug.log*
268
+ yarn-debug.log*
269
+ yarn-error.log*
270
+
271
+ # Docker
272
+ .dockerignore
273
+ docker-compose.override.yml
274
+
275
+ # Kubernetes
276
+ *.kubeconfig
277
+
278
+ # Monitoring and profiling
279
+ *.prof
280
+ *.pprof
281
+
282
+ # Coverage reports
283
+ .coverage*
284
+ coverage/
285
+ htmlcov/
286
+
287
+ # Benchmark results
288
+ benchmarks/results/
289
+ *.bench
290
+
291
+ # Documentation build artifacts
292
+ docs/build/
293
+ docs/_build/
294
+ site/
295
+
296
+ # Generated API documentation
297
+ api_docs/
298
+
299
+ # Local development overrides
300
+ local/
301
+ dev/
302
+ development/
303
+
304
+ # IDE and editor files
305
+ *.sublime-project
306
+ *.sublime-workspace
307
+ .vscode/settings.json
308
+
309
+ # macOS
310
+ .AppleDouble
311
+ .LSOverride
312
+
313
+ # Windows
314
+ *.exe
315
+ *.msi
316
+ *.msm
317
+ *.msp
318
+
319
+ # Linux
320
+ *.AppImage
321
+
322
+ # =============================================================================
323
+ # KEEP THESE FILES (override common ignores)
324
+ # =============================================================================
325
+
326
+ # Keep important config templates
327
+ !config.example.yml
328
+ !config.template.yaml
329
+ !.env.example
330
+
331
+ # Keep documentation
332
+ !README.md
333
+ !CHANGELOG.md
334
+ !LICENSE
335
+ !@docs/
336
+
337
+ # Keep test configuration
338
+ !pytest.ini
339
+ !pyproject.toml
340
+ !poetry.lock
341
+ .benchmarks*/
342
+
343
+ # Keep CI/CD files
344
+ !.github/
345
+ !.gitlab-ci.yml
346
+ !Dockerfile
347
+ !docker-compose.yml
348
+
349
+ # Keep example files
350
+ !examples/
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 UnrealOn Team
3
+ Copyright (c) 2025 UnrealOS Team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,55 @@
1
+ include README.md
2
+ include LICENSE
3
+ include CHANGELOG.md
4
+ include MANIFEST.in
5
+ include requirements*.txt
6
+ recursive-include src/unrealon *.py
7
+ recursive-include src/unrealon_driver *.py
8
+ recursive-include src/unrealon_bridge *.py
9
+ recursive-include src/unrealon_browser *.py
10
+ recursive-include src/unrealon_driver *.json
11
+ recursive-include src/unrealon_driver *.yaml
12
+ recursive-include src/unrealon_driver *.yml
13
+ # Examples and tests are EXCLUDED from public package
14
+
15
+ # Exclude cache files
16
+ recursive-exclude * __pycache__
17
+ recursive-exclude * *.py[co]
18
+
19
+ # Exclude development files and directories
20
+ recursive-exclude @* *
21
+ recursive-exclude scripts *
22
+ recursive-exclude htmlcov *
23
+ recursive-exclude logs *
24
+ recursive-exclude tmp *
25
+ exclude package.json
26
+ exclude .env*
27
+
28
+ # EXCLUDE from public release!
29
+ recursive-exclude src/unrealon_rpc *
30
+ recursive-exclude tests *
31
+ recursive-exclude examples *
32
+ recursive-exclude src/*/tests *
33
+
34
+ # Exclude development and test files
35
+ exclude pytest.ini
36
+ exclude tox.ini
37
+ exclude .coveragerc
38
+ exclude .editorconfig
39
+ exclude .pre-commit-config.yaml
40
+
41
+ # Exclude all pytest.ini files recursively
42
+ recursive-exclude * pytest.ini
43
+
44
+ # Exclude all pyproject.toml files in subdirectories (keep only root one)
45
+ recursive-exclude src/* pyproject.toml
46
+
47
+ # Exclude version control
48
+ recursive-exclude .git *
49
+ recursive-exclude .github *
50
+ exclude .gitignore
51
+
52
+ # Exclude Node.js files
53
+ exclude package*.json
54
+ exclude yarn*.lock
55
+ recursive-exclude node_modules *