unrealon 2.0.9__py3-none-any.whl → 2.0.10__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unrealon
3
- Version: 2.0.9
3
+ Version: 2.0.10
4
4
  Summary: Enterprise-grade web scraping platform with AI-powered automation and real-time orchestration capabilities
5
5
  Author-email: UnrealOn Team <team@unrealon.com>
6
6
  License: MIT
@@ -115,7 +115,7 @@ unrealon_driver/driver/utilities/logging.py,sha256=2my2QnkAa6Hdw-TfO4oOQ94yGc-Cj
115
115
  unrealon_driver/driver/utilities/serialization.py,sha256=wTCSVrEloykiGN4K1JXbk2aqNKm7W90aWXmzhcLyAZc,2123
116
116
  unrealon_driver/managers/__init__.py,sha256=zJJsOb6Oodg7l00v4ncKUytnyeaZM887pHY8-eSuWdU,981
117
117
  unrealon_driver/managers/base.py,sha256=GkuXillg9uqqnx6RL682fmKgK-7JyqYlH6DFUgyN4F8,5445
118
- unrealon_driver/managers/browser.py,sha256=qM9-bBDSfxheQrjvPMRKDASeVEzy6T_-tH4XF2gc15w,4433
118
+ unrealon_driver/managers/browser.py,sha256=v2FjgtgzTM94Qobll9_7TGRVbxsMlVvirP_sj3u152Q,4608
119
119
  unrealon_driver/managers/cache.py,sha256=c0tPKQ5KFd_Un1U8mw3j1WPuycxg863MMWNMveVF_2I,3506
120
120
  unrealon_driver/managers/http.py,sha256=EjlpoTRuhpsgzzrEARxRlbGczzua7hnKFVq06bvCgTM,3624
121
121
  unrealon_driver/managers/logger.py,sha256=PL3rA9ZQl12jJU0EiPAkLwJ6eDHQfIzr8-nc8bVivKQ,10526
@@ -125,9 +125,9 @@ unrealon_driver/managers/threading.py,sha256=djw5cSC99dfBKmep3IJ_8IgxQceMXtNvCp5
125
125
  unrealon_driver/managers/update.py,sha256=-hohVxGXpj5bZ6ZTQN6NH1RK9Pd6GVzCMtu3GS2SdcQ,3582
126
126
  unrealon_driver/utils/__init__.py,sha256=qxXVoQJVdLJhaLBXk_LZV_062AhrvBrMPXWAKfEc3C4,104
127
127
  unrealon_driver/utils/time.py,sha256=Oxk1eicKeZl8ZWbf7gu1Ll716k6CpXmVj67FHSnPIsA,184
128
- unrealon-2.0.9.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
129
- unrealon-2.0.9.dist-info/METADATA,sha256=xxugB_yHPD7JBa7ZfHPdMZn8wUZ_Fxx0OtWXnbc6SN4,15688
130
- unrealon-2.0.9.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
131
- unrealon-2.0.9.dist-info/entry_points.txt,sha256=k0qM-eotpajkKUq-almJmxj9afhXprZ6IkvQkSdcKhI,104
132
- unrealon-2.0.9.dist-info/top_level.txt,sha256=Gu8IeIfIVfUxdi-h-F0nKMQxo15pjhHZ0aTadXTpRE8,47
133
- unrealon-2.0.9.dist-info/RECORD,,
128
+ unrealon-2.0.10.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
129
+ unrealon-2.0.10.dist-info/METADATA,sha256=fatBlrWFUSdwc5LjMflYHXNVlalO65qX482hwKToNpE,15689
130
+ unrealon-2.0.10.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
131
+ unrealon-2.0.10.dist-info/entry_points.txt,sha256=k0qM-eotpajkKUq-almJmxj9afhXprZ6IkvQkSdcKhI,104
132
+ unrealon-2.0.10.dist-info/top_level.txt,sha256=Gu8IeIfIVfUxdi-h-F0nKMQxo15pjhHZ0aTadXTpRE8,47
133
+ unrealon-2.0.10.dist-info/RECORD,,
@@ -6,6 +6,8 @@ from typing import Optional
6
6
  from pydantic import Field
7
7
 
8
8
  from unrealon_browser import BrowserManager as CoreBrowserManager, BrowserConfig
9
+ from unrealon_browser.dto.models.enums import BrowserMode
10
+
9
11
  from .base import BaseManager, ManagerConfig
10
12
 
11
13
 
@@ -51,10 +53,13 @@ class BrowserManager(BaseManager):
51
53
  try:
52
54
  self.logger.info("🚀 Starting browser (lazy initialization)...")
53
55
 
54
- # Create browser config
56
+ # Create browser config with proper headless mode
57
+ browser_mode = BrowserMode.HEADLESS if self.config.headless else BrowserMode.HEADED
58
+
55
59
  browser_config = BrowserConfig(
56
60
  parser_name=self.config.parser_name,
57
- stealth_warmup_enabled=self.config.stealth_warmup_enabled # Disable stealth warmup to avoid scanner navigation
61
+ mode=browser_mode,
62
+ stealth_warmup_enabled=self.config.stealth_warmup_enabled
58
63
  )
59
64
 
60
65
  # Create browser manager