luxorasap 0.2.15__py3-none-any.whl → 0.2.17__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/datareader/core.py +3 -2
- luxorasap/ingest/cloud/__init__.py +16 -16
- {luxorasap-0.2.15.dist-info → luxorasap-0.2.17.dist-info}/METADATA +1 -1
- {luxorasap-0.2.15.dist-info → luxorasap-0.2.17.dist-info}/RECORD +8 -8
- {luxorasap-0.2.15.dist-info → luxorasap-0.2.17.dist-info}/WHEEL +0 -0
- {luxorasap-0.2.15.dist-info → luxorasap-0.2.17.dist-info}/entry_points.txt +0 -0
- {luxorasap-0.2.15.dist-info → luxorasap-0.2.17.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.2.
|
|
16
|
+
__version__ = "0.2.17"
|
|
17
17
|
|
|
18
18
|
# ─── Lazy loader ─────────────────────────────────────────────────
|
|
19
19
|
def __getattr__(name: str) -> ModuleType:
|
luxorasap/datareader/core.py
CHANGED
|
@@ -235,7 +235,7 @@ class LuxorQuery:
|
|
|
235
235
|
raise ValueError(f"Erro ao converter coluna {col} para bool na tabela '{table_name}'.")
|
|
236
236
|
|
|
237
237
|
for col in table_columns.intersection(str_nan_format):
|
|
238
|
-
table_data[col] = table_data[col].replace("nan", pd.NA).replace("", pd.NA)
|
|
238
|
+
table_data[col] = table_data[col].replace("<NA>", pd.NA).replace("nan", pd.NA).replace("", pd.NA)
|
|
239
239
|
|
|
240
240
|
|
|
241
241
|
|
|
@@ -1155,7 +1155,8 @@ class LuxorQuery:
|
|
|
1155
1155
|
return df[["Date", "Benchmark"]].set_index("Date")
|
|
1156
1156
|
|
|
1157
1157
|
def get_quota_adjusted_by_amortization(self, fund_name, quota, date):
|
|
1158
|
-
|
|
1158
|
+
""" Obtem cota ajudata pela amortização. Sendo usando para ajustar as cotas do Maratona
|
|
1159
|
+
"""
|
|
1159
1160
|
amortizations = { # Amortizacao Bruta / PL antes da amortizacao
|
|
1160
1161
|
"maratona" : [{"event_date" : dt.date(2024,1,4), "amortization_ratio" : 2_517_404.21/24_165_260.40},
|
|
1161
1162
|
{"event_date" : dt.date(2025,1,8), "amortization_ratio" : 950_000/27_633_373.46},
|
|
@@ -40,21 +40,23 @@ def save_table(
|
|
|
40
40
|
format (str): Formato de saída ('parquet', 'excel', 'excel_multiple_sheets', 'pickle'). Defaults to 'parquet'.
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
43
|
+
# Se df for um pandas dataframe
|
|
44
|
+
if isinstance(df, pd.DataFrame):
|
|
45
|
+
if 'Last_Updated' not in df.columns:
|
|
46
|
+
df['Last_Updated'] = dt.datetime.now()
|
|
47
|
+
else:
|
|
48
|
+
# usando numpy, vamos substituir NaN ou 'nan' pela data e hora de agora
|
|
49
|
+
df["Last_Updated"] = np.where(((df["Last_Updated"].isna()) | (df["Last_Updated"] == 'nan')),
|
|
50
|
+
dt.datetime.now(),
|
|
51
|
+
df["Last_Updated"]
|
|
52
|
+
)
|
|
51
53
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
if override == False:
|
|
55
|
+
lq = LuxorQuery()
|
|
56
|
+
if lq.table_exists(table_name):
|
|
57
|
+
return
|
|
56
58
|
|
|
57
|
-
|
|
59
|
+
df = prep_for_save(df, index=index, index_name=index_name, normalize=normalize_columns)
|
|
58
60
|
|
|
59
61
|
if format == 'parquet':
|
|
60
62
|
#_client.write_df(df.astype(str), f"{directory}/{table_name}.parquet")
|
|
@@ -74,9 +76,7 @@ def save_table(
|
|
|
74
76
|
_client_excel.write_excel_multiple_sheets(df, f"{directory}/{table_name}.xlsx")
|
|
75
77
|
|
|
76
78
|
elif format == 'pickle':
|
|
77
|
-
|
|
78
|
-
if _client_pickle is None:
|
|
79
|
-
_client_pickle = BlobPickleClient()
|
|
79
|
+
_client_pickle = BlobPickleClient()
|
|
80
80
|
_client_pickle.write_pickle(df, f"{directory}/{table_name}.pkl")
|
|
81
81
|
|
|
82
82
|
else:
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
luxorasap/__init__.py,sha256=
|
|
1
|
+
luxorasap/__init__.py,sha256=PjZz55V0ABoEpa0e2xnx8Ims9ZZFh2HuwrbOaFI6C2E,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
|
|
5
5
|
luxorasap/btgapi/trades.py,sha256=956HZ9BvN9C_VQvKTyBLN0x6ZygwVqBZN11F7OnNbDI,5985
|
|
6
6
|
luxorasap/datareader/__init__.py,sha256=41RAvbrQ4R6oj67S32CrKqolx0CJ2W8cbOF6g5Cqm2g,120
|
|
7
|
-
luxorasap/datareader/core.py,sha256=
|
|
7
|
+
luxorasap/datareader/core.py,sha256=ZVuyU-gG2dujIJJdUe7r8sY6rHYykvVh_CLoCizVMjA,158916
|
|
8
8
|
luxorasap/ingest/__init__.py,sha256=gHkw8FU8TuRL5tfHkACxwsLHwLYX8SgX9xHkB8uTjww,831
|
|
9
|
-
luxorasap/ingest/cloud/__init__.py,sha256=
|
|
9
|
+
luxorasap/ingest/cloud/__init__.py,sha256=JYhrE6LG9mRTMdOreN9lfaLUNxqdB5S2vvM9dH1J4ak,8171
|
|
10
10
|
luxorasap/ingest/legacy_local/dataloader.py,sha256=DF3CvojDAi0itVDZPsQbmpl5pqMTNwOOpxTz4Ju8mho,12419
|
|
11
11
|
luxorasap/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
12
|
luxorasap/utils/dataframe/__init__.py,sha256=heKpmq58FmX35syzzwrHqlOWKYBkH2Z1jyqaQ_Vg-00,265
|
|
@@ -17,8 +17,8 @@ luxorasap/utils/storage/blob.py,sha256=28bsUbEUjg_LapDZ4P3kWkxHDQGNXv_Jik49RfXbw
|
|
|
17
17
|
luxorasap/utils/storage/change_tracker.py,sha256=HkeKc62UyD2BtP2gqafnJHZSBvYreH_7SQI1CYhn3Us,11709
|
|
18
18
|
luxorasap/utils/tools/__init__.py,sha256=dvK7Z4xnNQAuEiObVN7qjeLWAvP49JeFn2Oq9GdgmXs,76
|
|
19
19
|
luxorasap/utils/tools/excel.py,sha256=SfeTcbJWsWq3uKruwKSjJ4aWgMovITzlNXjP2bhdMjI,1246
|
|
20
|
-
luxorasap-0.2.
|
|
21
|
-
luxorasap-0.2.
|
|
22
|
-
luxorasap-0.2.
|
|
23
|
-
luxorasap-0.2.
|
|
24
|
-
luxorasap-0.2.
|
|
20
|
+
luxorasap-0.2.17.dist-info/METADATA,sha256=vv-eqrsM0gobqj9IRydpYgoq3S3_N8LampIaUgeBcVI,3804
|
|
21
|
+
luxorasap-0.2.17.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
22
|
+
luxorasap-0.2.17.dist-info/entry_points.txt,sha256=XFh-dOwUhlya9DmGvgookMI0ezyUJjcOvTIHDEYS44g,52
|
|
23
|
+
luxorasap-0.2.17.dist-info/top_level.txt,sha256=9YOL6bUIpzY06XFBRkUW1e4rgB32Ds91fQPGwUEjxzU,10
|
|
24
|
+
luxorasap-0.2.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|