Skip to content

Commit

Permalink
Merge pull request #151 from akfamily/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
albertandking committed Jan 12, 2024
2 parents f8d0d93 + 1f797a1 commit ab1b33d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ AKTools is a package of HTTP API for AKShare! It depends on AKShare, FastAPI and

[AKTools](https://github.com/akfamily/aktools) 是一款用于快速搭建 [AKShare](https://github.com/akfamily/akshare) HTTP API 的工具,通过 [AKTools](https://github.com/akfamily/aktools)
可以利用一行命令来启动 HTTP 服务,从而让原本专属服务于 Python 用户的开源财经数据接口库 [AKShare](https://github.com/akfamily/akshare) 的使用
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Ruby、PHP、JavaScript、R、Matlab、Stata 等编程语言或软件都可以快速、轻松获取财经数据,助力您更好地展开研究和开发工作。
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Rust、Ruby、PHP、JavaScript、R、Matlab、Stata 等编程语言或软件都可以快速、轻松获取财经数据,助力您更好地展开研究和开发工作。

**[AKTools 中文文档](https://aktools.readthedocs.io/)**

Expand Down
3 changes: 2 additions & 1 deletion aktools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@
0.0.82: fix: fix connection.py
0.0.83: fix: fix Dockerfile
0.0.84: fix: fix homepage url
0.0.85: fix: update python version
"""

__title__ = "AKTools"
__version__ = "0.0.84"
__version__ = "0.0.85"
__author__ = "AKFamily"
2 changes: 1 addition & 1 deletion docs/aktools.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[AKTools](https://github.com/akfamily/aktools) 是一款用于快速搭建基于 AKShare 开源财经数据接口库的 HTTP API 的工具,通过 [AKTools](https://github.com/akfamily/aktools)
可以用一行命令来启动 HTTP 服务,从而让原本专属服务于 Python 用户的开源财经数据接口库 [AKShare](https://github.com/akfamily/akshare) 的使用
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Ruby、PHP、Rust、R、JavaScript 等编程语言都可以快速、轻松获取财经数据,助力您更好地展开数据科学工作。
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Rust、Ruby、PHP、Rust、R、JavaScript 等编程语言都可以快速、轻松获取财经数据,助力您更好地展开数据科学工作。

**[AKTools 中文文档](https://aktools.readthedocs.io/)**

Expand Down
2 changes: 2 additions & 0 deletions docs/aktools_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

## 开发进度

0.0.85: fix: update python version

0.0.84: fix: fix homepage url

0.0.83: fix: fix Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ AKTools is a package of HTTP API for AKShare! It depends on AKShare, FastAPI and

[AKTools](https://github.com/akfamily/aktools) 是一款用于快速搭建 [AKShare](https://github.com/akfamily/akshare) HTTP API 的工具,通过 [AKTools](https://github.com/akfamily/aktools)
可以利用一行命令来启动 HTTP 服务,从而让原本专属服务于 Python 用户的开源财经数据接口库 [AKShare](https://github.com/akfamily/akshare) 的使用
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Ruby、PHP、JavaScript、R、Matlab、Stata 等编程语言或软件都可以快速、轻松获取财经数据,助力您更好地展开研究和开发工作。
突破编程语言的限制。无论您使用的是 C/C++、Java、Go、Rust、Ruby、PHP、JavaScript、R、Matlab、Stata 等编程语言或软件都可以快速、轻松获取财经数据,助力您更好地展开研究和开发工作。

**[AKTools 中文文档](https://aktools.readthedocs.io)**

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding:utf-8 -*-
# /usr/bin/env python
"""
Date: 2022/9/28 17:20
Date: 2024/1/13 23:20
Desc: AKTools 的 PYPI 基本信息文件
"""
import re
Expand Down Expand Up @@ -31,7 +31,7 @@ def get_version_string() -> str:
name="aktools",
version=get_version_string(),
author="AKFamily",
author_email="akfamily.aktools@gmail.com",
author_email="albertandking@gmail.com",
license="MIT",
description="AKTools is a tool for AKShare HTTP API!",
long_description=long_description,
Expand Down Expand Up @@ -64,13 +64,13 @@ def get_version_string() -> str:
"algotrading",
],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
python_requires=">=3.8",
)

0 comments on commit ab1b33d

Please sign in to comment.