unrealon 2.0.15__py3-none-any.whl → 2.0.16__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-2.0.15.dist-info → unrealon-2.0.16.dist-info}/METADATA +1 -1
- {unrealon-2.0.15.dist-info → unrealon-2.0.16.dist-info}/RECORD +7 -7
- unrealon_installer/core.py +4 -3
- {unrealon-2.0.15.dist-info → unrealon-2.0.16.dist-info}/LICENSE +0 -0
- {unrealon-2.0.15.dist-info → unrealon-2.0.16.dist-info}/WHEEL +0 -0
- {unrealon-2.0.15.dist-info → unrealon-2.0.16.dist-info}/entry_points.txt +0 -0
- {unrealon-2.0.15.dist-info → unrealon-2.0.16.dist-info}/top_level.txt +0 -0
|
@@ -127,12 +127,12 @@ unrealon_driver/utils/__init__.py,sha256=2Sz3eats5q4O2fDmefDuJt8M_zkN6xrS-9xXntW
|
|
|
127
127
|
unrealon_driver/utils/time.py,sha256=Oxk1eicKeZl8ZWbf7gu1Ll716k6CpXmVj67FHSnPIsA,184
|
|
128
128
|
unrealon_installer/__init__.py,sha256=JxA2hKat5E6R6nt-batuAc-2Cr0nO2M0XW0vOFU_xy0,333
|
|
129
129
|
unrealon_installer/browser_fixes.py,sha256=I09aEMWwvN8-SbGJqJQHcnvsR4_JmjoiRKoyIqft4Rc,7754
|
|
130
|
-
unrealon_installer/core.py,sha256=
|
|
130
|
+
unrealon_installer/core.py,sha256=2BDDTrKthFtSqdRq0gSLkzN6lpMC9ER024wFMb1E5VQ,4584
|
|
131
131
|
unrealon_installer/platform.py,sha256=NI6-j6674jLWjF0RFRDwXW01D0OueEhhijjevgmbAVs,3122
|
|
132
132
|
unrealon_installer/templates.py,sha256=jU3Fznp_VfZedfWNutVzepGUv2QYI2Q4LM_j8H38CrU,1896
|
|
133
|
-
unrealon-2.0.
|
|
134
|
-
unrealon-2.0.
|
|
135
|
-
unrealon-2.0.
|
|
136
|
-
unrealon-2.0.
|
|
137
|
-
unrealon-2.0.
|
|
138
|
-
unrealon-2.0.
|
|
133
|
+
unrealon-2.0.16.dist-info/LICENSE,sha256=eEH8mWZW49YMpl4Sh5MtKqkZ8aVTzKQXiNPEnvL14ns,1070
|
|
134
|
+
unrealon-2.0.16.dist-info/METADATA,sha256=-z8xcBDIOXBoV1_iBWpMIo8CZx9_R0JlTlF73etZS24,15718
|
|
135
|
+
unrealon-2.0.16.dist-info/WHEEL,sha256=pL8R0wFFS65tNSRnaOVrsw9EOkOqxLrlUPenUYnJKNo,91
|
|
136
|
+
unrealon-2.0.16.dist-info/entry_points.txt,sha256=tBJgozewpyuXznEYIsLwfE1s16VRjy3Wizhuyh26zb4,153
|
|
137
|
+
unrealon-2.0.16.dist-info/top_level.txt,sha256=qN6Q72fe4_i8mTOhYcO3fhGa3g4dmBgvZOsqmK4j8D8,66
|
|
138
|
+
unrealon-2.0.16.dist-info/RECORD,,
|
unrealon_installer/core.py
CHANGED
|
@@ -14,21 +14,22 @@ from .templates import TemplateEngine
|
|
|
14
14
|
from .browser_fixes import fix_browsers, diagnose_browsers
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
def install_parser(
|
|
17
|
+
def install_parser(parser_path: str = ".") -> bool:
|
|
18
18
|
"""
|
|
19
19
|
Install everything for a UnrealOn parser.
|
|
20
20
|
|
|
21
21
|
Args:
|
|
22
|
-
parser_name: Name like "upbit_concurrent"
|
|
23
22
|
parser_path: Path to parser directory
|
|
24
23
|
|
|
25
24
|
Returns:
|
|
26
25
|
True if success, False if failed
|
|
27
26
|
"""
|
|
27
|
+
parser_dir = Path(parser_path).resolve()
|
|
28
|
+
parser_name = parser_dir.name # Auto-detect from directory name
|
|
29
|
+
|
|
28
30
|
print(f"🚀 Installing {parser_name}")
|
|
29
31
|
print("=" * 40)
|
|
30
32
|
|
|
31
|
-
parser_dir = Path(parser_path).resolve()
|
|
32
33
|
os.chdir(parser_dir)
|
|
33
34
|
|
|
34
35
|
# 1. Apply platform fixes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|