What problem does it solve? Accessing Weibo data programmatically usually requires dealing with complex authentication, rate limits, and anti-scraping measures. This Skill provides a ready-made Python client that handles cookie-based login, request throttling, and retries so you can query trending topics, feeds, posts, comments, and user profiles directly. ## Core Features & Use Cases - Trending & Search: Fetch hot search lists, trending suggestions, hot feeds, and keyword search results without logging in. - Authenticated Access: Read following timelines, weibo details, comments, reposts, user profiles, followers, and following lists using browser-extracted cookies. - Built-in Anti-Detection: Gaussian request jitter, random long pauses, and exponential backoff on HTTP 429/5xx reduce the chance of being blocked. - Use Case: A researcher tracking public opinion can extract cookies once via the browser, then pull the daily trending list and search results for specific keywords into a dataset for analysis. ## Quick Start Ask the agent to log into weibo.com in the browser, save the cookies with WeiboClient.setup_credential, and then fetch the current Weibo hot search list.