skills/tushare-data-1.0.5/references/数据接口/股票数据/打板专题数据/同花顺行业概念成分.md
wangyitong a65adcc2e5 Initial commit: merged, deduplicated, and vetted skill collection
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>
2026-07-13 14:47:12 +08:00

68 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 同花顺概念板块成分
----
接口ths_member
描述:获取同花顺概念板块成分列表注:数据版权归属同花顺,如做商业用途,请主动联系同花顺。
限量用户积累6000积分可调取每分钟可调取200次可按概念板块代码循环提取所有成分
<br>
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | N | 板块指数代码
con_code | str | N | 股票代码
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ts_code | str | Y | 指数代码
con_code | str | Y | 股票代码
con_name | str | Y | 股票名称
weight | float | N | 权重(暂无)
in_date | str | N | 纳入日期(暂无)
out_date | str | N | 剔除日期(暂无)
is_new | str | N | 是否最新Y是N否
<br>
<br>
**接口示例**
```python
pro = ts.pro_api()
df = pro.ths_member(ts_code='885800.TI')
```
<br>
<br>
**数据样例**
ts_code con_code con_name
0 885800.TI 000016.SZ 深康佳A
1 885800.TI 000049.SZ 德赛电池
2 885800.TI 002008.SZ 大族激光
3 885800.TI 002036.SZ 联创电子
4 885800.TI 002055.SZ 得润电子
.. ... ... ...
87 885800.TI 688127.SH 蓝特光学
88 885800.TI 688157.SH 松井股份
89 885800.TI 688286.SH 敏芯股份
90 885800.TI 688312.SH 燕麦科技
91 885800.TI 688386.SH 泛亚微透
[92 rows x 3 columns]