unrealon 1.0.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unrealon-1.0.2.dist-info/LICENSE +21 -0
- unrealon-1.0.2.dist-info/METADATA +803 -0
- unrealon-1.0.2.dist-info/RECORD +244 -0
- unrealon-1.0.2.dist-info/WHEEL +4 -0
- unrealon_browser/README.md +24 -0
- unrealon_browser/__init__.py +26 -0
- unrealon_browser/pyproject.toml +182 -0
- unrealon_browser/src/__init__.py +62 -0
- unrealon_browser/src/cli/__init__.py +12 -0
- unrealon_browser/src/cli/browser_cli.py +249 -0
- unrealon_browser/src/cli/cookies_cli.py +397 -0
- unrealon_browser/src/cli/interactive_mode.py +338 -0
- unrealon_browser/src/cli/main.py +52 -0
- unrealon_browser/src/core/__init__.py +9 -0
- unrealon_browser/src/core/browser_manager.py +643 -0
- unrealon_browser/src/dto/__init__.py +65 -0
- unrealon_browser/src/dto/models/config.py +31 -0
- unrealon_browser/src/dto/models/core.py +60 -0
- unrealon_browser/src/dto/models/dataclasses.py +58 -0
- unrealon_browser/src/dto/models/detection.py +65 -0
- unrealon_browser/src/dto/models/enums.py +63 -0
- unrealon_browser/src/dto/models/statistics.py +74 -0
- unrealon_browser/src/managers/__init__.py +18 -0
- unrealon_browser/src/managers/captcha.py +542 -0
- unrealon_browser/src/managers/cookies.py +395 -0
- unrealon_browser/src/managers/logger_bridge.py +395 -0
- unrealon_browser/src/managers/profile.py +436 -0
- unrealon_browser/src/managers/stealth.py +377 -0
- unrealon_driver/README.md +204 -0
- unrealon_driver/__init__.py +26 -0
- unrealon_driver/pyproject.toml +187 -0
- unrealon_driver/src/__init__.py +90 -0
- unrealon_driver/src/cli/__init__.py +10 -0
- unrealon_driver/src/cli/main.py +66 -0
- unrealon_driver/src/cli/simple.py +510 -0
- unrealon_driver/src/config/__init__.py +11 -0
- unrealon_driver/src/config/auto_config.py +478 -0
- unrealon_driver/src/core/__init__.py +18 -0
- unrealon_driver/src/core/exceptions.py +289 -0
- unrealon_driver/src/core/parser.py +638 -0
- unrealon_driver/src/dto/__init__.py +66 -0
- unrealon_driver/src/dto/cli.py +119 -0
- unrealon_driver/src/dto/config.py +18 -0
- unrealon_driver/src/dto/events.py +237 -0
- unrealon_driver/src/dto/execution.py +313 -0
- unrealon_driver/src/dto/services.py +311 -0
- unrealon_driver/src/execution/__init__.py +23 -0
- unrealon_driver/src/execution/daemon_mode.py +317 -0
- unrealon_driver/src/execution/interactive_mode.py +88 -0
- unrealon_driver/src/execution/modes.py +45 -0
- unrealon_driver/src/execution/scheduled_mode.py +209 -0
- unrealon_driver/src/execution/test_mode.py +250 -0
- unrealon_driver/src/logging/__init__.py +24 -0
- unrealon_driver/src/logging/driver_logger.py +512 -0
- unrealon_driver/src/services/__init__.py +24 -0
- unrealon_driver/src/services/browser_service.py +726 -0
- unrealon_driver/src/services/llm/__init__.py +15 -0
- unrealon_driver/src/services/llm/browser_llm_service.py +363 -0
- unrealon_driver/src/services/llm/llm.py +195 -0
- unrealon_driver/src/services/logger_service.py +232 -0
- unrealon_driver/src/services/metrics_service.py +185 -0
- unrealon_driver/src/services/scheduler_service.py +489 -0
- unrealon_driver/src/services/websocket_service.py +362 -0
- unrealon_driver/src/utils/__init__.py +16 -0
- unrealon_driver/src/utils/service_factory.py +317 -0
- unrealon_driver/src/utils/time_formatter.py +338 -0
- unrealon_llm/README.md +44 -0
- unrealon_llm/__init__.py +26 -0
- unrealon_llm/pyproject.toml +154 -0
- unrealon_llm/src/__init__.py +228 -0
- unrealon_llm/src/cli/__init__.py +0 -0
- unrealon_llm/src/core/__init__.py +11 -0
- unrealon_llm/src/core/smart_client.py +438 -0
- unrealon_llm/src/dto/__init__.py +155 -0
- unrealon_llm/src/dto/models/__init__.py +0 -0
- unrealon_llm/src/dto/models/config.py +343 -0
- unrealon_llm/src/dto/models/core.py +328 -0
- unrealon_llm/src/dto/models/enums.py +123 -0
- unrealon_llm/src/dto/models/html_analysis.py +345 -0
- unrealon_llm/src/dto/models/statistics.py +473 -0
- unrealon_llm/src/dto/models/translation.py +383 -0
- unrealon_llm/src/dto/models/type_conversion.py +462 -0
- unrealon_llm/src/dto/schemas/__init__.py +0 -0
- unrealon_llm/src/exceptions.py +392 -0
- unrealon_llm/src/llm_config/__init__.py +20 -0
- unrealon_llm/src/llm_config/logging_config.py +178 -0
- unrealon_llm/src/llm_logging/__init__.py +42 -0
- unrealon_llm/src/llm_logging/llm_events.py +107 -0
- unrealon_llm/src/llm_logging/llm_logger.py +466 -0
- unrealon_llm/src/managers/__init__.py +15 -0
- unrealon_llm/src/managers/cache_manager.py +67 -0
- unrealon_llm/src/managers/cost_manager.py +107 -0
- unrealon_llm/src/managers/request_manager.py +298 -0
- unrealon_llm/src/modules/__init__.py +0 -0
- unrealon_llm/src/modules/html_processor/__init__.py +25 -0
- unrealon_llm/src/modules/html_processor/base_processor.py +294 -0
- unrealon_llm/src/modules/html_processor/details_processor.py +61 -0
- unrealon_llm/src/modules/html_processor/listing_processor.py +67 -0
- unrealon_llm/src/modules/html_processor/models/__init__.py +20 -0
- unrealon_llm/src/modules/html_processor/models/processing_models.py +40 -0
- unrealon_llm/src/modules/html_processor/models/universal_model.py +56 -0
- unrealon_llm/src/modules/html_processor/processor.py +102 -0
- unrealon_llm/src/modules/llm/__init__.py +0 -0
- unrealon_llm/src/modules/translator/__init__.py +0 -0
- unrealon_llm/src/provider.py +116 -0
- unrealon_llm/src/utils/__init__.py +95 -0
- unrealon_llm/src/utils/common.py +64 -0
- unrealon_llm/src/utils/data_extractor.py +188 -0
- unrealon_llm/src/utils/html_cleaner.py +767 -0
- unrealon_llm/src/utils/language_detector.py +308 -0
- unrealon_llm/src/utils/models_cache.py +592 -0
- unrealon_llm/src/utils/smart_counter.py +229 -0
- unrealon_llm/src/utils/token_counter.py +189 -0
- unrealon_sdk/README.md +25 -0
- unrealon_sdk/__init__.py +30 -0
- unrealon_sdk/pyproject.toml +231 -0
- unrealon_sdk/src/__init__.py +150 -0
- unrealon_sdk/src/cli/__init__.py +12 -0
- unrealon_sdk/src/cli/commands/__init__.py +22 -0
- unrealon_sdk/src/cli/commands/benchmark.py +42 -0
- unrealon_sdk/src/cli/commands/diagnostics.py +573 -0
- unrealon_sdk/src/cli/commands/health.py +46 -0
- unrealon_sdk/src/cli/commands/integration.py +498 -0
- unrealon_sdk/src/cli/commands/reports.py +43 -0
- unrealon_sdk/src/cli/commands/security.py +36 -0
- unrealon_sdk/src/cli/commands/server.py +483 -0
- unrealon_sdk/src/cli/commands/servers.py +56 -0
- unrealon_sdk/src/cli/commands/tests.py +55 -0
- unrealon_sdk/src/cli/main.py +126 -0
- unrealon_sdk/src/cli/utils/reporter.py +519 -0
- unrealon_sdk/src/clients/openapi.yaml +3347 -0
- unrealon_sdk/src/clients/python_http/__init__.py +3 -0
- unrealon_sdk/src/clients/python_http/api_config.py +228 -0
- unrealon_sdk/src/clients/python_http/models/BaseModel.py +12 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +33 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +17 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +35 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +10 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +21 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +33 -0
- unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +11 -0
- unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +27 -0
- unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +21 -0
- unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +23 -0
- unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +25 -0
- unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +16 -0
- unrealon_sdk/src/clients/python_http/models/HealthResponse.py +23 -0
- unrealon_sdk/src/clients/python_http/models/HealthStatus.py +33 -0
- unrealon_sdk/src/clients/python_http/models/LogLevel.py +10 -0
- unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +27 -0
- unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +23 -0
- unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +9 -0
- unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +33 -0
- unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +39 -0
- unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +25 -0
- unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +21 -0
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +28 -0
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +25 -0
- unrealon_sdk/src/clients/python_http/models/ParserType.py +10 -0
- unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +19 -0
- unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +20 -0
- unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +19 -0
- unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +10 -0
- unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +25 -0
- unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +47 -0
- unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +23 -0
- unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +10 -0
- unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +19 -0
- unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +26 -0
- unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +23 -0
- unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +31 -0
- unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +23 -0
- unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +25 -0
- unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +23 -0
- unrealon_sdk/src/clients/python_http/models/ValidationError.py +18 -0
- unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +21 -0
- unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +21 -0
- unrealon_sdk/src/clients/python_http/models/__init__.py +44 -0
- unrealon_sdk/src/clients/python_http/services/None_service.py +35 -0
- unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +190 -0
- unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +289 -0
- unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +187 -0
- unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +119 -0
- unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +198 -0
- unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
- unrealon_sdk/src/clients/python_http/services/admin_service.py +125 -0
- unrealon_sdk/src/clients/python_http/services/async_None_service.py +35 -0
- unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +190 -0
- unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +289 -0
- unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +189 -0
- unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +123 -0
- unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +200 -0
- unrealon_sdk/src/clients/python_http/services/async_admin_service.py +125 -0
- unrealon_sdk/src/clients/python_websocket/__init__.py +28 -0
- unrealon_sdk/src/clients/python_websocket/client.py +490 -0
- unrealon_sdk/src/clients/python_websocket/events.py +732 -0
- unrealon_sdk/src/clients/python_websocket/example.py +136 -0
- unrealon_sdk/src/clients/python_websocket/types.py +871 -0
- unrealon_sdk/src/core/__init__.py +64 -0
- unrealon_sdk/src/core/client.py +556 -0
- unrealon_sdk/src/core/config.py +465 -0
- unrealon_sdk/src/core/exceptions.py +239 -0
- unrealon_sdk/src/core/metadata.py +191 -0
- unrealon_sdk/src/core/models.py +142 -0
- unrealon_sdk/src/core/types.py +68 -0
- unrealon_sdk/src/dto/__init__.py +268 -0
- unrealon_sdk/src/dto/authentication.py +108 -0
- unrealon_sdk/src/dto/cache.py +208 -0
- unrealon_sdk/src/dto/common.py +19 -0
- unrealon_sdk/src/dto/concurrency.py +393 -0
- unrealon_sdk/src/dto/events.py +108 -0
- unrealon_sdk/src/dto/health.py +339 -0
- unrealon_sdk/src/dto/load_balancing.py +336 -0
- unrealon_sdk/src/dto/logging.py +230 -0
- unrealon_sdk/src/dto/performance.py +165 -0
- unrealon_sdk/src/dto/rate_limiting.py +295 -0
- unrealon_sdk/src/dto/resource_pooling.py +128 -0
- unrealon_sdk/src/dto/structured_logging.py +112 -0
- unrealon_sdk/src/dto/task_scheduling.py +121 -0
- unrealon_sdk/src/dto/websocket.py +55 -0
- unrealon_sdk/src/enterprise/__init__.py +59 -0
- unrealon_sdk/src/enterprise/authentication.py +401 -0
- unrealon_sdk/src/enterprise/cache_manager.py +578 -0
- unrealon_sdk/src/enterprise/error_recovery.py +494 -0
- unrealon_sdk/src/enterprise/event_system.py +549 -0
- unrealon_sdk/src/enterprise/health_monitor.py +747 -0
- unrealon_sdk/src/enterprise/load_balancer.py +964 -0
- unrealon_sdk/src/enterprise/logging/__init__.py +68 -0
- unrealon_sdk/src/enterprise/logging/cleanup.py +156 -0
- unrealon_sdk/src/enterprise/logging/development.py +744 -0
- unrealon_sdk/src/enterprise/logging/service.py +410 -0
- unrealon_sdk/src/enterprise/multithreading_manager.py +853 -0
- unrealon_sdk/src/enterprise/performance_monitor.py +539 -0
- unrealon_sdk/src/enterprise/proxy_manager.py +696 -0
- unrealon_sdk/src/enterprise/rate_limiter.py +652 -0
- unrealon_sdk/src/enterprise/resource_pool.py +763 -0
- unrealon_sdk/src/enterprise/task_scheduler.py +709 -0
- unrealon_sdk/src/internal/__init__.py +10 -0
- unrealon_sdk/src/internal/command_router.py +497 -0
- unrealon_sdk/src/internal/connection_manager.py +397 -0
- unrealon_sdk/src/internal/http_client.py +446 -0
- unrealon_sdk/src/internal/websocket_client.py +420 -0
- unrealon_sdk/src/provider.py +471 -0
- unrealon_sdk/src/utils.py +234 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 UnrealOn Team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|