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>
66 lines
1.8 KiB
Markdown
66 lines
1.8 KiB
Markdown
## 东方财富板块成分
|
||
----
|
||
|
||
接口:dc_member
|
||
描述:获取东方财富板块每日成分数据,可以根据概念板块代码和交易日期,获取历史成分
|
||
限量:单次最大获取5000条数据,可以通过日期和代码循环获取
|
||
权限:用户积累6000积分可调取,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
<br><br>
|
||
注意:本接口只限个人学习和研究使用,如需商业用途,请自行联系东方财富解决数据采购问题。
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | 板块指数代码
|
||
con_code | str | N | 成分股票代码
|
||
trade_date | str | N | 交易日期(YYYYMMDD格式)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
trade_date | str | Y | 交易日期
|
||
ts_code | str | Y | 概念代码
|
||
con_code | str | Y | 成分代码
|
||
name | str | Y | 成分股名称
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
#获取东方财富2025年1月2日的人形机器人概念板块成分列表
|
||
df = pro.dc_member(trade_date='20250102', ts_code='BK1184.DC')
|
||
|
||
|
||
```
|
||
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
trade_date ts_code con_code name
|
||
0 20250102 BK1184.DC 002117.SZ 东港股份
|
||
1 20250102 BK1184.DC 603662.SH 柯力传感
|
||
2 20250102 BK1184.DC 688165.SH 埃夫特-U
|
||
3 20250102 BK1184.DC 300660.SZ 江苏雷利
|
||
4 20250102 BK1184.DC 873593.BJ 鼎智科技
|
||
.. ... ... ... ...
|
||
59 20250102 BK1184.DC 002139.SZ 拓邦股份
|
||
60 20250102 BK1184.DC 301236.SZ 软通动力
|
||
61 20250102 BK1184.DC 601727.SH 上海电气
|
||
62 20250102 BK1184.DC 300432.SZ 富临精工
|
||
63 20250102 BK1184.DC 300843.SZ 胜蓝股份
|