luxorasap 0.2.18__py3-none-any.whl → 0.2.20__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 +9 -3
- {luxorasap-0.2.18.dist-info → luxorasap-0.2.20.dist-info}/METADATA +1 -1
- {luxorasap-0.2.18.dist-info → luxorasap-0.2.20.dist-info}/RECORD +7 -7
- {luxorasap-0.2.18.dist-info → luxorasap-0.2.20.dist-info}/WHEEL +0 -0
- {luxorasap-0.2.18.dist-info → luxorasap-0.2.20.dist-info}/entry_points.txt +0 -0
- {luxorasap-0.2.18.dist-info → luxorasap-0.2.20.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.20"
|
|
17
17
|
|
|
18
18
|
# ─── Lazy loader ─────────────────────────────────────────────────
|
|
19
19
|
def __getattr__(name: str) -> ModuleType:
|
luxorasap/datareader/core.py
CHANGED
|
@@ -845,9 +845,12 @@ class LuxorQuery:
|
|
|
845
845
|
data_value = None
|
|
846
846
|
try:
|
|
847
847
|
data_value = hist_all_flds.query("Date <= @data_date and Field == @flds and Ticker == @ticker")["Value"]
|
|
848
|
+
if len(data_value) == 0:
|
|
849
|
+
logging.info(f"Dado de {flds} nao disponivel para o ticker '{ticker}' na data '{data_date}'.")
|
|
850
|
+
return None
|
|
848
851
|
data_value = data_value.tail(1).squeeze()
|
|
849
852
|
except KeyError:
|
|
850
|
-
logging.info(f"
|
|
853
|
+
logging.info(f"Não foi possivel acessar a coluna Value da tabela hist_all_flds.")
|
|
851
854
|
|
|
852
855
|
# Verificando o formato
|
|
853
856
|
data_type = self.get_table("field_map").query("Field == @flds")["Value_Type"].squeeze()
|
|
@@ -865,8 +868,11 @@ class LuxorQuery:
|
|
|
865
868
|
if ticker == 'mcor34 bz equity':
|
|
866
869
|
return 4 #TODO remover quando atualizacao da table for reestabelecida
|
|
867
870
|
sizes = self.get_table("bdr_sizes", index=True, index_name="Ticker")
|
|
868
|
-
|
|
869
|
-
|
|
871
|
+
# dropar coluna Last_Updated caso exista
|
|
872
|
+
if "Last_Updated" in sizes.columns:
|
|
873
|
+
sizes = sizes.drop(columns=["Last_Updated"])
|
|
874
|
+
|
|
875
|
+
return sizes.loc[ticker.lower()].tail(1).squeeze()
|
|
870
876
|
|
|
871
877
|
|
|
872
878
|
def get_cash_movements(self, fund_name, ref_date):
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
luxorasap/__init__.py,sha256=
|
|
1
|
+
luxorasap/__init__.py,sha256=5FsmXUAf4hYEHYCSIBmvoRVTfkwpkbygvvxhKox_voI,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=DvhQn2h1PeATsp6hTgBiJyQ3CjkFECAf3t6-HYP36tc,159661
|
|
8
8
|
luxorasap/ingest/__init__.py,sha256=gHkw8FU8TuRL5tfHkACxwsLHwLYX8SgX9xHkB8uTjww,831
|
|
9
9
|
luxorasap/ingest/cloud/__init__.py,sha256=JYhrE6LG9mRTMdOreN9lfaLUNxqdB5S2vvM9dH1J4ak,8171
|
|
10
10
|
luxorasap/ingest/legacy_local/dataloader.py,sha256=DF3CvojDAi0itVDZPsQbmpl5pqMTNwOOpxTz4Ju8mho,12419
|
|
@@ -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.20.dist-info/METADATA,sha256=Nl7uGYfwT3O2rQKJitpAky1IwfF9SmMf4vldPDCA2cc,3804
|
|
21
|
+
luxorasap-0.2.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
22
|
+
luxorasap-0.2.20.dist-info/entry_points.txt,sha256=XFh-dOwUhlya9DmGvgookMI0ezyUJjcOvTIHDEYS44g,52
|
|
23
|
+
luxorasap-0.2.20.dist-info/top_level.txt,sha256=9YOL6bUIpzY06XFBRkUW1e4rgB32Ds91fQPGwUEjxzU,10
|
|
24
|
+
luxorasap-0.2.20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|