Skip to content

Commit

Permalink
Merge pull request #41 from 1nchaos/dev
Browse files Browse the repository at this point in the history
v1.1.0
  • Loading branch information
1nchaos committed Oct 18, 2023
2 parents b37d65b + 5241ff2 commit 11e73c2
Show file tree
Hide file tree
Showing 15 changed files with 10,855 additions and 39 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ master

专注股票量化数据,为Ai(爱)发电,向阳而生。

1.1.0 (2023-10-18)
------------------
1. 更新:股票代码列表增加 list_date:股票上市日期字段
2. 修复部分已知bug。

1.0.1 (2023-10-10)
------------------
1. 兼容python3.6:支持qmt python3.6版本导入
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
</a>
</p>

![GitHub language count](https://img.shields.io/github/languages/count/1nchaos/adata)![GitHub top language](https://img.shields.io/github/languages/top/1nchaos/adata)[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/adata?color=d)](https://pypi.org/project/adata/)[![Licence](https://img.shields.io/hexpm/l/apa?color=d)](https://gitee.com/inchaos/adata/blob/main/LICENSE)[![Downloads](https://static.pepy.tech/badge/adata/week)](https://pepy.tech/project/adata)![GitHub Repo stars](https://img.shields.io/github/stars/1nchaos/adata)![GitHub issues](https://img.shields.io/github/issues/1nchaos/adata)![GitHub contributors](https://img.shields.io/github/contributors/1nchaos/adata)![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/1nchaos/adata)[![Downloads](https://static.pepy.tech/badge/adata)](https://pepy.tech/project/adata)
![GitHub language count](https://img.shields.io/github/languages/count/1nchaos/adata)![GitHub top language](https://img.shields.io/github/languages/top/1nchaos/adata)[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/adata?color=d)](https://pypi.org/project/adata/)[![Licence](https://img.shields.io/hexpm/l/apa?color=d)](https://gitee.com/inchaos/adata/blob/main/LICENSE)[![Downloads](https://static.pepy.tech/badge/adata/week)](https://pepy.tech/project/adata)![GitHub Repo stars](https://img.shields.io/github/stars/1nchaos/adata)![GitHub issues](https://img.shields.io/github/issues/1nchaos/adata)![GitHub contributors](https://img.shields.io/github/contributors/1nchaos/adata)![GitHub (Pre-)Release Date](https://img.shields.io/github/release-date-pre/1nchaos/adata)[![Downloads](https://static.pepy.tech/badge/adata)](https://pepy.tech/project/adata)![PyPI - Version](https://img.shields.io/pypi/v/adata)



## 0、[介绍](https://adata.1nchaos.com/idea.html)
Expand Down
2 changes: 1 addition & 1 deletion adata/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-

VERSION = (1, 0, 1)
VERSION = (1, 1, 0)
PRERELEASE = None # alpha, beta or rc
REVISION = None

Expand Down
6 changes: 6 additions & 0 deletions adata/stock/cache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
@time: 2023/6/2
@log: change log
"""
import os


def get_code_csv_path():
cur_path = os.path.normpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
return fr"{cur_path}/code.csv"
Loading

0 comments on commit 11e73c2

Please sign in to comment.