kensho-kfinance 1.0.0__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.
Potentially problematic release.
This version of kensho-kfinance might be problematic. Click here for more details.
- kensho_kfinance-1.0.0.dist-info/AUTHORS.md +9 -0
- kensho_kfinance-1.0.0.dist-info/LICENSE +1 -0
- kensho_kfinance-1.0.0.dist-info/METADATA +53 -0
- kensho_kfinance-1.0.0.dist-info/RECORD +21 -0
- kensho_kfinance-1.0.0.dist-info/WHEEL +5 -0
- kensho_kfinance-1.0.0.dist-info/top_level.txt +1 -0
- kfinance/CHANGELOG.md +10 -0
- kfinance/__init__.py +0 -0
- kfinance/constants.py +1689 -0
- kfinance/fetch.py +374 -0
- kfinance/kfinance.py +1224 -0
- kfinance/llm_tools.py +688 -0
- kfinance/meta_classes.py +367 -0
- kfinance/prompt.py +526 -0
- kfinance/py.typed +0 -0
- kfinance/server_thread.py +62 -0
- kfinance/tests/__init__.py +0 -0
- kfinance/tests/test_fetch.py +241 -0
- kfinance/tests/test_objects.py +551 -0
- kfinance/tool_schemas.py +132 -0
- kfinance/version.py +21 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Use is solely in accordance with the signed agreement between your entity and S&P.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: kensho-kfinance
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Python CLI for kFinance
|
|
5
|
+
Author-email: Luke Brown <luke.brown@kensho.com>, Michelle Keoy <michelle.keoy@kensho.com>, Keith Page <keith.page@kensho.com>, Matthew Rosen <matthew.rosen@kensho.com>, Nick Roshdieh <nick.roshdieh@kensho.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
License-File: AUTHORS.md
|
|
12
|
+
Requires-Dist: python-dateutil<2.9,>=2.8.2
|
|
13
|
+
Requires-Dist: requests<3,>=2.22.0
|
|
14
|
+
Requires-Dist: urllib3>=2.3.0
|
|
15
|
+
Requires-Dist: pyjwt>=2.8.0
|
|
16
|
+
Requires-Dist: numpy>=1.22.4
|
|
17
|
+
Requires-Dist: pandas>=2.0.0
|
|
18
|
+
Requires-Dist: types-requests<3,>=2.22.0
|
|
19
|
+
Requires-Dist: pillow>=10
|
|
20
|
+
Requires-Dist: langchain-core>=0.3.15
|
|
21
|
+
Requires-Dist: strenum>=0.4.15
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: coverage<8,>=7.6.10; extra == "dev"
|
|
24
|
+
Requires-Dist: mypy<2,>=1.15.0; extra == "dev"
|
|
25
|
+
Requires-Dist: pytest<7,>=6.1.2; extra == "dev"
|
|
26
|
+
Requires-Dist: pytest-cov<7,>=6.0.0; extra == "dev"
|
|
27
|
+
Requires-Dist: ruff<1,>=0.9.4; extra == "dev"
|
|
28
|
+
|
|
29
|
+
# kFinance
|
|
30
|
+
|
|
31
|
+
The kFinance Python library provides a simple interface for the LLM-ready API, streamlining API requests and response handling. It can be used on its own, with LLMs, or integrated into applications.
|
|
32
|
+
|
|
33
|
+
For a complete overview of the functions, usage, and features of the kFinance Python library, please refer to documentation [here](https://kfinance.kensho.com/docs).
|
|
34
|
+
|
|
35
|
+
Any questions or suggestions can be sent to the [kFinance Maintainers](kfinance-maintainers@kensho.com).
|
|
36
|
+
|
|
37
|
+
# Setup
|
|
38
|
+
|
|
39
|
+
You can install kFinance on [PyPI](https://pypi.org/project/kfinance/) via
|
|
40
|
+
|
|
41
|
+
`pip install kfinance`
|
|
42
|
+
|
|
43
|
+
# Getting started
|
|
44
|
+
|
|
45
|
+
To receive access, please email [S&P Global Market Intelligence](market.intelligence@spglobal.com) for information on free trials and pricing.
|
|
46
|
+
|
|
47
|
+
Once access is obtained, get started using the [Authentication Guide](https://docs.kensho.com/llmreadyapi/kf-authentication) and [Usage Guide](https://docs.kensho.com/llmreadyapi/usage).
|
|
48
|
+
|
|
49
|
+
# License
|
|
50
|
+
|
|
51
|
+
Use is solely in accordance with the signed agreement between your entity and S&P.
|
|
52
|
+
|
|
53
|
+
Copyright 2025-present Kensho Technologies, LLC. The present date is determined by the timestamp of the most recent commit in the repository.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
kfinance/CHANGELOG.md,sha256=mVWbowuFa7YnDXHfICd0N0SsyhMuaFsOyi6-Wn_mo_Y,153
|
|
2
|
+
kfinance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
kfinance/constants.py,sha256=SJfI3K2gS0N-M3-rHIMizcxjyTz_iWBc7UYtauUOjDg,47338
|
|
4
|
+
kfinance/fetch.py,sha256=z_G0eOQ5ymp6nUoB--5gxZAs93nBpsgjeu5rXHqkK2g,15067
|
|
5
|
+
kfinance/kfinance.py,sha256=4yVNoi1PMEwMUwYrcz4AypHu-TXfTPaZDzuykDB4Qs0,44669
|
|
6
|
+
kfinance/llm_tools.py,sha256=OMjdMfTN3TG3nLjjwLa09AxLpukJNRcK1jLF-hIn2MU,27826
|
|
7
|
+
kfinance/meta_classes.py,sha256=fWO4wHmpnS_8VR0z7Zs0T0vJkycGJw4skEUR5_IHp0g,13160
|
|
8
|
+
kfinance/prompt.py,sha256=PtVB8c_FcSlVdyGgByAnIFGzuUuBaEjciCqnBJl1hSQ,25133
|
|
9
|
+
kfinance/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
kfinance/server_thread.py,sha256=jUnt1YGoYDkqqz1MbCwd44zJs1T_Z2BCgvj75bdtLgA,2574
|
|
11
|
+
kfinance/tool_schemas.py,sha256=uTD9FS7omI21qV3SakEOjkBCEzSAfMtk8agweIOIVGc,5051
|
|
12
|
+
kfinance/version.py,sha256=fo5PXsZuloQZu3LdpIFTUAXvJmY2L9N5sNGe2tvdU98,511
|
|
13
|
+
kfinance/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
kfinance/tests/test_fetch.py,sha256=H4rBjbTb-HqKroy6wwbalFN6A0v4hFyfbJwZnVnuXMo,11961
|
|
15
|
+
kfinance/tests/test_objects.py,sha256=M07iul48ZqwMqEWXO9EA4Rq4Ys2jHPu5q8g1_Jst4Gk,21247
|
|
16
|
+
kensho_kfinance-1.0.0.dist-info/AUTHORS.md,sha256=0h9ClbI0pu1oKj1M28ROUsaxrbZg-6ukQGl6X4y9noI,68
|
|
17
|
+
kensho_kfinance-1.0.0.dist-info/LICENSE,sha256=bsY4blvSgq6o0FMQ3RXa2NCgco--nHCCchLXzxr6kms,83
|
|
18
|
+
kensho_kfinance-1.0.0.dist-info/METADATA,sha256=ze2gPctbAtWPzEKsCSIJdl2f6HGEtWFhh_xFP_FivNc,2287
|
|
19
|
+
kensho_kfinance-1.0.0.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
|
|
20
|
+
kensho_kfinance-1.0.0.dist-info/top_level.txt,sha256=kT_kNwVhfQoOAecY8W7uYah5xaHMoHoAdBIvXh6DaKM,9
|
|
21
|
+
kensho_kfinance-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
kfinance
|
kfinance/CHANGELOG.md
ADDED
kfinance/__init__.py
ADDED
|
File without changes
|