luxorasap 0.0.1__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.
@@ -0,0 +1,70 @@
1
+ Metadata-Version: 2.4
2
+ Name: luxorasap
3
+ Version: 0.0.1
4
+ Summary: Luxor’s unified toolbox for data ingestion, querying and analytics.
5
+ Author-email: Luxor Group <backoffice@luxor.com.br>
6
+ License: Proprietary – All rights reserved
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: Other/Proprietary License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.9
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: pandas>=2.2
13
+ Requires-Dist: numpy>=1.25
14
+ Requires-Dist: loguru>=0.7
15
+ Requires-Dist: python-dotenv>=1.0
16
+ Requires-Dist: azure-storage-blob>=12.19
17
+ Requires-Dist: pyarrow>=15.0
18
+ Requires-Dist: requests>=2.32
19
+ Requires-Dist: pydantic>=2.7
20
+ Requires-Dist: scipy>=1.13
21
+ Provides-Extra: datareader
22
+ Requires-Dist: pyarrow>=15.0; extra == "datareader"
23
+ Provides-Extra: ingest
24
+ Requires-Dist: pandera>=0.18; extra == "ingest"
25
+ Provides-Extra: btgapi
26
+ Requires-Dist: requests>=2.32; extra == "btgapi"
27
+ Requires-Dist: pydantic>=2.7; extra == "btgapi"
28
+ Provides-Extra: dev
29
+ Requires-Dist: pytest>=8.2; extra == "dev"
30
+ Requires-Dist: black>=24.4.0; extra == "dev"
31
+ Requires-Dist: isort>=5.13; extra == "dev"
32
+ Requires-Dist: bumpver>=2024.3; extra == "dev"
33
+ Requires-Dist: pre-commit>=3.7; extra == "dev"
34
+ Requires-Dist: build>=1.2; extra == "dev"
35
+
36
+ # LuxorASAP
37
+
38
+ **LuxorASAP** é o pacote-guarda-chuva que concentra as ferramentas internas de dados da Luxor Group:
39
+ consulta estruturada ao data lake, cargas padronizadas para ADLS, wrappers de API, utilitários e muito mais.
40
+
41
+ [![PyPI](https://img.shields.io/pypi/v/luxorasap.svg)](https://pypi.org/project/luxorasap/)
42
+ ![Python](https://img.shields.io/pypi/pyversions/luxorasap)
43
+
44
+ ---
45
+
46
+ ## Instalação
47
+
48
+ ```bash
49
+ # pacote base
50
+ pip install luxorasap
51
+
52
+ # com o submódulo datareader
53
+ pip install "luxorasap[datareader]"
54
+ ```
55
+ ## Uso rápido
56
+ ```python
57
+ from luxorasap.datareader import LuxorQuery
58
+
59
+ lq = LuxorQuery(blob_directory="enriched/parquet")
60
+ prices = lq.get_prices("aapl us equity", "2024-01-01", "2024-12-31")
61
+ print(prices.head())
62
+ ```
63
+ ## Submódulos
64
+ | Módulo | Descrição rápida | Extras |
65
+ | ---------------------- | ---------------------------------------- | ------------------------------------- |
66
+ | `luxorasap.datareader` | Leitura de tabelas e séries no data lake | `pip install "luxorasap[datareader]"` |
67
+ | `luxorasap.ingest` | Funções de carga padronizada para ADLS | `"luxorasap[ingest]"` |
68
+ | `luxorasap.btgapi` | Wrapper REST para dados BTG | `"luxorasap[btgapi]"` |
69
+
70
+ © Luxor Group – uso interno. Todos os direitos reservados.
@@ -0,0 +1,8 @@
1
+ luxorasap/__init__.py,sha256=tmaOA_ENRSY0yOvTx21yZvOnefVUUTMdnkL0bElLzq0,621
2
+ luxorasap/datareader/__init__.py,sha256=41RAvbrQ4R6oj67S32CrKqolx0CJ2W8cbOF6g5Cqm2g,120
3
+ luxorasap/datareader/core.py,sha256=VURibG9qly5Q1Fu6rrgvXypERb39S535wKd-xc8g0uU,156887
4
+ luxorasap-0.0.1.dist-info/METADATA,sha256=2jG86LoDMn789Lb8odUG9nP3LFsFUPikW1TEzA7F3pw,2633
5
+ luxorasap-0.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
6
+ luxorasap-0.0.1.dist-info/entry_points.txt,sha256=XFh-dOwUhlya9DmGvgookMI0ezyUJjcOvTIHDEYS44g,52
7
+ luxorasap-0.0.1.dist-info/top_level.txt,sha256=9YOL6bUIpzY06XFBRkUW1e4rgB32Ds91fQPGwUEjxzU,10
8
+ luxorasap-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ luxor-report = luxorasap.cli:main
@@ -0,0 +1 @@
1
+ luxorasap