Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #3518

Merged
merged 42 commits into from
Mar 3, 2023
Merged

Develop #3518

Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
38b1ed3
Merge branch 'develop'
albertandking Jan 16, 2023
1a41df2
Merge branch 'develop'
albertandking Jan 17, 2023
dbfc3d5
Merge branch 'develop'
albertandking Jan 23, 2023
e58bf60
Merge branch 'develop'
albertandking Jan 28, 2023
b5e1f6e
Merge branch 'develop'
albertandking Jan 28, 2023
35d810b
Merge branch 'main' of github.com:akfamily/akshare
albertandking Jan 28, 2023
e0a9d15
Merge branch 'develop'
albertandking Jan 28, 2023
bdab5cc
Merge branch 'develop'
albertandking Jan 29, 2023
c7793d2
Merge branch 'develop'
albertandking Jan 29, 2023
1dc1ad0
Merge branch 'develop'
albertandking Jan 29, 2023
70a5bb0
Merge branch 'develop'
albertandking Jan 30, 2023
7e6b5ad
Merge branch 'develop'
albertandking Jan 30, 2023
1e902a3
Merge branch 'develop'
albertandking Jan 30, 2023
5f4ec8f
Merge branch 'develop'
albertandking Jan 30, 2023
e28ef80
Merge branch 'develop'
albertandking Feb 2, 2023
53e7ba0
Merge branch 'develop'
albertandking Feb 6, 2023
8bc4e12
Merge branch 'develop'
albertandking Feb 6, 2023
1c467d1
Merge branch 'develop'
albertandking Feb 7, 2023
ad01e3f
Merge branch 'develop'
albertandking Feb 7, 2023
c03e94c
Merge branch 'develop'
albertandking Feb 9, 2023
7e97651
Merge branch 'develop'
albertandking Feb 10, 2023
fb01f62
Merge branch 'develop'
albertandking Feb 10, 2023
c957a9e
Merge branch 'develop'
albertandking Feb 13, 2023
0e8c797
Merge branch 'main' of github.com:akfamily/akshare
albertandking Feb 14, 2023
89f5e31
Merge branch 'develop'
albertandking Feb 15, 2023
dd4f6fc
Merge branch 'develop'
albertandking Feb 16, 2023
204375c
Merge branch 'develop'
albertandking Feb 16, 2023
ace8116
Merge branch 'develop'
albertandking Feb 17, 2023
bb804fa
Merge branch 'develop'
albertandking Feb 18, 2023
90be432
Merge branch 'develop'
albertandking Feb 19, 2023
fc23d28
Merge branch 'develop'
albertandking Feb 20, 2023
be4c12c
Merge branch 'develop'
albertandking Feb 20, 2023
50b9a04
Merge branch 'develop'
albertandking Feb 21, 2023
6d5a2d8
Merge branch 'develop'
albertandking Feb 22, 2023
dbc65af
Merge branch 'develop'
albertandking Feb 22, 2023
f866176
Merge branch 'develop'
albertandking Feb 23, 2023
93e7430
Merge branch 'develop'
albertandking Feb 24, 2023
7d9da97
Merge branch 'develop'
albertandking Feb 26, 2023
717e93c
Merge branch 'develop'
albertandking Feb 26, 2023
4a23ce0
Merge branch 'main' of github.com:akfamily/akshare
albertandking Mar 3, 2023
775584a
Merge branch 'main' of github.com:akfamily/akshare
albertandking Mar 3, 2023
9bd2db8
fix(stock_zh_index_csindex.py): fix index_value_name_funddb interface
albertandking Mar 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion akshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2276,9 +2276,10 @@
1.8.57 fix: fix stock_szse_summary interface
1.8.58 fix: fix get_calendar interface
1.8.59 fix: fix stock_zh_valuation_baidu interface
1.8.60 fix: fix hurun_rank interface
"""

__version__ = "1.8.59"
__version__ = "1.8.60"
__author__ = "AKFamily"

import sys
Expand Down
6 changes: 3 additions & 3 deletions akshare/fortune/fortune_hurun.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Date: 2022/10/30 21:30
Date: 2023/1/16 20:00
Desc: 胡润排行榜
https://www.hurun.net/
"""
Expand All @@ -26,11 +26,11 @@ def hurun_rank(indicator: str = "胡润百富榜", year: str = "2018") -> pd.Dat
r = requests.get(url)
soup = BeautifulSoup(r.text, "lxml")
url_list = []
for item in soup.find_all("div", attrs={"aria-labelledby": "dropdownMenuLink"}):
for item in soup.find_all("div", attrs={"aria-labelledby": "dropdownMenuLink1"}):
for inner_item in item.find_all("a"):
url_list.append("https://www.hurun.net" + inner_item["href"])
name_list = []
for item in soup.find_all("div", attrs={"aria-labelledby": "dropdownMenuLink"}):
for item in soup.find_all("div", attrs={"aria-labelledby": "dropdownMenuLink1"}):
for inner_item in item.find_all("a"):
name_list.append(inner_item.text)

Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@

## 更新说明

1.8.60 fix: fix hurun_rank interface

1. 修复 hurun_rank 接口

1.8.59 fix: fix stock_zh_valuation_baidu interface

1. 修复 stock_zh_valuation_baidu 接口
Expand Down Expand Up @@ -1783,6 +1787,8 @@

## 版本更新说明

1.8.60 fix: fix hurun_rank interface

1.8.59 fix: fix stock_zh_valuation_baidu interface

1.8.58 fix: fix get_calendar interface
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
**风险提示:[AKShare](https://github.com/akfamily/akshare) 开源财经数据接口库所采集的数据皆来自公开的数据源,不涉及任何个人隐私数据和非公开数据。
同时本项目提供的数据接口及相关数据仅用于学术研究,任何个人、机构及团体使用本项目的数据接口及相关数据请注意商业风险。**

1. 本文档更新时间:**2023-01-14**;
1. 本文档更新时间:**2023-01-16**;
2. 如有 [AKShare](https://github.com/akfamily/akshare) 库、文档及数据的相关问题,请在 [AKShare Issues](https://github.com/akfamily/akshare/issues) 中提 Issues;
3. 欢迎关注 **数据科学实战** 微信公众号:<div><img src="https://jfds-1252952517.cos.ap-chengdu.myqcloud.com/akshare/readme/qrcode/ds.png"></div>;
4. 如果您的问题未能在文档中找到答案,您也可以加入 **AKShare-VIP QQ 群**: 为了提高问答质量,此群为收费群(一杯咖啡钱即可入群,赠送[《AKShare-初阶-使用教学》](https://zmj.xet.tech/s/wck86)视频课),可以添加 **AKShare-小助手** QQ:1254836886,由小助手邀请入群! ![](https://jfds-1252952517.cos.ap-chengdu.myqcloud.com/akshare/readme/qrcode/qr_code_1254836886.jpg)
Expand Down