unrealon 1.0.3__tar.gz → 1.0.5__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.
- {unrealon-1.0.3 → unrealon-1.0.5}/PKG-INFO +1 -1
- {unrealon-1.0.3 → unrealon-1.0.5}/pyproject.toml +9 -1
- unrealon-1.0.5/requirements-dev.txt +87 -0
- unrealon-1.0.5/requirements.txt +75 -0
- unrealon-1.0.5/unrealon/__init__.py +28 -0
- unrealon-1.0.5/unrealon/sdk_config.py +88 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/__init__.py +1 -1
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/__init__.py +1 -1
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/__init__.py +1 -1
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/__init__.py +1 -1
- {unrealon-1.0.3 → unrealon-1.0.5}/LICENSE +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/README.md +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/README.md +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/pyproject.toml +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/cli/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/cli/browser_cli.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/cli/cookies_cli.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/cli/interactive_mode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/cli/main.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/core/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/core/browser_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/core.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/dataclasses.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/detection.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/enums.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/dto/models/statistics.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/captcha.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/cookies.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/logger_bridge.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/profile.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_browser/src/managers/stealth.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/README.md +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/pyproject.toml +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/cli/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/cli/main.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/cli/simple.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/config/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/config/auto_config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/core/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/core/exceptions.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/core/parser.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/cli.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/events.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/execution.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/dto/services.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/daemon_mode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/interactive_mode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/modes.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/scheduled_mode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/execution/test_mode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/logging/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/logging/driver_logger.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/browser_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/llm/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/llm/browser_llm_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/llm/llm.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/logger_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/metrics_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/scheduler_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/services/websocket_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/utils/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/utils/service_factory.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_driver/src/utils/time_formatter.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/README.md +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/pyproject.toml +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/cli/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/core/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/core/smart_client.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/core.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/enums.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/html_analysis.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/statistics.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/translation.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/models/type_conversion.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/dto/schemas/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/exceptions.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/llm_config/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/llm_config/logging_config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/llm_logging/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/llm_logging/llm_events.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/llm_logging/llm_logger.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/managers/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/managers/cache_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/managers/cost_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/managers/request_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/base_processor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/details_processor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/listing_processor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/models/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/processor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/llm/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/translator/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/provider.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/common.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/data_extractor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/html_cleaner.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/language_detector.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/models_cache.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/smart_counter.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/utils/token_counter.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/README.md +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/pyproject.toml +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/benchmark.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/diagnostics.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/health.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/integration.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/reports.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/security.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/server.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/servers.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/commands/tests.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/main.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/cli/utils/reporter.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/openapi.yaml +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/api_config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/models/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/None_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_websocket/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_websocket/client.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_websocket/events.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_websocket/example.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/clients/python_websocket/types.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/client.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/config.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/exceptions.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/metadata.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/models.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/core/types.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/authentication.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/cache.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/common.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/concurrency.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/events.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/health.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/load_balancing.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/logging.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/performance.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/rate_limiting.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/resource_pooling.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/structured_logging.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/task_scheduling.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/dto/websocket.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/authentication.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/cache_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/error_recovery.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/event_system.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/health_monitor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/load_balancer.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/logging/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/logging/cleanup.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/logging/development.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/logging/service.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/multithreading_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/performance_monitor.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/proxy_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/rate_limiter.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/resource_pool.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/enterprise/task_scheduler.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/internal/__init__.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/internal/command_router.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/internal/connection_manager.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/internal/http_client.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/internal/websocket_client.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/provider.py +0 -0
- {unrealon-1.0.3 → unrealon-1.0.5}/unrealon_sdk/src/utils.py +0 -0
|
@@ -4,13 +4,14 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "unrealon"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.5"
|
|
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"
|
|
11
11
|
license = "MIT"
|
|
12
12
|
|
|
13
13
|
packages = [
|
|
14
|
+
{include = "unrealon"},
|
|
14
15
|
{include = "unrealon_sdk"},
|
|
15
16
|
{include = "unrealon_browser"},
|
|
16
17
|
{include = "unrealon_driver"},
|
|
@@ -26,6 +27,13 @@ exclude = [
|
|
|
26
27
|
"**/poetry.lock"
|
|
27
28
|
]
|
|
28
29
|
|
|
30
|
+
include = [
|
|
31
|
+
"__init__.py",
|
|
32
|
+
"sdk_config.py",
|
|
33
|
+
"requirements.txt",
|
|
34
|
+
"requirements-dev.txt"
|
|
35
|
+
]
|
|
36
|
+
|
|
29
37
|
[tool.poetry.dependencies]
|
|
30
38
|
python = ">=3.9"
|
|
31
39
|
pydantic = ">=2.0.0"
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# Development dependencies
|
|
2
|
+
# Generated automatically from pyproject.toml
|
|
3
|
+
# Do not edit manually!
|
|
4
|
+
|
|
5
|
+
aiohappyeyeballs==2.6.1 ; python_version >= "3.9"
|
|
6
|
+
aiohttp==3.12.15 ; python_version >= "3.9"
|
|
7
|
+
aiosignal==1.4.0 ; python_version >= "3.9"
|
|
8
|
+
annotated-types==0.7.0 ; python_version >= "3.9"
|
|
9
|
+
anyio==4.10.0 ; python_version >= "3.9"
|
|
10
|
+
async-generator==1.10 ; python_version >= "3.9"
|
|
11
|
+
async-timeout==5.0.1 ; python_version >= "3.9" and python_version < "3.11"
|
|
12
|
+
asyncio-extras==1.3.2 ; python_version >= "3.9"
|
|
13
|
+
attrs==25.3.0 ; python_version >= "3.9"
|
|
14
|
+
beautifulsoup4==4.13.4 ; python_version >= "3.9"
|
|
15
|
+
bidict==0.23.1 ; python_version >= "3.9"
|
|
16
|
+
cachetools==6.1.0 ; python_version >= "3.9"
|
|
17
|
+
certifi==2025.8.3 ; python_version >= "3.9"
|
|
18
|
+
charset-normalizer==3.4.3 ; python_version >= "3.9"
|
|
19
|
+
click==8.1.8 ; python_version >= "3.9"
|
|
20
|
+
colorama==0.4.6 ; (platform_system == "Windows" or sys_platform == "win32") and python_version >= "3.9"
|
|
21
|
+
colorlog==6.9.0 ; python_version >= "3.9"
|
|
22
|
+
distro==1.9.0 ; python_version >= "3.9"
|
|
23
|
+
exceptiongroup==1.3.0 ; python_version >= "3.9" and python_version < "3.11"
|
|
24
|
+
fast-langdetect==0.3.2 ; python_version >= "3.9"
|
|
25
|
+
fasttext-predict==0.9.2.4 ; python_version >= "3.9"
|
|
26
|
+
frozenlist==1.7.0 ; python_version >= "3.9"
|
|
27
|
+
greenlet==3.2.4 ; python_version >= "3.9"
|
|
28
|
+
h11==0.14.0 ; python_version >= "3.9"
|
|
29
|
+
httpcore==0.16.3 ; python_version >= "3.9"
|
|
30
|
+
httpx==0.23.3 ; python_version >= "3.9"
|
|
31
|
+
idna==3.10 ; python_version >= "3.9"
|
|
32
|
+
jiter==0.10.0 ; python_version >= "3.9"
|
|
33
|
+
langdetect==1.0.9 ; python_version >= "3.9"
|
|
34
|
+
langid==1.1.6 ; python_version >= "3.9"
|
|
35
|
+
markdown-it-py==3.0.0 ; python_version >= "3.9"
|
|
36
|
+
mdurl==0.1.2 ; python_version >= "3.9"
|
|
37
|
+
multidict==6.6.4 ; python_version >= "3.9"
|
|
38
|
+
numpy==2.0.2 ; python_version >= "3.9" and python_version < "3.11"
|
|
39
|
+
numpy==2.3.2 ; python_version >= "3.11"
|
|
40
|
+
openai==1.99.9 ; python_version >= "3.9"
|
|
41
|
+
pathlib2==2.3.7.post1 ; python_version >= "3.9"
|
|
42
|
+
playwright-stealth==1.0.6 ; python_version >= "3.12"
|
|
43
|
+
playwright-stealth==2.0.0 ; python_version >= "3.9" and python_version <= "3.11"
|
|
44
|
+
playwright==1.54.0 ; python_version >= "3.9"
|
|
45
|
+
prompt-toolkit==3.0.51 ; python_version >= "3.9"
|
|
46
|
+
propcache==0.3.2 ; python_version >= "3.9"
|
|
47
|
+
pydantic-core==2.33.2 ; python_version >= "3.9"
|
|
48
|
+
pydantic-settings==2.10.1 ; python_version >= "3.9"
|
|
49
|
+
pydantic==2.11.7 ; python_version >= "3.9"
|
|
50
|
+
pyee==13.0.0 ; python_version >= "3.9"
|
|
51
|
+
pygments==2.19.2 ; python_version >= "3.9"
|
|
52
|
+
python-dateutil==2.9.0.post0 ; python_version >= "3.9"
|
|
53
|
+
python-dotenv==1.1.1 ; python_version >= "3.9"
|
|
54
|
+
python-engineio==4.12.2 ; python_version >= "3.9"
|
|
55
|
+
python-socketio==5.13.0 ; python_version >= "3.9"
|
|
56
|
+
pyyaml==6.0.2 ; python_version >= "3.9"
|
|
57
|
+
questionary==2.1.0 ; python_version >= "3.9"
|
|
58
|
+
regex==2025.7.34 ; python_version >= "3.9"
|
|
59
|
+
requests==2.32.4 ; python_version >= "3.9"
|
|
60
|
+
rfc3986==1.5.0 ; python_version >= "3.9"
|
|
61
|
+
rich==14.1.0 ; python_version >= "3.9"
|
|
62
|
+
robust-downloader==0.0.2 ; python_version >= "3.9"
|
|
63
|
+
simple-websocket==1.1.0 ; python_version >= "3.9"
|
|
64
|
+
six==1.17.0 ; python_version >= "3.9"
|
|
65
|
+
sniffio==1.3.1 ; python_version >= "3.9"
|
|
66
|
+
soupsieve==2.7 ; python_version >= "3.9"
|
|
67
|
+
tiktoken==0.11.0 ; python_version >= "3.9"
|
|
68
|
+
tqdm==4.67.1 ; python_version >= "3.9"
|
|
69
|
+
typing-extensions==4.14.1 ; python_version >= "3.9"
|
|
70
|
+
typing-inspection==0.4.1 ; python_version >= "3.9"
|
|
71
|
+
urllib3==2.5.0 ; python_version >= "3.9"
|
|
72
|
+
wcwidth==0.2.13 ; python_version >= "3.9"
|
|
73
|
+
websockets==15.0.1 ; python_version >= "3.9"
|
|
74
|
+
wsproto==1.2.0 ; python_version >= "3.9"
|
|
75
|
+
yarl==1.20.1 ; python_version >= "3.9"
|
|
76
|
+
|
|
77
|
+
# Dev dependencies
|
|
78
|
+
black>=23.0.0
|
|
79
|
+
build>=1.0.0
|
|
80
|
+
isort>=5.12.0
|
|
81
|
+
mypy>=1.0.0
|
|
82
|
+
pytest-asyncio>=0.18.0
|
|
83
|
+
pytest>=7.0.0
|
|
84
|
+
questionary>=2.1.0
|
|
85
|
+
ruff>=0.1.0
|
|
86
|
+
tomlkit>=0.13.3
|
|
87
|
+
twine>=4.0.0
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# dependencies
|
|
2
|
+
# Generated automatically from pyproject.toml
|
|
3
|
+
# Do not edit manually!
|
|
4
|
+
|
|
5
|
+
aiohappyeyeballs==2.6.1 ; python_version >= "3.9"
|
|
6
|
+
aiohttp==3.12.15 ; python_version >= "3.9"
|
|
7
|
+
aiosignal==1.4.0 ; python_version >= "3.9"
|
|
8
|
+
annotated-types==0.7.0 ; python_version >= "3.9"
|
|
9
|
+
anyio==4.10.0 ; python_version >= "3.9"
|
|
10
|
+
async-generator==1.10 ; python_version >= "3.9"
|
|
11
|
+
async-timeout==5.0.1 ; python_version >= "3.9" and python_version < "3.11"
|
|
12
|
+
asyncio-extras==1.3.2 ; python_version >= "3.9"
|
|
13
|
+
attrs==25.3.0 ; python_version >= "3.9"
|
|
14
|
+
beautifulsoup4==4.13.4 ; python_version >= "3.9"
|
|
15
|
+
bidict==0.23.1 ; python_version >= "3.9"
|
|
16
|
+
cachetools==6.1.0 ; python_version >= "3.9"
|
|
17
|
+
certifi==2025.8.3 ; python_version >= "3.9"
|
|
18
|
+
charset-normalizer==3.4.3 ; python_version >= "3.9"
|
|
19
|
+
click==8.1.8 ; python_version >= "3.9"
|
|
20
|
+
colorama==0.4.6 ; (platform_system == "Windows" or sys_platform == "win32") and python_version >= "3.9"
|
|
21
|
+
colorlog==6.9.0 ; python_version >= "3.9"
|
|
22
|
+
distro==1.9.0 ; python_version >= "3.9"
|
|
23
|
+
exceptiongroup==1.3.0 ; python_version >= "3.9" and python_version < "3.11"
|
|
24
|
+
fast-langdetect==0.3.2 ; python_version >= "3.9"
|
|
25
|
+
fasttext-predict==0.9.2.4 ; python_version >= "3.9"
|
|
26
|
+
frozenlist==1.7.0 ; python_version >= "3.9"
|
|
27
|
+
greenlet==3.2.4 ; python_version >= "3.9"
|
|
28
|
+
h11==0.14.0 ; python_version >= "3.9"
|
|
29
|
+
httpcore==0.16.3 ; python_version >= "3.9"
|
|
30
|
+
httpx==0.23.3 ; python_version >= "3.9"
|
|
31
|
+
idna==3.10 ; python_version >= "3.9"
|
|
32
|
+
jiter==0.10.0 ; python_version >= "3.9"
|
|
33
|
+
langdetect==1.0.9 ; python_version >= "3.9"
|
|
34
|
+
langid==1.1.6 ; python_version >= "3.9"
|
|
35
|
+
markdown-it-py==3.0.0 ; python_version >= "3.9"
|
|
36
|
+
mdurl==0.1.2 ; python_version >= "3.9"
|
|
37
|
+
multidict==6.6.4 ; python_version >= "3.9"
|
|
38
|
+
numpy==2.0.2 ; python_version >= "3.9" and python_version < "3.11"
|
|
39
|
+
numpy==2.3.2 ; python_version >= "3.11"
|
|
40
|
+
openai==1.99.9 ; python_version >= "3.9"
|
|
41
|
+
pathlib2==2.3.7.post1 ; python_version >= "3.9"
|
|
42
|
+
playwright-stealth==1.0.6 ; python_version >= "3.12"
|
|
43
|
+
playwright-stealth==2.0.0 ; python_version >= "3.9" and python_version <= "3.11"
|
|
44
|
+
playwright==1.54.0 ; python_version >= "3.9"
|
|
45
|
+
prompt-toolkit==3.0.51 ; python_version >= "3.9"
|
|
46
|
+
propcache==0.3.2 ; python_version >= "3.9"
|
|
47
|
+
pydantic-core==2.33.2 ; python_version >= "3.9"
|
|
48
|
+
pydantic-settings==2.10.1 ; python_version >= "3.9"
|
|
49
|
+
pydantic==2.11.7 ; python_version >= "3.9"
|
|
50
|
+
pyee==13.0.0 ; python_version >= "3.9"
|
|
51
|
+
pygments==2.19.2 ; python_version >= "3.9"
|
|
52
|
+
python-dateutil==2.9.0.post0 ; python_version >= "3.9"
|
|
53
|
+
python-dotenv==1.1.1 ; python_version >= "3.9"
|
|
54
|
+
python-engineio==4.12.2 ; python_version >= "3.9"
|
|
55
|
+
python-socketio==5.13.0 ; python_version >= "3.9"
|
|
56
|
+
pyyaml==6.0.2 ; python_version >= "3.9"
|
|
57
|
+
questionary==2.1.0 ; python_version >= "3.9"
|
|
58
|
+
regex==2025.7.34 ; python_version >= "3.9"
|
|
59
|
+
requests==2.32.4 ; python_version >= "3.9"
|
|
60
|
+
rfc3986==1.5.0 ; python_version >= "3.9"
|
|
61
|
+
rich==14.1.0 ; python_version >= "3.9"
|
|
62
|
+
robust-downloader==0.0.2 ; python_version >= "3.9"
|
|
63
|
+
simple-websocket==1.1.0 ; python_version >= "3.9"
|
|
64
|
+
six==1.17.0 ; python_version >= "3.9"
|
|
65
|
+
sniffio==1.3.1 ; python_version >= "3.9"
|
|
66
|
+
soupsieve==2.7 ; python_version >= "3.9"
|
|
67
|
+
tiktoken==0.11.0 ; python_version >= "3.9"
|
|
68
|
+
tqdm==4.67.1 ; python_version >= "3.9"
|
|
69
|
+
typing-extensions==4.14.1 ; python_version >= "3.9"
|
|
70
|
+
typing-inspection==0.4.1 ; python_version >= "3.9"
|
|
71
|
+
urllib3==2.5.0 ; python_version >= "3.9"
|
|
72
|
+
wcwidth==0.2.13 ; python_version >= "3.9"
|
|
73
|
+
websockets==15.0.1 ; python_version >= "3.9"
|
|
74
|
+
wsproto==1.2.0 ; python_version >= "3.9"
|
|
75
|
+
yarl==1.20.1 ; python_version >= "3.9"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UnrealOn SDK - Main Package
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
# Import from centralized config
|
|
6
|
+
from .sdk_config import (
|
|
7
|
+
VERSION as __version__,
|
|
8
|
+
AUTHOR as __author__,
|
|
9
|
+
AUTHOR_EMAIL as __email__,
|
|
10
|
+
LICENSE as __license__,
|
|
11
|
+
PROJECT_URL as __url__,
|
|
12
|
+
VERSION_INFO,
|
|
13
|
+
PROJECT_INFO,
|
|
14
|
+
get_version,
|
|
15
|
+
is_debug_mode,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
"__version__",
|
|
20
|
+
"__author__",
|
|
21
|
+
"__email__",
|
|
22
|
+
"__license__",
|
|
23
|
+
"__url__",
|
|
24
|
+
"VERSION_INFO",
|
|
25
|
+
"PROJECT_INFO",
|
|
26
|
+
"get_version",
|
|
27
|
+
"is_debug_mode",
|
|
28
|
+
]
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UnrealOn SDK Simple Config
|
|
3
|
+
|
|
4
|
+
Simple centralized configuration with Pydantic v2 models.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
import os
|
|
8
|
+
from pydantic import BaseModel, Field, ConfigDict
|
|
9
|
+
|
|
10
|
+
# Simple version constants
|
|
11
|
+
VERSION = "1.0.5"
|
|
12
|
+
|
|
13
|
+
# Project info
|
|
14
|
+
AUTHOR = "UnrealOn Team"
|
|
15
|
+
AUTHOR_EMAIL = "dev@unrealon.com"
|
|
16
|
+
LICENSE = "MIT"
|
|
17
|
+
PROJECT_URL = "https://unrealon.com"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class VersionInfo(BaseModel):
|
|
21
|
+
"""Version information model."""
|
|
22
|
+
|
|
23
|
+
model_config = ConfigDict(validate_assignment=True, extra="forbid")
|
|
24
|
+
|
|
25
|
+
version: str = Field(default=VERSION)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ProjectInfo(BaseModel):
|
|
30
|
+
"""Project information model."""
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(validate_assignment=True, extra="forbid")
|
|
33
|
+
|
|
34
|
+
author: str = Field(default=AUTHOR)
|
|
35
|
+
email: str = Field(default=AUTHOR_EMAIL)
|
|
36
|
+
license: str = Field(default=LICENSE)
|
|
37
|
+
url: str = Field(default=PROJECT_URL)
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
# Global instances
|
|
41
|
+
VERSION_INFO = VersionInfo()
|
|
42
|
+
PROJECT_INFO = ProjectInfo()
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def get_version() -> str:
|
|
46
|
+
"""Get SDK version."""
|
|
47
|
+
return VERSION
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
def is_debug_mode() -> bool:
|
|
51
|
+
"""Check if debug mode enabled."""
|
|
52
|
+
return os.getenv("UNREALON_DEBUG", "").lower() in ("1", "true", "debug")
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
# Compatibility check
|
|
56
|
+
def check_compatibility(required_version: str) -> bool:
|
|
57
|
+
"""Check if SDK version is compatible with required version."""
|
|
58
|
+
try:
|
|
59
|
+
required = tuple(map(int, required_version.split(".")))
|
|
60
|
+
current = tuple(map(int, VERSION.split(".")))
|
|
61
|
+
return current >= required
|
|
62
|
+
except (ValueError, AttributeError):
|
|
63
|
+
return False
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
# Debug output
|
|
67
|
+
if os.getenv("UNREALON_DEBUG", "").lower() in ("1", "true", "debug"):
|
|
68
|
+
logger = logging.getLogger(__name__)
|
|
69
|
+
logger.info(f"🚀 UnrealOn SDK v{VERSION} loaded")
|
|
70
|
+
logger.info(f" 🎯 Service-based architecture")
|
|
71
|
+
logger.info(f" 📦 KISS principle - simple & reliable")
|
|
72
|
+
logger.info(f" 🔗 Available services: {', '.join(__all__)}")
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
__all__ = [
|
|
76
|
+
"VERSION",
|
|
77
|
+
"AUTHOR",
|
|
78
|
+
"AUTHOR_EMAIL",
|
|
79
|
+
"LICENSE",
|
|
80
|
+
"PROJECT_URL",
|
|
81
|
+
"VersionInfo",
|
|
82
|
+
"ProjectInfo",
|
|
83
|
+
"VERSION_INFO",
|
|
84
|
+
"PROJECT_INFO",
|
|
85
|
+
"get_version",
|
|
86
|
+
"is_debug_mode",
|
|
87
|
+
"check_compatibility",
|
|
88
|
+
]
|
|
@@ -13,7 +13,7 @@ __description__ = "Enterprise browser automation with stealth capabilities"
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
# Import from centralized config
|
|
16
|
-
from sdk_config import (
|
|
16
|
+
from unrealon.sdk_config import (
|
|
17
17
|
VERSION as __version__,
|
|
18
18
|
AUTHOR as __author__,
|
|
19
19
|
AUTHOR_EMAIL as __email__,
|
|
@@ -13,7 +13,7 @@ __description__ = "Simple, modular parser development tools for UnrealOn SDK"
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
# Import from centralized config
|
|
16
|
-
from sdk_config import (
|
|
16
|
+
from unrealon.sdk_config import (
|
|
17
17
|
VERSION as __version__,
|
|
18
18
|
AUTHOR as __author__,
|
|
19
19
|
AUTHOR_EMAIL as __email__,
|
|
@@ -13,7 +13,7 @@ __description__ = "Large Language Model integration tools for UnrealOn SDK"
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
# Import from centralized config
|
|
16
|
-
from sdk_config import (
|
|
16
|
+
from unrealon.sdk_config import (
|
|
17
17
|
VERSION as __version__,
|
|
18
18
|
AUTHOR as __author__,
|
|
19
19
|
AUTHOR_EMAIL as __email__,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/details_processor.py
RENAMED
|
File without changes
|
{unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/listing_processor.py
RENAMED
|
File without changes
|
{unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/models/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{unrealon-1.0.3 → unrealon-1.0.5}/unrealon_llm/src/modules/html_processor/models/universal_model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|