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>
61 lines
2.3 KiB
Markdown
61 lines
2.3 KiB
Markdown
## 财报披露计划
|
||
----
|
||
|
||
接口:disclosure_date
|
||
描述:获取财报披露计划日期
|
||
限量:单次最大3000,总量不限制
|
||
积分:用户需要至少500积分才可以调取,积分越多权限越大,具体请参阅[积分获取办法](https://tushare.pro/document/1?doc_id=13)
|
||
|
||
|
||
**输入参数**
|
||
|
||
名称 | 类型 | 必选 | 描述
|
||
---- | ----- | ---- | ----
|
||
ts_code | str | N | TS股票代码
|
||
end_date | str | N | 财报周期(每个季度最后一天的日期,比如20181231表示2018年年报,20180630表示中报)
|
||
pre_date | str | N | 计划披露日期
|
||
ann_date | str | N |最新披露公告日
|
||
actual_date | str | N | 实际披露日期
|
||
|
||
|
||
**输出参数**
|
||
|
||
名称 | 类型 | 默认显示 | 描述
|
||
--- | ---- | ---- | ----
|
||
ts_code | str | Y | TS代码
|
||
ann_date | str | Y | 最新披露公告日
|
||
end_date | str | Y | 报告期
|
||
pre_date | str | Y | 预计披露日期
|
||
actual_date | str | Y | 实际披露日期
|
||
modify_date | str | N | 披露日期修正记录
|
||
|
||
|
||
**接口使用**
|
||
|
||
```python
|
||
|
||
pro = ts.pro_api()
|
||
|
||
df = pro.disclosure_date(end_date='20181231')
|
||
|
||
```
|
||
|
||
**数据示例**
|
||
|
||
ts_code ann_date end_date pre_date actual_date modify_date
|
||
0 300619.SZ 20181228 20181231 20190122 20190122 None
|
||
1 300125.SZ 20181228 20181231 20190129 20190129 None
|
||
2 601619.SH 20181227 20181231 20190129 20190129 None
|
||
3 000055.SZ 20181228 20181231 20190130 20190130 None
|
||
4 002910.SZ 20181228 20181231 20190131 None None
|
||
5 002188.SZ 20181228 20181231 20190131 None None
|
||
6 600738.SH 20190124 20181231 20190131 None None
|
||
7 002107.SZ 20181228 20181231 20190201 None None
|
||
8 300748.SZ 20181228 20181231 20190201 None None
|
||
9 002675.SZ 20181228 20181231 20190201 None None
|
||
10 002167.SZ 20181228 20181231 20190201 None None
|
||
11 002211.SZ 20190125 20181231 20190201 None None
|
||
12 002240.SZ 20181228 20181231 20190201 None None
|
||
13 002245.SZ 20181228 20181231 20190201 None None
|
||
14 002552.SZ 20181228 20181231 20190201 None None
|
||
15 002825.SZ 20181228 20181231 20190201 None None |