python 获取天气信息

Posted benpao1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 获取天气信息相关的知识,希望对你有一定的参考价值。

【说明】接口为聚合数据接口。API使用说明:

技术图片

实现代码:

import requests,json


def main():
    #参数
    farmat=1
    cityname = input("请输入你想查询的城市天气:")
    key=‘621043608cb9e7f7f485461ef9e5adef‘
    get_weather(farmat,cityname,key)

def get_weather(format,cityname,key):
	url=‘http://v.juhe.cn/weather/index‘
	params=‘format=&cityname=&key=‘.format(format,cityname,key)
	city_weather=requests.get(url,params)
	#print(city_weather)
	result=json.loads(city_weather.text)
	#print(result)
	if result:
		if result[‘error_code‘]==0:
			print("请求成功!")
		else:
			print(result[‘reason‘])
	else:
		print(‘请求接口失败!!‘)

if __name__=="__main__":
	main()

  

以上是关于python 获取天气信息的主要内容,如果未能解决你的问题,请参考以下文章

python 获取天气信息

python使用openweathermap API获取全世界主要城市天气信息

用python+selenium从百度获取本地明日的天气信息并根据温度情况邮件提醒

python 学习笔记 12 -- 写一个脚本获取城市天气信息

python 天气爬虫

Python爬虫-播报天气信息(生成exe文件)待续