相关文章
deqin -学习爬虫
import requests
# 2.发送请求
url "http://img0.bdstatic.com/static/searchresult/img/logo-2X_32a8193.png"
res requests.get(url)
# 3.写入/读取
with open("mb4.png","wb") as f:f.write(res.content)import requests
url "http:…
建站知识
2025/1/3 17:37:54
ziheng - 爬取天气预报
import requests
import city
import time
# bj input(你想查找哪个城市?)
most_cold_city "巴拉巴拉"
most_cold_city_wendu 100
a 1
for i in city.citycode.keys():print("这是查找的第%d个城市"%a)a 1# print(i)# print(city.citycode…
建站知识
2024/12/30 21:23:19
xinxin - 学习天气预报
# 7k7k
import requests
import city
bbbb input(你想干啥)
city_name city.citycode[bbbb]
url "http://t.weather.sojson.com/api/weather/city/" city_name
wang_zhi requests.get(url)
# print(wang_zhi.text)
shu_ju wang_zhi.json()
print(shu_ju)
print…
建站知识
2024/12/22 22:03:16
中国天气的各个城市的id,整理成json文件记录
{"ids": [{"北京":"101010100","海淀":"101010200","朝阳":"101010300","顺义":"101010400","怀柔":"101010500","通州":"101010600",&q…
建站知识
2025/1/3 4:06:45
Java文件处理:分离全国省市县ID(数据来自和风天气)
最近,在做第一行代码上的酷欧天气APP,但是发现书中的API已经用不了了,所以选择了和风天气的API,但是,在遍历省市县数据是遇到了麻烦,之前中国天气网是有个省市对应下一级行政区列表的,像这样&am…
建站知识
2024/12/28 1:37:24
天气预报API(一):全国城市代码列表(“旧编码”)
说明 2016-12-09 补充 (后来)偶然发现中国天气网已经有城市ID列表的网页... 还发现城市编码有两种,暂且称中国天气网这些编码为旧标准 “旧编码”的特征是 9个字符长度 中国天气网(www.weather.com.cn)是中国气象服务网站的领先者,…
建站知识
2024/12/3 19:50:02