资源简介
该文件包含了.py文件,稍微修改就可以直接用来爬取高德的各种数据,一般只要提供api借口的数据都可以爬取。
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Sun Dec 16 21:15:36 2018
@author: LFL
“““
# -*- coding: utf-8 -*-
import requests
import json
import time
import pandas as pd
import threading
def getGaodeTrafficStatus(key furl currentTime):
TrafficStatusUrl = furl
res = requests.get(url=TrafficStatusUrl).content
res = res.decode(“utf-8“)
total_json = json.loads(res)
print(total_json)
#jsondata = total_json[‘trafficinfo‘][‘roads‘]
if total_json[‘status‘] == 0:
print(“none“)
return
if ‘trafficinfo‘ in total_json:
jsondata = total_json[‘trafficinfo‘]
else:
print(furl)
return
if ‘roads‘ in jsondata:
jsondata = jsondata[‘roads‘]
else:
print(furl)
return
currentDate = time.strftime(“%Y-%m-%d“ time.localtime())
if any(jsondata):
for i in jsondata:
name = i[‘name‘]
status = i[‘status‘]
direction = i[‘direction‘]
angle = i[‘angle‘]
speed = i.get(‘speed‘)
if speed == None:
speed = None
lcodes = i[‘lcodes‘]
polyline = i[‘polyline‘]
list = [name status direction angle lcodes polyline currentDate currentTime speed]
insert_list.append(list)
- 上一篇:安装步骤。提取码也在里面
- 下一篇:python 实现购物程序
相关资源
- python 实现购物程序
- 安装步骤。提取码也在里面
- python3.5和python3.6的anaconda,以及pycha
- python登陆
- 基于SMTP的自动发邮件的设计实现Pyt
- Python高级编程和异步IO并发编程
- 廖雪峰最新Python3教程
- Python搜索爬虫抓取超高清视频
- 微博图片视频小爬虫
- Python 简单的登录界面源码
- python编程小游戏汉诺塔hanoi
- 小甲鱼零基础入门学习Python+全套源码
- pygraphviz python3.4 轮子
- 用Python编写潮流计算极坐标
- Python-图像操作
- python建模
- windows将Python添加到注册表
- 位图转g代码轮廓加工源码
- 基于神经网络控制一阶倒立摆小车
- 基于Python爬虫的股票信息爬取保存到
- 基于NMF和PCA实现人脸图像特征提取与
- 基于PCA实现鸢尾花数据集降维
- 基于KNN实现“手写识别”
- 基于sklearn模块的神经网络实现“手写
- 2018最新BAT-python面试题内附答案
- BM3D去噪python代码
- insert_test_data.py
- 栅格投影转换.py
- IDW插值批处理
- 神经网络模型python模板
评论
共有 条评论