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>
70 lines
2.0 KiB
Markdown
70 lines
2.0 KiB
Markdown
## 开盘啦题材成分
|
||
----
|
||
|
||
接口:kpl_concept_cons
|
||
描述:获取开盘啦概念题材的成分股
|
||
限量:单次最大3000条,可根据代码和日期循环获取全部数据
|
||
积分:5000积分可提取数据,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
注:开盘啦是一个优秀的专业打板app,有兴趣的用户可以自行下载安装。本接口仅限用于量化研究,如需商业用途,请自行联系开盘APP官方。此接口因源站改版暂无新增数据
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
trade_date | str | N | 交易日期(YYYYMMDD格式)
|
||
ts_code | str | N | 题材代码(xxxxxx.KP格式)
|
||
con_code | str | N | 成分代码(xxxxxx.SH格式)
|
||
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | 题材ID
|
||
name | str | Y | 题材名称
|
||
con_name | str | Y | 股票名称
|
||
con_code | str | Y | 股票代码
|
||
trade_date | str | Y | 交易日期
|
||
desc | str | Y | 描述
|
||
hot_num | None | Y | 人气值
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口用法**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.kpl_concept_cons(trade_date='20241014')
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**数据样例**
|
||
|
||
ts_code name ts_name con_code trade_date
|
||
0 000111.KP 化债概念 信达地产 600657.SH 20241014
|
||
1 000111.KP 化债概念 银宝山新 002786.SZ 20241014
|
||
2 000111.KP 化债概念 摩恩电气 002451.SZ 20241014
|
||
3 000111.KP 化债概念 光大嘉宝 600622.SH 20241014
|
||
4 000111.KP 化债概念 海德股份 000567.SZ 20241014
|
||
... ... ... ... ... ...
|
||
2995 000229.KP 电力 特变电工 600089.SH 20241014
|
||
2996 000229.KP 电力 中国西电 601179.SH 20241014
|
||
2997 000229.KP 电力 金盘科技 688676.SH 20241014
|
||
2998 000229.KP 电力 思源电气 002028.SZ 20241014
|
||
2999 000229.KP 电力 明阳电气 301291.SZ 20241014
|
||
|