unrealon 1.0.7__tar.gz → 1.0.8__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 (248) hide show
  1. {unrealon-1.0.7 → unrealon-1.0.8}/PKG-INFO +1 -1
  2. {unrealon-1.0.7 → unrealon-1.0.8}/pyproject.toml +1 -1
  3. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon/sdk_config.py +1 -1
  4. {unrealon-1.0.7 → unrealon-1.0.8}/LICENSE +0 -0
  5. {unrealon-1.0.7 → unrealon-1.0.8}/README.md +0 -0
  6. {unrealon-1.0.7 → unrealon-1.0.8}/requirements-dev.txt +0 -0
  7. {unrealon-1.0.7 → unrealon-1.0.8}/requirements.txt +0 -0
  8. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon/__init__.py +0 -0
  9. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/README.md +0 -0
  10. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/__init__.py +0 -0
  11. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/pyproject.toml +0 -0
  12. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/__init__.py +0 -0
  13. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/cli/__init__.py +0 -0
  14. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/cli/browser_cli.py +0 -0
  15. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/cli/cookies_cli.py +0 -0
  16. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/cli/interactive_mode.py +0 -0
  17. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/cli/main.py +0 -0
  18. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/core/__init__.py +0 -0
  19. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/core/browser_manager.py +0 -0
  20. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/__init__.py +0 -0
  21. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/config.py +0 -0
  22. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/core.py +0 -0
  23. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/dataclasses.py +0 -0
  24. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/detection.py +0 -0
  25. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/enums.py +0 -0
  26. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/dto/models/statistics.py +0 -0
  27. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/__init__.py +0 -0
  28. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/captcha.py +0 -0
  29. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/cookies.py +0 -0
  30. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/logger_bridge.py +0 -0
  31. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/profile.py +0 -0
  32. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_browser/src/managers/stealth.py +0 -0
  33. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/README.md +0 -0
  34. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/__init__.py +0 -0
  35. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/pyproject.toml +0 -0
  36. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/__init__.py +0 -0
  37. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/cli/__init__.py +0 -0
  38. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/cli/main.py +0 -0
  39. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/cli/simple.py +0 -0
  40. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/config/__init__.py +0 -0
  41. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/config/auto_config.py +0 -0
  42. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/core/__init__.py +0 -0
  43. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/core/exceptions.py +0 -0
  44. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/core/parser.py +0 -0
  45. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/__init__.py +0 -0
  46. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/cli.py +0 -0
  47. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/config.py +0 -0
  48. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/events.py +0 -0
  49. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/execution.py +0 -0
  50. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/dto/services.py +0 -0
  51. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/__init__.py +0 -0
  52. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/daemon_mode.py +0 -0
  53. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/interactive_mode.py +0 -0
  54. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/modes.py +0 -0
  55. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/scheduled_mode.py +0 -0
  56. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/execution/test_mode.py +0 -0
  57. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/logging/__init__.py +0 -0
  58. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/logging/driver_logger.py +0 -0
  59. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/__init__.py +0 -0
  60. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/browser_service.py +0 -0
  61. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/llm/__init__.py +0 -0
  62. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/llm/browser_llm_service.py +0 -0
  63. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/llm/llm.py +0 -0
  64. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/logger_service.py +0 -0
  65. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/metrics_service.py +0 -0
  66. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/scheduler_service.py +0 -0
  67. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/services/websocket_service.py +0 -0
  68. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/utils/__init__.py +0 -0
  69. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/utils/service_factory.py +0 -0
  70. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_driver/src/utils/time_formatter.py +0 -0
  71. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/README.md +0 -0
  72. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/__init__.py +0 -0
  73. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/pyproject.toml +0 -0
  74. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/__init__.py +0 -0
  75. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/cli/__init__.py +0 -0
  76. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/core/__init__.py +0 -0
  77. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/core/smart_client.py +0 -0
  78. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/__init__.py +0 -0
  79. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/__init__.py +0 -0
  80. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/config.py +0 -0
  81. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/core.py +0 -0
  82. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/enums.py +0 -0
  83. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/html_analysis.py +0 -0
  84. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/statistics.py +0 -0
  85. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/translation.py +0 -0
  86. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/models/type_conversion.py +0 -0
  87. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/dto/schemas/__init__.py +0 -0
  88. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/exceptions.py +0 -0
  89. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/llm_config/__init__.py +0 -0
  90. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/llm_config/logging_config.py +0 -0
  91. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/llm_logging/__init__.py +0 -0
  92. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/llm_logging/llm_events.py +0 -0
  93. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/llm_logging/llm_logger.py +0 -0
  94. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/managers/__init__.py +0 -0
  95. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/managers/cache_manager.py +0 -0
  96. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/managers/cost_manager.py +0 -0
  97. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/managers/request_manager.py +0 -0
  98. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/__init__.py +0 -0
  99. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/__init__.py +0 -0
  100. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/base_processor.py +0 -0
  101. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/details_processor.py +0 -0
  102. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/listing_processor.py +0 -0
  103. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/models/__init__.py +0 -0
  104. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -0
  105. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -0
  106. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/html_processor/processor.py +0 -0
  107. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/llm/__init__.py +0 -0
  108. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/modules/translator/__init__.py +0 -0
  109. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/provider.py +0 -0
  110. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/__init__.py +0 -0
  111. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/common.py +0 -0
  112. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/data_extractor.py +0 -0
  113. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/html_cleaner.py +0 -0
  114. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/language_detector.py +0 -0
  115. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/models_cache.py +0 -0
  116. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/smart_counter.py +0 -0
  117. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_llm/src/utils/token_counter.py +0 -0
  118. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/README.md +0 -0
  119. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/__init__.py +0 -0
  120. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/pyproject.toml +0 -0
  121. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/__init__.py +0 -0
  122. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/__init__.py +0 -0
  123. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/__init__.py +0 -0
  124. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/benchmark.py +0 -0
  125. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/diagnostics.py +0 -0
  126. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/health.py +0 -0
  127. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/integration.py +0 -0
  128. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/reports.py +0 -0
  129. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/security.py +0 -0
  130. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/server.py +0 -0
  131. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/servers.py +0 -0
  132. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/commands/tests.py +0 -0
  133. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/main.py +0 -0
  134. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/cli/utils/reporter.py +0 -0
  135. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/openapi.yaml +0 -0
  136. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/__init__.py +0 -0
  137. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/api_config.py +0 -0
  138. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -0
  139. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -0
  140. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -0
  141. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -0
  142. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -0
  143. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -0
  144. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -0
  145. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -0
  146. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -0
  147. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -0
  148. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -0
  149. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -0
  150. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -0
  151. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -0
  152. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -0
  153. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -0
  154. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -0
  155. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -0
  156. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -0
  157. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -0
  158. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -0
  159. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -0
  160. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -0
  161. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -0
  162. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -0
  163. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -0
  164. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -0
  165. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -0
  166. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -0
  167. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -0
  168. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -0
  169. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -0
  170. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -0
  171. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -0
  172. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -0
  173. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -0
  174. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -0
  175. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -0
  176. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -0
  177. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -0
  178. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -0
  179. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -0
  180. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -0
  181. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -0
  182. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/models/__init__.py +0 -0
  183. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/None_service.py +0 -0
  184. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -0
  185. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -0
  186. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -0
  187. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -0
  188. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -0
  189. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
  190. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -0
  191. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -0
  192. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -0
  193. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -0
  194. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -0
  195. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -0
  196. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -0
  197. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -0
  198. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_websocket/__init__.py +0 -0
  199. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_websocket/client.py +0 -0
  200. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_websocket/events.py +0 -0
  201. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_websocket/example.py +0 -0
  202. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/clients/python_websocket/types.py +0 -0
  203. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/__init__.py +0 -0
  204. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/client.py +0 -0
  205. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/config.py +0 -0
  206. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/exceptions.py +0 -0
  207. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/metadata.py +0 -0
  208. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/models.py +0 -0
  209. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/core/types.py +0 -0
  210. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/__init__.py +0 -0
  211. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/authentication.py +0 -0
  212. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/cache.py +0 -0
  213. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/common.py +0 -0
  214. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/concurrency.py +0 -0
  215. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/events.py +0 -0
  216. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/health.py +0 -0
  217. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/load_balancing.py +0 -0
  218. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/logging.py +0 -0
  219. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/performance.py +0 -0
  220. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/rate_limiting.py +0 -0
  221. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/resource_pooling.py +0 -0
  222. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/structured_logging.py +0 -0
  223. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/task_scheduling.py +0 -0
  224. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/dto/websocket.py +0 -0
  225. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/__init__.py +0 -0
  226. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/authentication.py +0 -0
  227. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/cache_manager.py +0 -0
  228. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/error_recovery.py +0 -0
  229. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/event_system.py +0 -0
  230. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/health_monitor.py +0 -0
  231. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/load_balancer.py +0 -0
  232. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/logging/__init__.py +0 -0
  233. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/logging/cleanup.py +0 -0
  234. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/logging/development.py +0 -0
  235. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/logging/service.py +0 -0
  236. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/multithreading_manager.py +0 -0
  237. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/performance_monitor.py +0 -0
  238. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/proxy_manager.py +0 -0
  239. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/rate_limiter.py +0 -0
  240. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/resource_pool.py +0 -0
  241. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/enterprise/task_scheduler.py +0 -0
  242. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/internal/__init__.py +0 -0
  243. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/internal/command_router.py +0 -0
  244. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/internal/connection_manager.py +0 -0
  245. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/internal/http_client.py +0 -0
  246. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/internal/websocket_client.py +0 -0
  247. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/provider.py +0 -0
  248. {unrealon-1.0.7 → unrealon-1.0.8}/unrealon_sdk/src/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: unrealon
3
- Version: 1.0.7
3
+ Version: 1.0.8
4
4
  Summary: AI-powered web scraping platform with real-time orchestration
5
5
  License: MIT
6
6
  Author: Unrealon Team
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "unrealon"
7
- version = "1.0.7"
7
+ version = "1.0.8"
8
8
  description = "AI-powered web scraping platform with real-time orchestration"
9
9
  authors = ["Unrealon Team <dev@unrealon.com>"]
10
10
  readme = "README.md"
@@ -8,7 +8,7 @@ import os
8
8
  from pydantic import BaseModel, Field, ConfigDict
9
9
 
10
10
  # Simple version constants
11
- VERSION = "1.0.7"
11
+ VERSION = "1.0.8"
12
12
 
13
13
  # Project info
14
14
  AUTHOR = "UnrealOn Team"
File without changes
File without changes
File without changes
File without changes
File without changes