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

71 lines
1.8 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.

## 分红送股
----
接口dividend
描述:分红送股数据
权限用户需要至少2000积分才可以调取具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | N | TS代码
ann_date | str | N | 公告日
record_date | str | N | 股权登记日期
ex_date | str | N | 除权除息日
imp_ann_date | str | N | 实施公告日
<br>
以上参数至少有一个不能为空
<br>
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ts_code | str | Y | TS代码
end_date | str | Y | 分红年度
ann_date | str | Y | 预案公告日
div_proc | str | Y | 实施进度
stk_div | float | Y | 每股送转
stk_bo_rate | float | Y | 每股送股比例
stk_co_rate | float | Y | 每股转增比例
cash_div | float | Y | 每股分红(税后)
cash_div_tax | float | Y | 每股分红(税前)
record_date | str | Y | 股权登记日
ex_date | str | Y | 除权除息日
pay_date | str | Y | 派息日
div_listdate | str | Y | 红股上市日
imp_ann_date | str | Y | 实施公告日
base_date | str | N | 基准日
base_share | float | N | 基准股本(万)
**接口示例**
```python
pro = ts.pro_api()
df = pro.dividend(ts_code='600848.SH', fields='ts_code,div_proc,stk_div,record_date,ex_date')
```
**数据样例**
```python
ts_code div_proc stk_div record_date ex_date
0 600848.SH 实施 0.10 19950606 19950607
1 600848.SH 实施 0.10 19970707 19970708
2 600848.SH 实施 0.15 19960701 19960702
3 600848.SH 实施 0.10 19980706 19980707
4 600848.SH 预案 0.00 None None
5 600848.SH 实施 0.00 20180522 20180523
```