Install
openclaw skills install cninfo-report-downloaderBatch-download formal A-share annual and semiannual report PDFs from CNInfo (巨潮资讯) using a stock-code CSV. Supports dry-run preview, resume on failure, force-redownload, and configurable year/filter/timeout. Use when the user needs to fetch, re-fetch, or inspect CNInfo report PDFs for A-share listed companies.
openclaw skills install cninfo-report-downloader批量下载A股上市公司年报/半年报 PDF(数据源:巨潮资讯 cninfo.com.cn)。
pip install -r requirements.txt
--dry-run first to preview matches without downloading.runtime/manifest_<year>.csv and runtime/logs/cninfo_<year>.log after the run.Normal download (default year 2025):
python scripts/run_cninfo_reports.py --stock-csv <path-to-csv>
Dry-run (preview only, no download):
python scripts/run_cninfo_reports.py --stock-csv <path-to-csv> --dry-run
Specify year:
python scripts/run_cninfo_reports.py --stock-csv <path-to-csv> --year 2024
Force redownload (ignore cache):
python scripts/run_cninfo_reports.py --stock-csv <path-to-csv> --force-redownload
Full CLI options:
| Argument | Default | Description |
|---|---|---|
--year | 2025 | Target report year |
--stock-csv | 上市公司基础信息.csv | CSV with stock codes in column 1 |
--output-dir | downloads/<year> | PDF output directory |
--runtime-dir | runtime | State, manifest, logs directory |
--page-size | 20 | Search results per page |
--sleep-seconds | 1.2 | Min delay between requests |
--timeout-seconds | 30 | HTTP timeout |
--max-retries | 5 | HTTP retry attempts |
--dry-run | false | Preview matches without downloading |
--force-redownload | false | Re-download even if file exists |
runtime/manifest_<year>.csv with full metadata for every eligible report.{code}_{year}_{kind}.pdf for primary files, extra variants get _{announcement_id} suffix.scripts/
run_cninfo_reports.py # Entry point
cninfo_annual_reports/
cli.py # Argument parsing & logging
config.py # AppConfig dataclass
service.py # Core orchestration logic
repository.py # SQLite state management
http_client.py # CNInfo API & file download
models.py # Data models
filters.py # Title evaluation & regex
references/
filter_rules.md # Detailed filter/reset docs
agents/
openai.yaml # Codex integration config
To restart from scratch, delete state files:
rm runtime/state.db runtime/state.db-wal runtime/state.db-shm