vnai 0.0.3__py3-none-any.whl → 0.0.4__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.
raw/__init__.py
CHANGED
@@ -103,7 +103,10 @@ class VnstockInitializer:
|
|
103
103
|
else:
|
104
104
|
environment = "Other" # Non-interactive environment (e.g., script executed from an IDE)
|
105
105
|
else:
|
106
|
-
|
106
|
+
if 'google.colab' in sys.modules:
|
107
|
+
environment = "Google Colab"
|
108
|
+
else:
|
109
|
+
environment = "Jupyter"
|
107
110
|
except (ImportError, AttributeError):
|
108
111
|
# Fallback if IPython isn't installed or other checks fail
|
109
112
|
if sys.stdout.isatty():
|
@@ -0,0 +1,8 @@
|
|
1
|
+
raw/__init__.py,sha256=SShTBnlw4Lqo4PeJNtPr5-VjPaJqZsArFnugbZ0rg-I,14715
|
2
|
+
raw/analytics.py,sha256=KYGlbdqAkRcv8BLptz3REumyw90iwNc7ACvZ_idVacg,14534
|
3
|
+
raw/setup.py,sha256=FxCov16ZdUdEd6_WE-8msjFN2J9QeiidiU_FixaR9XU,204
|
4
|
+
vnai/__init__.py,sha256=SU0fZCTyF-L93GWiZXkogDqOEGftwTvsyi7wnXVV6XM,14590
|
5
|
+
vnai-0.0.4.dist-info/METADATA,sha256=4ZqfqTYpzU2tWiL-1R6z-YANsXR875OW78fo5Te3-sU,571
|
6
|
+
vnai-0.0.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
7
|
+
vnai-0.0.4.dist-info/top_level.txt,sha256=ZLryI6oFu_mU1ls4sX_Sr5-MFWmEwlxu2Xe6EaEObI4,9
|
8
|
+
vnai-0.0.4.dist-info/RECORD,,
|
vnai-0.0.3.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
raw/__init__.py,sha256=SU0fZCTyF-L93GWiZXkogDqOEGftwTvsyi7wnXVV6XM,14590
|
2
|
-
raw/analytics.py,sha256=KYGlbdqAkRcv8BLptz3REumyw90iwNc7ACvZ_idVacg,14534
|
3
|
-
raw/setup.py,sha256=FxCov16ZdUdEd6_WE-8msjFN2J9QeiidiU_FixaR9XU,204
|
4
|
-
vnai/__init__.py,sha256=SU0fZCTyF-L93GWiZXkogDqOEGftwTvsyi7wnXVV6XM,14590
|
5
|
-
vnai-0.0.3.dist-info/METADATA,sha256=vznozJViRWpsgOch9GvLIu-7ixlJxHX1nv2SHjJK_Fg,571
|
6
|
-
vnai-0.0.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
7
|
-
vnai-0.0.3.dist-info/top_level.txt,sha256=ZLryI6oFu_mU1ls4sX_Sr5-MFWmEwlxu2Xe6EaEObI4,9
|
8
|
-
vnai-0.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|