Skip to content

Commit

Permalink
version0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
refraction-ray committed Mar 25, 2020
1 parent f837590 commit 72f6a77
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
## Unreleased

## v0.6.1 - 2020.03.25
### added
* ``get_daily`` 增加聚宽数据源的场内基金每日份额数据
* ``get_daily`` 增加标普官网数据源的各种小众标普指数历史数据

## v0.6.0 - 2020.03.24
### added
* 增加了持久化的透明缓存装饰器,用于保存平时的数据 `cachedio`,同时支持 csv,数据库或内存缓存。
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="xalpha",
version="0.6.0",
version="0.6.1",
author="refraction-ray",
author_email="refraction-ray@protonmail.com",
description="all about fund investment",
Expand All @@ -17,11 +17,12 @@
install_requires=[
"lxml",
"pandas",
"xlrd >= 1.0.0", # read excel support
"numpy",
"scipy",
"matplotlib",
"requests",
"pyecharts>=1.1.0",
"pyecharts>=1.1.0", # broken api between 0.x and 1.x
"beautifulsoup4",
"sqlalchemy",
],
Expand Down
2 changes: 1 addition & 1 deletion xalpha/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.6.0"
__version__ = "0.6.1"
__author__ = "refraction-ray"
__name__ = "xalpha"

Expand Down
1 change: 1 addition & 0 deletions xalpha/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
def set_proxy(proxy):
"""
设置代理,部分数据源可能国内网络环境不稳定。比如标普指数官网。
还有一些数据源很快就会封 IP,需要设置代理,比如人民币中间价官网,建议直接把中间价数据缓存到本地,防止反复爬取。
:param proxy: str. format as "http://user:passwd@host:port" user passwd part can be omitted if not set.
:return:
Expand Down

0 comments on commit 72f6a77

Please sign in to comment.