Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:
- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
- docx family: kept docx (official, full toolchain) + docx-cn
(GB/T 9704 Chinese official-document constants),
dropped docx_writer (no scripts, name collided with docx)
- humanizer family: kept humanizer-zh (6 zh reference docs),
dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
live credentials
Result: 25 skills, 572 files, ~7.5 MB.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
69 lines
1.7 KiB
Markdown
69 lines
1.7 KiB
Markdown
## 股东人数
|
||
----
|
||
|
||
接口:stk_holdernumber
|
||
描述:获取上市公司股东户数数据,数据不定期公布
|
||
限量:单次最大3000,总量不限制
|
||
积分:600积分可调取,基础积分每分钟调取100次,5000积分以上频次相对较高。具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | TS股票代码
|
||
ann_date | str | N | 公告日期
|
||
enddate | str | N | 截止日期
|
||
start_date | str | N | 公告开始日期
|
||
end_date | str | N | 公告结束日期
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | TS股票代码
|
||
ann_date | str | Y | 公告日期
|
||
end_date | str | Y | 截止日期
|
||
holder_num | int | Y | 股东户数
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
|
||
**接口使用**
|
||
|
||
```pyhton
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.stk_holdernumber(ts_code='300199.SZ', start_date='20160101', end_date='20181231')
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**数据示例**
|
||
|
||
ts_code ann_date end_date holder_num
|
||
0 300199.SZ 20181025 20180930 25135
|
||
1 300199.SZ 20180808 20180630 25785
|
||
2 300199.SZ 20180426 20180331 23384
|
||
3 300199.SZ 20180316 20180228 23490
|
||
4 300199.SZ 20180316 20171231 24086
|
||
5 300199.SZ 20171026 20170930 24121
|
||
6 300199.SZ 20170817 20170630 26271
|
||
7 300199.SZ 20170427 20170331 24531
|
||
8 300199.SZ 20170427 20161231 22972
|
||
9 300199.SZ 20161028 20161027 19787
|
||
10 300199.SZ 20161027 20160930 19787
|
||
11 300199.SZ 20160804 20160630 20050
|
||
12 300199.SZ 20160428 20160331 23367
|