python
科学的N次方
IT菜鸟,啥也不懂
展开
-
构建Pytorch虚拟环境教程
构建PyTorch虚拟环境通常涉及使用诸如Anaconda或venv等工具来管理Python环境,以便在一个独立的空间中安装PyTorch和其他依赖项。原创 2024-03-24 11:23:29 · 493 阅读 · 0 评论 -
pip3
Could not fetch URL https://pypi.python.org/simple/apache-flink/: There was a problem confirming the ssl certificate: Can’t connect to HTTPS URL because the SSL module is not available. - skippingpip3 install -U pippip install --upgrade pippip3 install原创 2021-04-15 17:24:27 · 162 阅读 · 0 评论 -
python3 requests 请求get带参数接口
import requests # 请求urlrequest_url = "xxx"# 请求数据data = dict( id=xxx, name="xxx")# 执行请求response = requests.get(url= request_url, params=data)print(response.text)原创 2020-10-21 17:44:02 · 2178 阅读 · 1 评论 -
python3 getLatitiudeByAddress通过地址获取经纬度
# encoding:utf-8import requestsimport jsonimport time# 此处需要ak,ak申请地址:https://lbs.amap.com/dev/key/appak = "xxxx"headers = { 'X-Requested-With': 'XMLHttpRequest', 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHT原创 2020-10-19 18:07:24 · 161 阅读 · 0 评论 -
python点位在哪个区域内,打标签
import MySQLdbimport jsonimport ossource_system='parking'filePath = os.path.expanduser('~')+ os.sep + 'etlconfig' +os.sep +source_system + os.sep + 'database.conf'with open(filePath,'r') as confFile: confStr = confFile.read()conf = json.JSONDeco原创 2020-10-16 19:20:04 · 276 阅读 · 0 评论 -
python send alarm_info
#!/usr/bin/python3import pymysqlimport requests# 访问请求的方法def requestUrl(result): id = str(result['id']) entName = str(result['entName']) warnType = str(result['warnType']) headers = {'Content-Type': 'application/json'} #datas = js原创 2020-10-10 14:14:08 · 298 阅读 · 0 评论 -
python 迁移数据
#!/usr/bin/python2# -*- coding:utf-8 -*-#import MySQLdb# 原始数据的数据连接sourceConn=MySQLdb.connect(XXX)sourceCur=sourceConn.cursor()# 定义查询语句len = sourceCur.execute('')# 目标库的数据连接targetConn=MySQLdb.connect(XXX)targetCur=targetConn.cursor()# 批量插入语句原创 2020-09-17 18:13:26 · 473 阅读 · 0 评论 -
PYTHON ETL TEMPLATE
#!/usr/bin/python2import MySQLdbimport sysdef create_source_conn(): conn = MySQLdb.connect('XXXX', 'XXX', 'XXXX', 'XXX', 3306, charset='utf8') cursor = conn.cursor() return conn, cursordef create_target_conn(): conn = MySQLdb.conne原创 2020-09-17 18:10:18 · 117 阅读 · 0 评论 -
pyquery爬虫
获取源码的三种方式 doc = PyQuery(html) 利用PyQuery类,对Html这个文档进行序列化,结果是一个文档对象 doc = PyQuery(url=”“,encoding = ‘utf-8’) doc = PyQuery(filename = “index.html”)...原创 2018-08-03 17:16:50 · 225 阅读 · 0 评论 -
python 更换国内安装源
常见国内镜像源 http://pypi.douban.com/simple/ 豆瓣 http://mirrors.aliyun.com/pypi/simple/ 阿里 http://pypi.hustunique.com/simple/ 华中理工大学 http://pypi.sdutlinux.org/simple/ 山东理工大学 http://pypi.mirrors.ustc.edu...原创 2018-07-30 10:00:45 · 13909 阅读 · 1 评论 -
python 安装 MySQLdb模块
安装pip模块 在Pythonx.x目录下cd /usr/local/pythonx.x/bin wget –no-check-certificate https://bootstrap.pypa.io/get-pip.py 安装 python get-pip.py copy pip脚本到bin(可以先检查是否已经存在pip命令) cp pip /usr/bin/pip安装m原创 2017-12-05 09:22:16 · 294 阅读 · 0 评论