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>
80 lines
2.8 KiB
Markdown
80 lines
2.8 KiB
Markdown
## 同花顺热榜
|
||
----
|
||
|
||
接口:ths_hot
|
||
描述:获取同花顺App热榜数据,包括热股、概念板块、ETF、可转债、港美股等等,每日盘中提取4次,收盘后4次,最晚22点提取一次。
|
||
限量:单次最大2000条,可根据日期等参数循环获取全部数据
|
||
积分:用户积5000积分可调取使用,积分获取办法请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
<br><br>
|
||
注意:本接口只限个人学习和研究使用,如需商业用途,请自行联系同花顺解决数据采购问题。
|
||
<br>
|
||
<br>
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
trade_date | str | N | 交易日期
|
||
ts_code | str | N | TS代码
|
||
market | str | N | 热榜类型(热股、ETF、可转债、行业板块、概念板块、期货、港股、热基、美股)
|
||
is_new | str | N | 是否最新(默认Y,如果为N则为盘中和盘后阶段采集,具体时间可参考rank_time字段,状态N每小时更新一次,状态Y更新时间为22:30)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
trade_date | str | Y | 交易日期
|
||
data_type | str | Y | 数据类型
|
||
ts_code | str | Y | 股票代码
|
||
ts_name | str | Y | 股票名称
|
||
rank | int | Y | 排行
|
||
pct_change | float | Y | 涨跌幅%
|
||
current_price | float | Y | 当前价格
|
||
concept | str | Y | 标签
|
||
rank_reason | str | Y | 上榜解读
|
||
hot | float | Y | 热度值
|
||
rank_time | str | Y | 排行榜获取时间
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
#获取查询月份券商金股
|
||
df = pro.ths_hot(trade_date='20240315', market='热股', fields='ts_code,ts_name,hot,concept')
|
||
|
||
```
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
ts_code ts_name hot concept
|
||
0 300750.SZ 宁德时代 214462.0 ["钠离子电池", "同花顺漂亮100"]
|
||
1 603580.SH 艾艾精工 185431.0 ["人民币贬值受益", "台湾概念股"]
|
||
2 002085.SZ 万丰奥威 180332.0 ["飞行汽车(eVTOL)", "低空经济"]
|
||
3 600733.SH 北汽蓝谷 156000.0 ["一体化压铸", "华为汽车"]
|
||
4 603259.SH 药明康德 154360.0 ["CRO概念", "创新药"]
|
||
.. ... ... ... ...
|
||
95 300735.SZ 光弘科技 28528.0 ["智能穿戴", "EDR概念"]
|
||
96 002632.SZ 道明光学 28101.0 ["AI手机", "消费电子概念"]
|
||
97 601086.SH 国芳集团 28006.0 ["新零售", "网络直播"]
|
||
98 002406.SZ 远东传动 28003.0 ["工业互联网", "智能制造"]
|
||
99 600160.SH 巨化股份 27979.0 ["PVDF概念", "氟化工概念"]
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据来源**
|
||
|
||
<img src='https://tushare.pro/files/web/ths1.jpg' width="250" height="500">
|
||
|
||
<img src='https://tushare.pro/files/web/ths2.png' width="250" height="500">
|
||
|
||
<img src='https://tushare.pro/files/web/ths3.png' width="250" height="500"> |