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

63 lines
2.5 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.

## 上市公司全量公告
----
接口anns_d
描述获取全量公告数据提供pdf下载URL
限量单次最大2000条数可以跟进日期循环获取全量
权限:本接口为单独权限,请参考[权限说明](https://tushare.pro/document/1?doc_id=290)
<br>
**输入参数**
名称 | 类型 | 必选 | 描述
---- | ----- | ---- | ----
ts_code | str | N | 股票代码
ann_date | str | N | 公告日期yyyymmdd格式下同
start_date | str | N | 公告开始日期
end_date | str | N | 公告结束日期
<br>
**输出参数**
名称 | 类型 | 默认显示 | 描述
--- | ---- | ---- | ----
ann_date | str | Y | 公告日期
ts_code | str | Y | 股票代码
name | str | Y | 股票名称
title | str | Y | 标题
url | str | Y | URL原文下载链接
rec_time | datetime | N | 发布时间
<br>
**接口调用**
```python
pro = ts.pro_api()
df = pro.anns_d(ann_date='20230621')
```
<br>
**数据样例**
ann_date ts_code name title
0 20230621 600590.SH 泰豪科技 第八届董事会第十五次会议决议公告
1 20230621 300504.SZ 天邑股份 天邑股份:关于回购注销部分限制性股票的公告
2 20230621 002815.SZ 崇达技术 崇达技术中信建投证券股份有限公司关于崇达技术股份有限公司2022年限制性股票激励计划首次授...
3 20230621 600212.SH 绿能慧充 绿能慧充2022年年度股东大会会议资料
4 20230621 002508.SZ 老板电器 老板电器:关于向激励对象授予股票期权的公告
... ... ... ... ...
1995 20230620 600152.SH 维科技术 维科技术关于向2022年股票期权激励计划激励对象授予预留部分股票期权第二批次的公告
1996 20230620 301290.SZ 东星医疗 东星医疗:关于对深圳证券交易所关注函的回复公告
1997 20230620 600998.SH 九州通 九州通关于控股股东2022年非公开发行可交换公司债券第二、三期进入换股期的提示性公告
1998 20230620 300371.SZ 汇中股份 汇中股份:关于子公司完成工商变更的公告
1999 20230620 300061.SZ 旗天科技 旗天科技:关于为子公司提供担保的公告
[2000 rows x 4 columns]