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>
65 lines
2.4 KiB
Markdown
65 lines
2.4 KiB
Markdown
## 前十大股东
|
||
----
|
||
|
||
接口:top10_holders
|
||
描述:获取上市公司前十大股东数据,包括持有数量和比例等信息
|
||
积分:需2000积分以上才可以调取本接口,5000积分以上频次会更高
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | Y | TS代码
|
||
period | str | N | 报告期(YYYYMMDD格式,一般为每个季度最后一天)
|
||
ann_date | str | N | 公告日期
|
||
start_date | str | N | 报告期开始日期
|
||
end_date | str | N | 报告期结束日期
|
||
|
||
|
||
**输出参数**
|
||
|
||
|
||
名称 | 类型 | 描述
|
||
--- | ---- | ----
|
||
ts_code | str | TS股票代码
|
||
ann_date | str | 公告日期
|
||
end_date | str | 报告期
|
||
holder_name | str | 股东名称
|
||
hold_amount | float | 持有数量(股)
|
||
hold_ratio | float | 占总股本比例(%)
|
||
hold_float_ratio | float | 占流通股本比例(%)
|
||
hold_change | float | 持股变动
|
||
holder_type | str | 股东类型
|
||
|
||
**接口用法**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.top10_holders(ts_code='600000.SH', start_date='20170101', end_date='20171231')
|
||
|
||
```
|
||
|
||
或者
|
||
|
||
```python
|
||
|
||
df = pro.query('top10_holders', ts_code='600000.SH', start_date='20170101', end_date='20171231')
|
||
|
||
```
|
||
|
||
|
||
**数据样例**
|
||
|
||
ts_code ann_date end_date holder_name hold_amount hold_ratio
|
||
0 600000.SH 20180428 20171231 富德生命人寿保险股份有限公司-传统 2.779437e+09 9.47
|
||
1 600000.SH 20180428 20171231 上海国鑫投资发展有限公司 9.455690e+08 3.22
|
||
2 600000.SH 20180428 20171231 富德生命人寿保险股份有限公司-万能H 1.270429e+09 4.33
|
||
3 600000.SH 20180428 20171231 富德生命人寿保险股份有限公司-资本金 1.763232e+09 6.01
|
||
4 600000.SH 20180428 20171231 上海国际集团有限公司 6.331323e+09 21.57
|
||
5 600000.SH 20180428 20171231 中国移动通信集团广东有限公司 5.334893e+09 18.18
|
||
6 600000.SH 20180428 20171231 中国证券金融股份有限公司 1.216979e+09 4.15
|
||
7 600000.SH 20180428 20171231 梧桐树投资平台有限责任公司 8.861313e+08 3.02
|
||
8 600000.SH 20180428 20171231 中央汇金资产管理有限责任公司 3.985214e+08 1.36
|
||
9 600000.SH 20180428 20171231 上海上国投资产管理有限公司 1.395571e+09 4.75 |