kabukit 0.7.2__tar.gz → 0.7.3__tar.gz
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.
- {kabukit-0.7.2 → kabukit-0.7.3}/PKG-INFO +14 -1
- {kabukit-0.7.2 → kabukit-0.7.3}/pyproject.toml +26 -2
- {kabukit-0.7.2 → kabukit-0.7.3}/LICENSE +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/README.md +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/indicators.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/preprocess.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/screener.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/visualization/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/visualization/market.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/analysis/visualization/prices.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/cli/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/cli/app.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/cli/auth.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/cli/cache.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/cli/get.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/base.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/client.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/info.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/list.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/prices.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/reports.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/core/statements.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/edinet/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/edinet/client.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/edinet/concurrent.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/edinet/doc.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/calendar.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/client.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/concurrent.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/info.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/prices.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/schema.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/statements.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/jquants/topix.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/py.typed +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/utils/__init__.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/utils/concurrent.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/utils/config.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/utils/date.py +0 -0
- {kabukit-0.7.2 → kabukit-0.7.3}/src/kabukit/utils/params.py +0 -0
@@ -1,7 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: kabukit
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.3
|
4
4
|
Summary: A Python toolkit for Japanese financial market data, supporting J-Quants and EDINET APIs.
|
5
|
+
Keywords: J-Quants,EDINET,financial data,stock market,investment,toolkit,finance,trading,data analysis,polars
|
5
6
|
Author: daizutabi
|
6
7
|
Author-email: daizutabi <daizutabi@gmail.com>
|
7
8
|
License: MIT License
|
@@ -27,8 +28,18 @@ License: MIT License
|
|
27
28
|
SOFTWARE.
|
28
29
|
Classifier: Development Status :: 4 - Beta
|
29
30
|
Classifier: Programming Language :: Python
|
31
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
30
32
|
Classifier: Programming Language :: Python :: 3.13
|
31
33
|
Classifier: Programming Language :: Python :: 3.14
|
34
|
+
Classifier: License :: OSI Approved :: MIT License
|
35
|
+
Classifier: Operating System :: OS Independent
|
36
|
+
Classifier: Intended Audience :: Developers
|
37
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
38
|
+
Classifier: Intended Audience :: Science/Research
|
39
|
+
Classifier: Topic :: Office/Business :: Financial
|
40
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
41
|
+
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
42
|
+
Classifier: Topic :: Utilities
|
32
43
|
Requires-Dist: async-typer>=0.1.10
|
33
44
|
Requires-Dist: httpx>=0.28.1
|
34
45
|
Requires-Dist: platformdirs>=4.5.0
|
@@ -40,7 +51,9 @@ Requires-Dist: tqdm>=4.67.1
|
|
40
51
|
Requires-Dist: typer>=0.19.2
|
41
52
|
Requires-Dist: tzdata ; sys_platform == 'win32'
|
42
53
|
Requires-Python: >=3.13
|
54
|
+
Project-URL: Changelog, https://github.com/daizutabi/kabukit/releases
|
43
55
|
Project-URL: Documentation, https://daizutabi.github.io/kabukit/
|
56
|
+
Project-URL: Homepage, https://daizutabi.github.io/kabukit/
|
44
57
|
Project-URL: Issues, https://github.com/daizutabi/kabukit/issues
|
45
58
|
Project-URL: Source, https://github.com/daizutabi/kabukit
|
46
59
|
Description-Content-Type: text/markdown
|
@@ -4,16 +4,38 @@ build-backend = "uv_build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "kabukit"
|
7
|
-
version = "0.7.
|
7
|
+
version = "0.7.3"
|
8
8
|
description = "A Python toolkit for Japanese financial market data, supporting J-Quants and EDINET APIs."
|
9
9
|
readme = "README.md"
|
10
10
|
license = { file = "LICENSE" }
|
11
|
+
keywords = [
|
12
|
+
"J-Quants",
|
13
|
+
"EDINET",
|
14
|
+
"financial data",
|
15
|
+
"stock market",
|
16
|
+
"investment",
|
17
|
+
"toolkit",
|
18
|
+
"finance",
|
19
|
+
"trading",
|
20
|
+
"data analysis",
|
21
|
+
"polars",
|
22
|
+
]
|
11
23
|
authors = [{ name = "daizutabi", email = "daizutabi@gmail.com" }]
|
12
24
|
classifiers = [
|
13
25
|
"Development Status :: 4 - Beta",
|
14
26
|
"Programming Language :: Python",
|
27
|
+
"Programming Language :: Python :: 3 :: Only",
|
15
28
|
"Programming Language :: Python :: 3.13",
|
16
29
|
"Programming Language :: Python :: 3.14",
|
30
|
+
"License :: OSI Approved :: MIT License",
|
31
|
+
"Operating System :: OS Independent",
|
32
|
+
"Intended Audience :: Developers",
|
33
|
+
"Intended Audience :: Financial and Insurance Industry",
|
34
|
+
"Intended Audience :: Science/Research",
|
35
|
+
"Topic :: Office/Business :: Financial",
|
36
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
37
|
+
"Topic :: Scientific/Engineering :: Information Analysis",
|
38
|
+
"Topic :: Utilities",
|
17
39
|
]
|
18
40
|
requires-python = ">=3.13"
|
19
41
|
dependencies = [
|
@@ -33,9 +55,11 @@ dependencies = [
|
|
33
55
|
kabu = "kabukit.cli.app:app"
|
34
56
|
|
35
57
|
[project.urls]
|
58
|
+
Changelog = "https://github.com/daizutabi/kabukit/releases"
|
36
59
|
Documentation = "https://daizutabi.github.io/kabukit/"
|
37
|
-
|
60
|
+
Homepage = "https://daizutabi.github.io/kabukit/"
|
38
61
|
Issues = "https://github.com/daizutabi/kabukit/issues"
|
62
|
+
Source = "https://github.com/daizutabi/kabukit"
|
39
63
|
|
40
64
|
[dependency-groups]
|
41
65
|
dev = [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|