调用星座运势API获取今日运势的代码
时间: 2024-06-08 16:05:51 浏览: 256
以下是调用星座运势API获取今日运势的Python代码示例:
```python
import requests
import json
# 设置请求参数
url = 'http://web.juhe.cn:8080/constellation/getAll'
params = {
'consName': '双子座',
'type': 'today',
'key': '你申请的API Key'
}
# 发送请求并获取结果
response = requests.get(url, params=params)
result = json.loads(response.text)
# 解析结果并输出今日运势
if result['error_code'] == 0:
data = result['data']
print(f"日期:{data['date']}")
print(f"星座:{data['name']}")
print(f"综合指数:{data['all']}")
print(f"幸运色:{data['color']}")
print(f"健康指数:{data['health']}")
print(f"爱情指数:{data['love']}")
print(f"财运指数:{data['money']}")
print(f"幸运数字:{data['number']}")
print(f"速配星座:{data['QFriend']}")
print(f"工作指数:{data['work']}")
else:
print(f"错误代码:{result['error_code']}")
print(f"错误信息:{result['reason']}")
```
注意:在运行代码前,需要先去聚合数据官网(https://www.juhe.cn/)申请一个星座运势API Key。
阅读全文