TERMINAL
clawhub install travel-cn📖 About This Skill
name: travel-cn description: 旅行信息查询 - 去哪儿/携程/飞猪数据查询(Expedia 中国版) metadata: openclaw: emoji: "✈️" category: "travel" tags: ["travel", "qunar", "ctrip", "fliggy", "china", "booking"]
旅行信息查询
去哪儿/携程/飞猪数据查询。
功能
平台对比
| 平台 | 机票 | 酒店 | 火车 | 特点 | |------|-----|------|------|------| | 携程 | ✅ | ✅ | ✅ | 全能 | | 去哪儿 | ✅ | ✅ | ✅ | 比价 | | 飞猪 | ✅ | ✅ | ❌ | 阿里系 | | 12306 | ❌ | ❌ | ✅ | 官方 |
机票查询
携程 API
# 需要合作伙伴资质
curl "https://api.ctrip.com/flight/search?from=SHA&to=PEK&date=2026-02-20"
爬虫方案
# 使用 selenium
pip install seleniumfrom selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://flight.qunar.com/")
酒店查询
携程 API
curl "https://api.ctrip.com/hotel/search?city=上海&checkin=2026-02-20"
火车票查询
12306(官方)
# 使用 12306 API 封装
pip install py12306from py12306 import Py12306
client = Py12306()
trains = client.query("上海", "北京", "2026-02-20")
使用场景
1. 商务出行
2. 旅行规划
3. 价格监控
快速脚本
# 查询机票
./scripts/flight-search.sh --from 上海 --to 北京 --date 2026-02-20查询酒店
./scripts/hotel-search.sh --city 上海 --checkin 2026-02-20查询火车票
./scripts/train-search.sh --from 上海 --to 北京 --date 2026-02-20
注意事项
1. API 限制: 需要合作伙伴资质 2. 爬虫风险: 可能被封 IP 3. 价格变化: 实时波动
*版本: 1.0.0*