# jiuyan **Repository Path**: exlimit/jiuyan ## Basic Information - **Project Name**: jiuyan - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-08-19 - **Last Updated**: 2026-08-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 韭研公社爬虫 抓取韭研公社关键板块,输出 Agent 可读 Markdown 资料库。 **Claude Code**:打开本仓库后直接说「获取并总结韭研最新资讯」。说明见 [CLAUDE.md](CLAUDE.md),初始化清单见 [docs/CLAUDE_CODE_INIT.md](docs/CLAUDE_CODE_INIT.md)。 ## 板块 | 板块 | 说明 | 鉴权 | |------|------|------| | home_study | 首页研选(跳过置顶) | 可选 | | sidebar_timeline | 时间轴新闻 | 需要 | | sidebar_hot_rank | 公社热榜 | 需要 | | action | 异动/涨停简图/一字板 | 需要 | | focus | 关注页 | 需要 | | plan_* | 交易计划热度 | 需要 | | broadcast | 广播消息 | 需要 | ## 快速开始 ```bash copy .env.example .env # 编辑 .env:填入 Cookie 中的 SESSION=...(token 会自动生成) pip install -r python/requirements.txt # token 自动生成依赖 Node + Puppeteer cd mint npm install cd .. python python/cli.py check-auth python python/cli.py fetch --batch manual --sections home_study python python/cli.py fetch --batch postmarket --sections all python scripts/summarize_batch.py --batch postmarket ``` ## 输出 ``` output/{date}/{batch}/ _index.md posts/*.md # 详情帖,文件名=原文标题 sidebar/timeline.md sidebar/hot_rank.md action/all_analysis.md action/oneword_analysis.md action/limit_up_chart.md plan/stock_heat.md plan/post_heat.md broadcast/summary.md ``` ## Vision 涨停简图 ```env VISION_ENABLED=1 VISION_API_KEY=sk-... ``` ```bash python python/cli.py enrich-images --dir output/2026-08-19/postmarket/action ``` ## Go 定时服务 ```bash go build -o bin/jiuyan-crawler.exe ./cmd/jiuyan-crawler bin/jiuyan-crawler.exe serve bin/jiuyan-crawler.exe fetch --batch premarket --sections all ``` 读取 [config/schedule.yaml](config/schedule.yaml): - 盘前 08:30 - 午盘 12:15 - 盘后 16:00 ## 单帖补抓 ```bash python python/cli.py fetch-url "https://www.jiuyangongshe.com/a/ARTICLE_ID" ```