luxorasap 0.1.30__py3-none-any.whl → 0.1.31__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.
- luxorasap/__init__.py +1 -1
- luxorasap/ingest/legacy_local/dataloader.py +7 -3
- {luxorasap-0.1.30.dist-info → luxorasap-0.1.31.dist-info}/METADATA +1 -1
- {luxorasap-0.1.30.dist-info → luxorasap-0.1.31.dist-info}/RECORD +7 -7
- {luxorasap-0.1.30.dist-info → luxorasap-0.1.31.dist-info}/WHEEL +0 -0
- {luxorasap-0.1.30.dist-info → luxorasap-0.1.31.dist-info}/entry_points.txt +0 -0
- {luxorasap-0.1.30.dist-info → luxorasap-0.1.31.dist-info}/top_level.txt +0 -0
luxorasap/__init__.py
CHANGED
|
@@ -13,7 +13,7 @@ from types import ModuleType
|
|
|
13
13
|
try:
|
|
14
14
|
__version__: str = metadata.version(__name__)
|
|
15
15
|
except metadata.PackageNotFoundError: # editable install
|
|
16
|
-
__version__ = "0.1.
|
|
16
|
+
__version__ = "0.1.31"
|
|
17
17
|
|
|
18
18
|
# ─── Lazy loader ─────────────────────────────────────────────────
|
|
19
19
|
def __getattr__(name: str) -> ModuleType:
|
|
@@ -15,6 +15,7 @@ load_dotenv()
|
|
|
15
15
|
|
|
16
16
|
from luxorasap.datareader import LuxorQuery
|
|
17
17
|
from luxorasap.utils.dataframe import transforms
|
|
18
|
+
from luxorasap.ingest import save_table
|
|
18
19
|
|
|
19
20
|
import warnings
|
|
20
21
|
warnings.warn(
|
|
@@ -143,9 +144,12 @@ class DataLoader:
|
|
|
143
144
|
if table_name == "trades":
|
|
144
145
|
table_data["ID"] = table_data.index
|
|
145
146
|
|
|
146
|
-
self.__export_table(table_name, table_data, index=file_data["index"], index_name=file_data["index_name"],
|
|
147
|
-
|
|
148
|
-
|
|
147
|
+
#self.__export_table(table_name, table_data, index=file_data["index"], index_name=file_data["index_name"],
|
|
148
|
+
# normalize_columns=file_data["normalize_columns"], export_to_blob=export_to_blob,
|
|
149
|
+
# blob_directory=blob_directory)
|
|
150
|
+
save_table(table_name, table_data, index=file_data["index"], index_name=file_data["index_name"],
|
|
151
|
+
normalize_columns=file_data["normalize_columns"], directory=blob_directory)
|
|
152
|
+
|
|
149
153
|
self.tracked_files[tracked_file_path]["last_mtime"] = file_last_update
|
|
150
154
|
|
|
151
155
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
luxorasap/__init__.py,sha256=
|
|
1
|
+
luxorasap/__init__.py,sha256=EVJadSR-Kxx4viyRZ8ZRW4GBhVsRT5D7qxyREND2KMg,1356
|
|
2
2
|
luxorasap/btgapi/__init__.py,sha256=QUlfb5oiBY6K1Q5x4-a-x2wECe1At5wc2962I5odOJk,620
|
|
3
3
|
luxorasap/btgapi/auth.py,sha256=PvyCtbEyBO2B1CIeAlNXWugKW1OgiKfPcVzS6K5FBnQ,1872
|
|
4
4
|
luxorasap/btgapi/reports.py,sha256=ZVEMLoJPXc0r3XjPJPMsKQN0zZd1Npd7umNpAj1bncs,8040
|
|
@@ -7,15 +7,15 @@ luxorasap/datareader/__init__.py,sha256=41RAvbrQ4R6oj67S32CrKqolx0CJ2W8cbOF6g5Cq
|
|
|
7
7
|
luxorasap/datareader/core.py,sha256=aPFEu6Wk7wGRxlyBUmaAznp2KXxOduWy93nliFWdwN4,156151
|
|
8
8
|
luxorasap/ingest/__init__.py,sha256=XhxDTN2ar-u6UCPhnxNU_to-nWiit-SpQ6cA_N9eMSs,795
|
|
9
9
|
luxorasap/ingest/cloud/__init__.py,sha256=7yqEgeDxplkqYTzZNB0kfkSQ8PXF-77BXMW2DMYtJbU,2911
|
|
10
|
-
luxorasap/ingest/legacy_local/dataloader.py,sha256=
|
|
10
|
+
luxorasap/ingest/legacy_local/dataloader.py,sha256=QJacQpj-b6RadnfZutjobKXbn9zVqMb945eOwgejjeg,12196
|
|
11
11
|
luxorasap/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
luxorasap/utils/dataframe/__init__.py,sha256=heKpmq58FmX35syzzwrHqlOWKYBkH2Z1jyqaQ_Vg-00,265
|
|
13
13
|
luxorasap/utils/dataframe/reader.py,sha256=Vzjdw-AeS1lnWEHQ8RZNh0kK93NWTp0NWVi_B6mN5N0,616
|
|
14
14
|
luxorasap/utils/dataframe/transforms.py,sha256=OIvlTTcjFX6bUhuQp_syEp7ssm4sLzwvgsag6n2Wl3k,2438
|
|
15
15
|
luxorasap/utils/storage/__init__.py,sha256=U3XRq94yzRp3kgBSUcRzs2tQgJ4o8h8a1ZzwiscA5XM,67
|
|
16
16
|
luxorasap/utils/storage/blob.py,sha256=0QnwrUP-9vWYK8ffa6NqE7rV_t6RdScRM8GQnMxY_4w,3184
|
|
17
|
-
luxorasap-0.1.
|
|
18
|
-
luxorasap-0.1.
|
|
19
|
-
luxorasap-0.1.
|
|
20
|
-
luxorasap-0.1.
|
|
21
|
-
luxorasap-0.1.
|
|
17
|
+
luxorasap-0.1.31.dist-info/METADATA,sha256=4lf0aZ_GiFS-dlJcX9nPXbflHN51H9N8lIPR3Gq0Mjo,3804
|
|
18
|
+
luxorasap-0.1.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
luxorasap-0.1.31.dist-info/entry_points.txt,sha256=XFh-dOwUhlya9DmGvgookMI0ezyUJjcOvTIHDEYS44g,52
|
|
20
|
+
luxorasap-0.1.31.dist-info/top_level.txt,sha256=9YOL6bUIpzY06XFBRkUW1e4rgB32Ds91fQPGwUEjxzU,10
|
|
21
|
+
luxorasap-0.1.31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|