爬取 重庆市及其区县 2023-2024每月数据

This commit is contained in:
MingerMinger 2024-05-31 14:33:01 +08:00
parent 3557a12890
commit 128156a82c
2 changed files with 19316 additions and 3 deletions

View File

@ -101,8 +101,8 @@ if __name__ == "__main__":
with ThreadPoolExecutor(max_workers=10) as executor: # 使用最多 10 个线程
for city, provinces in cities_dict.items():
for province in provinces:
for area_id in province.values():
if area_id == "101040100":
if city == "重庆":
for province in provinces:
for area_id in province.values():
executor.submit(fetch_weather_data_for_city, root_url, city, list(province.keys())[0], area_id,
all_dates_str)

File diff suppressed because it is too large Load Diff