资源简介
爬取某块区域的实时交通态势数据,并存入mysql数据库;替换代码中的坐标,换成自己想要爬取的地区坐标
代码片段和文件信息
import requests
import json
import time
import psycopg2
import pymysql
import threading
def getGaodeTrafficStatus(keyfurlcurrentTime):
insert_list = []
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‘];
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);
db = pymysql.connect(“localhost““root““root““springboot“)
cursor = db.cursor()
print(len(insert_list))
for i in insert_list:
print(len(i))
if len(i):
print(“insert into t_system_position (namestatusdirectionanglelcodespolyline currentDate currentTime speed) values(‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘‘%s‘)“ % (i[0]i[1]i[2]i[3]i[4]i[5]i[6]i[7]i[8]))
- 上一篇:DeepLab-ResNet-101
- 下一篇:python 数独游戏源码
相关资源
- python 数独游戏源码
- Anaconda3-5.3.1-Windows-x86_64 (Python3.x版本
- DS_Store文件泄漏利用python脚本
- ArcGIS10.1中利用python语言批量实现遥感
- 用自己的数据制作python版本cifar10数据
- python遗传算法求函数极值.py
- Python教程.rar
- python数据挖掘分类聚类回归关联算法
- Python爬虫源码—爬取猫途鹰官方旅游
- 密度聚类(Density peaks Clustering)Pyth
- python摄像头视频显示到TK窗口
- 国际麻将AI-根据向听数计算最优操作
- 爬取瓜子二手车.py
- 人脸识别UI Pythone+pyq5+opencv 多线程模式
- pcap-1.1.win32-py2.7.exe
- Python制作的汉诺塔演示小脚本
- python django+bootstrap实现用户管理系统
- python+MySQL+bootstrap+ajax项目
- 基于Python的双路视频传输及双显示系
- python模型restful接口
- Python3—EM&GMM;
- python+numpy实现自适应阈值分割函数O
- python+numpy实现均值滤波
- python代码实现录音
- 初学者练习python编程的100个小程序
- python入门到实践 外星人入侵项目代码
- 合并BN层的python脚本
- 语音读邮件的小程序python实现
- python入账管理系统源码
- python调用opencv实现人脸识别的简单D
评论
共有 条评论