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>
63 lines
1.6 KiB
Markdown
63 lines
1.6 KiB
Markdown
## 通达信板块成分
|
||
----
|
||
|
||
接口:tdx_member
|
||
描述:获取通达信各板块成分股信息
|
||
限量:单次最大3000条数据,可以根据日期和板块代码循环提取
|
||
权限:用户积累6000积分可调取,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | 板块代码:xxxxxx.TDX
|
||
trade_date | str | N | 交易日期:格式YYYYMMDD
|
||
|
||
<br>
|
||
<br>
|
||
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | 板块代码
|
||
trade_date | str | Y | 交易日期
|
||
con_code | str | Y | 成分股票代码
|
||
con_name | str | Y | 成分股票名称
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**接口示例**
|
||
|
||
```python
|
||
|
||
#获取通达信板块2025年5月13日的航运概念板块成分股
|
||
df = pro.tdx_member(trade_date='20250513', ts_code='880728.TDX')
|
||
|
||
|
||
```
|
||
|
||
|
||
<br>
|
||
<br>
|
||
|
||
**数据示例**
|
||
|
||
ts_code trade_date con_code con_name
|
||
0 880728.TDX 20250513 000039.SZ 中集集团
|
||
1 880728.TDX 20250513 000088.SZ 盐 田 港
|
||
2 880728.TDX 20250513 000507.SZ 珠海港
|
||
3 880728.TDX 20250513 000520.SZ 凤凰航运
|
||
4 880728.TDX 20250513 000582.SZ 北部湾港
|
||
.. ... ... ... ...
|
||
59 880728.TDX 20250513 603869.SH ST智知
|
||
60 880728.TDX 20250513 603967.SH 中创物流
|
||
61 880728.TDX 20250513 605090.SH 九丰能源
|
||
62 880728.TDX 20250513 833171.BJ 国航远洋
|
||
63 880728.TDX 20250513 872351.BJ 华光源海 |