搜索结果
查询Tags标签: CityCode,共有 5条记录-
Python 爬虫(Spider)基础 - 大约16万字
Python 爬虫(Spider)基础 - 大约16万字 爬虫(Spider)1、Python 基础1.Python 环境安装1.1 下载 Python1.2 安装 Python1.3 测试是否安装成功1.4 配置 Python 环境变量 2.pip 的使用2.1 安装2.2 配置2.3 使用 pip 管理 Python 包2.4 修改 pip 下载源2.4.1 临时修改2.4.…
2021/9/18 14:37:10 人评论 次浏览 -
Python 爬虫(Spider)基础 - 大约16万字
Python 爬虫(Spider)基础 - 大约16万字 爬虫(Spider)1、Python 基础1.Python 环境安装1.1 下载 Python1.2 安装 Python1.3 测试是否安装成功1.4 配置 Python 环境变量 2.pip 的使用2.1 安装2.2 配置2.3 使用 pip 管理 Python 包2.4 修改 pip 下载源2.4.1 临时修改2.4.…
2021/9/18 14:37:10 人评论 次浏览 -
存入数据库
读取json文件的数据with open(./jingqu/datapoi.json, r) as file:data = file.read()data = json.loads(data)链接数据库def du_sql():mydb = mysql.connector.connect(host="localhost",user="root",password="password",database="…
2021/6/21 2:27:53 人评论 次浏览 -
微信小程序简单封装获取定位
var app = getApp(); var request = require("../utils/request") // 获取定位 function getAddress(that) {var userinfo = wx.getStorageSync(userinfo)// userinfo.citycode 是否有值来判断是否获取到了地址if(userinfo.citycode == null || !userinfo.cityc…
2021/6/7 12:23:33 人评论 次浏览 -
mongodb 删除重复的数据
//PlaceName:$PlaceName,CityCode:$CityCode 查询条件 //dups 查询到的重复数据 db.getCollection(HotLocation).aggregate([ { $group:{_id:{PlaceName:$PlaceName,CityCode:$CityCode},count:{$sum:1},dups:{$addToSet:$_id}} }, { $match:{coun…
2021/6/3 19:22:04 人评论 次浏览