Taoguba crawler skill
淘股吧帖子爬取skill,给 AI agent(AI智能体)使用。
npx -y skills add lisniuse/taoguba-crawler-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 14 stars14 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
This skill should be used when the user asks to "crawl taoguba", "crawl tgb", "scrape taoguba articles", "run the crawler", "crawl bbs", "crawl home page", "generate article HTML", or needs to run the Taoguba (tgb.cn) web crawlers.
SKILL.md
2.4 KB, as published. Nobody here has run it
Taoguba Crawler
This skill runs the Taoguba (tgb.cn) article crawlers located in the project root.
Prerequisites
- Python 3 with
requests,beautifulsoup4,python-dotenvinstalled - A
.envfile in the project root containingCOOKIEand optionallyUSER_AGENT
Available Crawlers
1. BBS Crawler (crawler_bbs.py)
Crawl the forum board at tgb.cn/bbs/1/1 using HTML scraping.
python crawler_bbs.py
- Extracts article list by parsing
a.overhide.mw300elements - Gets each article's main post and author replies
- Downloads images and embeds them as base64 in HTML
- Outputs:
output/bbs_YYYY-MM-DD.jsonandoutput/bbs_YYYY-MM-DD_HHMMSS.html
2. Home Crawler (crawler_home.py)
Crawl the homepage recommendations via JSON API (/newIndex/getZh).
python crawler_home.py
- Fetches articles from the JSON API (default 2 pages)
- Same content extraction and HTML generation as BBS crawler
- Outputs:
output/home_YYYY-MM-DD.jsonandoutput/home_YYYY-MM-DD_HHMMSS.html
Common Workflow
To run both crawlers:
python crawler_bbs.py && python crawler_home.py
Key Implementation Details
- Authentication: Both scripts read
COOKIEfrom.envviapython-dotenv - Rate limiting: 0.5-1s delay between requests to avoid being blocked
- Image handling: Images are downloaded and embedded as base64 in the HTML output
- Article content: Extracts main post (
#first) and author replies (.comment-datawith author badge) - Output directory: All results saved to
output/folder
Scripts
The crawler scripts are bundled in scripts/:
scripts/crawler_bbs.py- BBS forum crawler (HTML scraping)scripts/crawler_home.py- Homepage crawler (JSON API)
To run the bundled scripts directly:
python scripts/crawler_bbs.py
python scripts/crawler_home.py
Troubleshooting
- If no articles are returned, check that
.envcontains a validCOOKIEvalue - If image downloads fail, the HTML will show error messages inline
- Network timeouts default to 10-15 seconds per request