unrealon 2.0.33__py3-none-any.whl → 2.0.34__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.33
3
+ Version: 2.0.34
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
@@ -83,7 +83,7 @@ unrealon_core/monitoring/health_check.py,sha256=UAdZ1Of0LCWFVfVXQP0BF-4HDOe4rxyh
83
83
  unrealon_core/monitoring/metrics.py,sha256=UPCRoridgGVxQ1kh--NuXzH-2dY0WyKljfXDH96OroU,11705
84
84
  unrealon_core/utils/__init__.py,sha256=L4nJum_ekqh3Rn324pcIASfr6QQtnT_PwWKCtl2L0mU,179
85
85
  unrealon_core/utils/time.py,sha256=27iWhOEl4wHgBOag7gqFlI0hl5cTHPnKHoe8GxmnKHA,1356
86
- unrealon_driver/__init__.py,sha256=un_W-fmvFJ8TIIEKpEOK0Fi62InXTUL8cRCiKgKUtwY,1975
86
+ unrealon_driver/__init__.py,sha256=EAlYxuwkpAj1hQHYgfWUgaUX2cN0ox8k-uxkdN9Q-ys,2599
87
87
  unrealon_driver/core_module/__init__.py,sha256=v4bHF0eqSQBAUBBEl8RnQWrvb3LjAeIAQCeIXrRTy3w,620
88
88
  unrealon_driver/core_module/base.py,sha256=RbC6MVQSA-1145gnDMdsMJ_QnMpQT52pIg86UfRSSMc,6135
89
89
  unrealon_driver/core_module/config.py,sha256=N0XGWsoYmv2ruKZOZKOyfaHOZ_jstUDqH7aTqURG2TI,1023
@@ -127,9 +127,9 @@ unrealon_driver/managers/threading.py,sha256=djw5cSC99dfBKmep3IJ_8IgxQceMXtNvCp5
127
127
  unrealon_driver/managers/update.py,sha256=-hohVxGXpj5bZ6ZTQN6NH1RK9Pd6GVzCMtu3GS2SdcQ,3582
128
128
  unrealon_driver/utils/__init__.py,sha256=2Sz3eats5q4O2fDmefDuJt8M_zkN6xrS-9xXntWZWFc,168
129
129
  unrealon_driver/utils/time.py,sha256=Oxk1eicKeZl8ZWbf7gu1Ll716k6CpXmVj67FHSnPIsA,184
130
- unrealon-2.0.33.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
131
- unrealon-2.0.33.dist-info/METADATA,sha256=8wOfd43TlGdZ-0sB4AaXtmCPP1mX1y7wsTN9lqPHKvw,15689
132
- unrealon-2.0.33.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
133
- unrealon-2.0.33.dist-info/entry_points.txt,sha256=k0qM-eotpajkKUq-almJmxj9afhXprZ6IkvQkSdcKhI,104
134
- unrealon-2.0.33.dist-info/top_level.txt,sha256=Gu8IeIfIVfUxdi-h-F0nKMQxo15pjhHZ0aTadXTpRE8,47
135
- unrealon-2.0.33.dist-info/RECORD,,
130
+ unrealon-2.0.34.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
131
+ unrealon-2.0.34.dist-info/METADATA,sha256=xZkorKxeW0f0dLynonoXpTlvHYvhbuPCiWzoHFep2Y4,15689
132
+ unrealon-2.0.34.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
133
+ unrealon-2.0.34.dist-info/entry_points.txt,sha256=k0qM-eotpajkKUq-almJmxj9afhXprZ6IkvQkSdcKhI,104
134
+ unrealon-2.0.34.dist-info/top_level.txt,sha256=Gu8IeIfIVfUxdi-h-F0nKMQxo15pjhHZ0aTadXTpRE8,47
135
+ unrealon-2.0.34.dist-info/RECORD,,
@@ -105,3 +105,24 @@ __all__ = [
105
105
  "timing",
106
106
 
107
107
  ]
108
+
109
+ # Auto-register platform fixes and cleanup for Windows
110
+ # This ensures all parsers get proper asyncio handling automatically
111
+ try:
112
+ from .platform import apply_platform_fixes, cleanup_asyncio_resources
113
+ import atexit
114
+ import platform
115
+
116
+ # Apply fixes immediately on import
117
+ apply_platform_fixes()
118
+
119
+ # Register cleanup for Windows
120
+ if platform.system() == "Windows":
121
+ atexit.register(cleanup_asyncio_resources)
122
+
123
+ except ImportError:
124
+ # platform module not available, skip platform fixes
125
+ pass
126
+ except Exception:
127
+ # Any other error, fail silently to not break imports
128
+ pass