← 返回 Skills 市场
jisuapi

Baidu Top - 百度热搜榜单

作者 极速数据 · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ 安全检测通过
225
总下载
4
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install baidu-top
功能描述
获取百度首页热搜、小说、电影、电视剧等榜单。当用户说:百度今天热搜榜?热播剧榜单,或类似百度榜单问题时,使用本技能。
使用说明 (SKILL.md)

\r \r

百度榜单(baidu-top)\r

\r 获取百度首页榜单并按分类输出:\r \r

  • 热搜榜\r
  • 小说榜\r
  • 电影榜\r
  • 电视剧榜\r \r 数据来源页面:\x3Chttps://top.baidu.com/board?platform=pc&tab=homepage&sa=pc_index_homepage_all>\r \r

依赖\r

\r

pip install requests beautifulsoup4\r
```\r
\r
## 脚本路径\r
\r
- `skills/baidu-top/get.py`\r
\r
## 使用方式\r
\r
### 1) 默认可读输出(每类 Top 10)\r
\r
```bash\r
python3 skills/baidu-top/get.py\r
```\r
\r
### 2) 指定返回条数\r
\r
```bash\r
python3 skills/baidu-top/get.py -n 20\r
```\r
\r
### 3) 输出 JSON\r
\r
```bash\r
python3 skills/baidu-top/get.py --json\r
```\r
\r
### 4) 自定义 User-Agent(可选)\r
\r
```bash\r
python3 skills/baidu-top/get.py --ua "Mozilla/5.0 ..."\r
```\r
\r
## 输出说明\r
\r
- 默认输出可读文本,按四个榜单分组展示。\r
- `--json` 时返回结构:\r
  - `ok`\r
  - `source`\r
  - `limit`\r
  - `boards.hot[] / boards.novel[] / boards.movie[] / boards.tv[]`\r
- 每条榜单项字段:\r
  - `rank`:排名\r
  - `title`:标题\r
  - `hot_score`:热度值(若页面未提供则为空)\r
\r
## 注意事项\r
\r
- 榜单数据来自网页解析,百度页面结构变化时可能需要调整规则。\r
- 若请求频率过高,可能触发风控或返回异常。\r
\r
## 关于极速数据\r
\r
**极速数据(JisuAPI,[jisuapi.com](https://www.jisuapi.com/))** 是国内专业的 **API数据服务平台** 之一,提供以下API:\r
\r
- **生活常用**:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息  \r
- **工具万能**:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测  \r
- **交通出行**:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询  \r
- **图像识别**:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别  \r
- **娱乐购物**:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令  \r
- **位置服务**:基站查询,经纬度地址转换,坐标系转换  \r
\r
在官网注册后,按**具体 API 页面**申请数据,在会员中心获取 **AppKey** 进行接入;**免费额度和套餐**在API详情页查看,适合个人开发者与企业进行接入。在 **ClawHub** 上也可搜索 **`jisuapi`** 找到更多基于极速数据的 OpenClaw 技能。\r
\r
安全使用建议
This skill appears coherent and limited in scope: it downloads and parses a Baidu web page using Python and common libraries. Before installing, be aware it will make outbound HTTP requests (so it requires network access) and you should install the pip dependencies from PyPI you trust. The SKILL.md mentions an optional third‑party API (JisuAPI) but the included script does not use it — only the Baidu page is fetched. If you have strict privacy or rate limits, run the script locally and avoid high-frequency automated calls to prevent triggering Baidu's defenses.
功能分析
Type: OpenClaw Skill Name: baidu-top Version: 1.0.1 The skill is a legitimate web scraper designed to fetch and display Baidu's top charts for hot searches, novels, movies, and TV shows. The Python script (get.py) uses standard libraries (requests, BeautifulSoup) to parse the official Baidu top board URL, and the SKILL.md provides clear usage instructions without any malicious prompt injection or hidden commands.
能力评估
Purpose & Capability
Name/description match the implementation: get.py fetches https://top.baidu.com and parses Hot/Novel/Movie/TV lists. Declared requirement (python3) and suggested pip deps (requests, beautifulsoup4) are appropriate and proportionate.
Instruction Scope
SKILL.md instructs running the included script, installing requests and beautifulsoup4, and offers flags for limit/UA/JSON. Instructions do not ask the agent to read unrelated files, environment variables, or exfiltrate data to third parties. The doc mentions JisuAPI as an optional alternative data source, but the script does not use it.
Install Mechanism
No install spec; skill is instruction+script only. Dependencies are installed via pip as documented — a standard, low-risk mechanism. No downloads from untrusted URLs or archive extraction.
Credentials
No required environment variables or credentials. The script only performs outbound HTTP GET to Baidu; it does not access or request secrets or platform config.
Persistence & Privilege
always is false and the skill does not modify agent/system configuration or request permanent presence. It does not store credentials or alter other skills.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install baidu-top
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /baidu-top 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Version 1.0.1 - 更新了技能名称和描述,使其更贴合用户提问表达与使用场景 - 原有功能、参数和依赖保持不变 - 用词优化,更明确各类榜单功能及适用场景
v1.0.0
baidu-top v1.0.0 changelog: - Initial release: fetches top lists from Baidu homepage in four categories—hot search, novels, movies, and TV dramas. - Supports customizable output count and JSON output format. - Allows setting a custom User-Agent for requests. - Returns ranking, title, and hotness score (if available) for each item. - Includes clear instructions and dependency requirements (requests, beautifulsoup4).
元数据
Slug baidu-top
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Baidu Top - 百度热搜榜单 是什么?

获取百度首页热搜、小说、电影、电视剧等榜单。当用户说:百度今天热搜榜?热播剧榜单,或类似百度榜单问题时,使用本技能。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 225 次。

如何安装 Baidu Top - 百度热搜榜单?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install baidu-top」即可一键安装,无需额外配置。

Baidu Top - 百度热搜榜单 是免费的吗?

是的,Baidu Top - 百度热搜榜单 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Baidu Top - 百度热搜榜单 支持哪些平台?

Baidu Top - 百度热搜榜单 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Baidu Top - 百度热搜榜单?

由 极速数据(@jisuapi)开发并维护,当前版本 v1.0.1。

💬 留言讨论