ybc_weather模块(天气查询模块)

today( cityname )

功能

获取指定城市的当前天气

参数

·cityname:城市

返回值

指定城市的当前天气(列表类型)

例子

import ybc_weather

result = ybc_weather.today('上海')
print(result)

week( cityname )

功能

获取指定城市的一周天气

参数

·cityname:城市

返回值

指定城市的一周天气(二维列表)

例子

import ybc_weather

result = ybc_weather.week('成都')
print(result)