python
滚雪球~
这个作者很懒,什么都没留下…
展开
-
tushare获取股票的日线并存储至excel格式
首先导出tushare的stock的csv表格之后遍历,将所有数据进行股票的查询,根据当前股票的发行日期,与当前的系统时间,进行tushare接口的访问,将获取的数据信息保存至本地excel文件即可。导出效果.........原创 2022-06-06 18:11:53 · 781 阅读 · 1 评论 -
windows电脑中安装python
参考:http://www.win7zhijia.cn/win10jc/win10_44712.htmlwindows版本的python下载地址地址:https://www.python.org/downloads/windows/Python安装教程(非常详细)?pyrthon是一款比较流行的编程语言,有着比价简单的语法和丰富第三方库 是很多编程人员必备的软件帮用户处理个各种编程。不过很多新手 对于如何安装python,还不是很清楚,那么几天小编为大家带来了以及Python安装教程(非常详细),一起原创 2022-04-27 00:52:05 · 2387 阅读 · 0 评论 -
python 报错“UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte“的解决办法
参考:https://blog.csdn.net/weixin_40769885/article/details/82288553UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0xa1 in position 0: invalid start byte后来经过不断查找终于找到了解决办法。由于我在程序中设定文件打开的编码格式为“utf-8”,但是我后来用电脑的记事本打开这个”三国演义.txt”文件,然后在点击另存为的时候,发现原文件的编码方式是“原创 2022-04-27 00:10:08 · 41139 阅读 · 3 评论 -
Django建完数据库后遇到问题AttributeError at /admin/demo/video/1/change/ ‘Video‘ object has no attribute ‘user‘
建完数据库,结果发现在后台/admin中无法进入已经建好的数据库。实际上是建错了上面的user并没有出现过这个键值需要修改成原创 2022-03-22 01:27:02 · 2018 阅读 · 0 评论 -
python pycharm OSError: [Errno 22] Invalid argument问题解决
参考:https://blog.csdn.net/weixin_44952395/article/details/105289460一般我们找文件保存地址的时候,都是右击属性里面找。比如正好就是在 Ctrl+C Ctrl+V的时候出了问题。在这里直接复制粘贴就会出现OSError: [Errno 22] Invalid argument: ‘\u202aC:\Users\qw\Desktop\000000.jpg’就会在C:\前出现一串 \u202a,导致找不到文件这恰恰就是因为在属性里复制原创 2022-03-10 19:33:04 · 2700 阅读 · 0 评论 -
python客户端连接服务器 get post等
参考:https://www.cnblogs.com/yuany66/p/10785589.htmlimport requestsif __name__=="__main__": content={'username':1,'password':2} r=requests.get('http://123.60.56.46:8000/settings/login',params=content) print(r.url) print(r.text)原创 2022-03-10 19:02:01 · 2580 阅读 · 2 评论 -
python定义全局变量 跨文件使用
参考:https://www.cnblogs.com/syw20170419/p/10872318.html借鉴global 关键字的思路,既然在一个文件里面可以生效的话,那么我们就专门为全局变量定义一个“全局变量管理模块”就好了新建一个py文件,文件名是:gol.py,具体代码:# -*- coding: utf-8 -*- def _init():#初始化 global _global_dict _global_dict = {} def set_value(key,v原创 2022-03-10 18:53:56 · 1038 阅读 · 0 评论 -
Django Post上传文件与传递参数
<div class="ac-game-settings-acwing"> <br> <input type="file" name="file" id="file_select"> <input type="button" value="上传" class="file_upload"> </div> add_listening_eve...原创 2022-03-10 15:33:22 · 2353 阅读 · 0 评论 -
AcWing中Python题目
https://www.acwing.com/problem/content/610/AcWing 608. 差a=int(input())b=int(input())c=int(input())d=int(input())#print("DIFERENCA = "+str(a*b-c*d))print("DIFERENCA = %d"%(a*b-c*d))https://www.acwing.com/problem/content/667/665. 倍数a,b=map(int,inp原创 2022-02-17 00:41:39 · 713 阅读 · 0 评论 -
量化交易通过tushare.pro进行数据获取
注册账号https://tushare.pro/获取账号的token将token复制到下面代码的*******************import tushare as tsts.set_token('***********************')pro = ts.pro_api()#查询当前所有正常上市交易的股票列表data = pro.stock_basic(exchange='', list_status='L', fields='ts_code,symbol,name,are原创 2022-01-12 18:30:06 · 633 阅读 · 0 评论 -
Python皮尔逊相关系数
可以查看两个函数是否具有相关性# =============================================================================# 7.3.1 相关系数基础 by 王宇韬&肖金鑫 代码更新:www.huaxiaozhi.com 资料下载区# =============================================================================# 注意,在下面的代码运行过程中,如原创 2022-01-12 16:38:13 · 823 阅读 · 0 评论 -
Python对excel与csv进行操作
# =============================================================================# 6.2.2 Excel等文件的读取和写入 by 王宇韬&肖金鑫 代码更新:www.huaxiaozhi.com 资料下载区# =============================================================================# 1.文件读取# 1.1 读取Excel文件i原创 2022-01-11 20:40:40 · 327 阅读 · 0 评论 -
import Error:Missing optional dependency ‘openpyxl‘. Use pip or conda to install openpyxl
参考:https://blog.csdn.net/qq_42494817/article/details/119940093读xlsx的时候出现了import Error:Missing optional dependency ‘openpyxl‘. Use pip or conda to install openpyxl错误按提示安装即可正常运行原创 2022-01-11 20:38:19 · 3651 阅读 · 1 评论 -
Python爬虫获取网页源代码出现乱码
发现用python用requests在百度中获得的代码有乱码import requests# 0.通过如下代码,会发现获取的网页源代码出现乱码url = 'https://www.baidu.com'res = requests.get(url).textprint(res)出现乱码查看python获得的编码格式import requests# 0.通过如下代码,会发现获取的网页源代码出现乱码url = 'https://www.baidu.com'res = requests.g原创 2022-01-11 19:52:48 · 5205 阅读 · 0 评论 -
Python中ChromeDriver与Selenium库安装(windows与mac版本)
参考:https://www.cnblogs.com/lilyo/p/11959494.html打开chrome浏览器输入:chrome://settings/help 查看当前chrome版本 下载对应的chromedriver版本网址:https://chromedriver.storage.googleapis.com/index.html把chromedriver放在/usr/local/bin目录下这个目录是隐藏的,所以随便打开一个Finder,然后command+shift+G原创 2022-01-08 00:38:44 · 2012 阅读 · 0 评论 -
在Mac中创建anaconda新环境An unexpected error has occurred. Conda has prepared the above report.
参考:https://github.com/conda/conda/issues/9794方法一:关闭vpn,先暂时关闭科学上网方法二:输入conda clean -a原创 2022-01-06 00:39:22 · 799 阅读 · 0 评论 -
解决报错RecursionError: maximum recursion depth exceeded in comparison
参考:https://blog.csdn.net/cliviabao/article/details/79927186在使用python爬取新浪微博的时候,采取了深度优先来抓取,写了个递归函数。但有个页面的值出现了异常,最后报了RecursionError: maximum recursion depth exceeded in comparison这个错误。python默认的递归深度是很有限的(默认是1000),因此当递归深度超过999的样子,就会引发这样的一个异常。import sys sy原创 2021-12-20 15:27:57 · 1181 阅读 · 0 评论 -
python将多张图融合与换成二值图
把下面的图片融合,黑色背景保持,剩下的物体画在一起import osimport cv2import numpy as nppatha=r"D:\gxq\code\weightlifting\WeightLifting\Competitions\31\45\l_line_BW"pathb=r"D:\gxq\code\weightlifting\WeightLifting\Competitions\31\45\l_seg"pathc=r"D:\gxq\code\weightliftin原创 2021-12-19 20:22:16 · 576 阅读 · 0 评论 -
OSError: cannot write mode RGBA as JPEG
参考:https://blog.csdn.net/weixin_39777626/article/details/82774270/原代码from PIL import Imageinfile = r'D:\gxq\ao_meng\OneDrive\论文方向\各类图片\相机标定迭代测试\2.jpg'outfile = r'D:\gxq\ao_meng\OneDrive\论文方向\各类图片\相机标定迭代测试\22.jpg'im = Image.open(infile)out = im.resize原创 2021-12-18 01:13:08 · 425 阅读 · 0 评论 -
【python小技巧】 批量将.png格式图片转换为.jpg格式图片
参考:https://blog.csdn.net/plSong_CSDN/article/details/89209664?spm=1001.2101.3001.6650.5&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromBaidu%7Edefault-5.highlightwordscore&depth_1-utm_source=distribute.pc_relevant.non原创 2021-12-16 14:47:01 · 1445 阅读 · 0 评论 -
OpenCV蒙层效果
while True: if index>=s_len: break frame=cv2.imread(pic_s[index]) pic_w=frame.shape[1] pic_h=frame.shape[0] time.sleep(0.03) vis = frame.copy() ...原创 2021-12-15 10:58:19 · 2981 阅读 · 0 评论 -
python下载whl到本地自己安装
参考:https://blog.csdn.net/qq_23114283/article/details/105501921经常会遇到pip install xxx在网上找不到库的情况,这个时候可以尝试自己下载whl,然后在本地安装。比如项目用到pyqt4,但是官网python3.7已经不支持pyqt4了。官网地址:https://sourceforge.net/projects/pyqt/files/PyQt4/网站可以下载到 支持python3.7的pyqt版本:https://www.lfd.原创 2021-12-14 20:04:52 · 2874 阅读 · 0 评论 -
ValueError: check_hostname requires server_hostname的解决办法记录
参考:https://blog.csdn.net/u010037715/article/details/118277228在用pip安装scikit-image库时报错:ValueError: check_hostname requires server_hostname报错ValueError: check_hostname requires server_hostname通常是因为版本冲突等原因,查遍网上众多大佬总结的经验后,最终发现是由网络代理导致的问题,即我们通常说的vpn问题。关掉VPN后原创 2021-12-14 20:00:14 · 1173 阅读 · 0 评论 -
ValueError: shapes (3,3) and (0,) not aligned: 3 (dim 1)
ValueError: shapes (3,3) and (0,) not aligned: 3 (dim 1) != 0 (dim 0)参考:https://stackoverflow.com/questions/39608421/showing-valueerror-shapes-1-3-and-1-3-not-aligned-3-dim-1-1-dim-0The column of the first matrix and the row of the second matrix should b原创 2021-12-13 23:55:26 · 1943 阅读 · 0 评论 -
VSCode 运行Python出现 Python was not found but can be installed from the Microsoft Store
参考:https://blog.csdn.net/weixin_40040107/article/details/102650433因为vscode没有设置python解决办法使用 Ctrl + shift + P 搜索 打开用户设置打开以后是下面这样的注意上图的红色箭头, 用 json打开 , 如果是第一次使用 vscode ,可能会啥也没有第一步 : 需要设置 python的路径我用的是anaconda , 路径只作为参考"python.pythonPath": "D:\\Anaco原创 2021-12-11 15:39:30 · 1728 阅读 · 0 评论 -
cv2.error: OpenCV(4.5.4-dev) :-1: error: (-5:Bad argument) in function ‘circle‘
参考:https://blog.csdn.net/weixin_42272869/article/details/121143195cv2.error: OpenCV(4.5.4-dev) ???? error: (-5:Bad argument) in function ‘circle’问题描述:使用opencv这个库的方法putText 出现了以下错误问题处理原因是因为:这里的参数矩阵x y 要为 int 型 我代码中的x y 为浮点型,所以这边报错代码使用前强转一下:下面的x和y可能是原创 2021-12-11 15:33:25 · 11276 阅读 · 4 评论 -
python 安装pubsub
pip install pypubsub原创 2021-12-11 00:38:35 · 1390 阅读 · 0 评论 -
python中pip太慢,用清华镜像加速
参考:https://www.icode9.com/content-1-872859.html设为默认升级 pip 到最新的版本 (>=10.0.0) 后进行配置:pip install pip -Upip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple临时使用的话:直接在后面加上镜像地址在pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/s原创 2021-12-11 00:04:08 · 334 阅读 · 0 评论 -
RuntimeWarning: invalid value encountered in double_scalars
参考:https://blog.csdn.net/qq_34333481/article/details/85258888数值运算中出现了分母为0的情况原创 2021-12-08 23:27:57 · 559 阅读 · 0 评论 -
Python绘图表学习笔记 matplotlib绘图库
画折线图参考:https://www.pythonf.cn/read/22457#绘制折线图import matplotlib.pyplot as pltyear = [2011,2012,2013,2014]pop = [1.2,3.4,4.5,6.5]#折线图绘制函数plt.plot(year,pop)plt.show();画散点图#绘制折线图import matplotlib.pyplot as pltyear = [2011,2012,2013,2014]pop = [原创 2021-12-08 18:34:59 · 1345 阅读 · 0 评论 -
TypeError: object of type ‘NoneType‘ has no len()
TypeError: object of type ‘NoneType’ has no len()参考:https://blog.csdn.net/xumesang/article/details/51221706实际上是因为我这个变量并不是list,而且None,即没有初始值类型,len函数不能统计,这时,可以先判断一下,如果为None则直接退出...原创 2021-12-07 16:11:39 · 5821 阅读 · 0 评论 -
python浏览本地文件,实现文件路径的选择
参考:https://www.cnblogs.com/sengzhao666/p/12748444.htmlimport tkinter as tkfrom tkinter import filedialogdef getLocalFile(): root=tk.Tk() root.withdraw() filePath=filedialog.askopenfilename() print('文件路径:',filePath) return filePath原创 2021-12-06 17:05:52 · 1507 阅读 · 0 评论 -
ImportError: cannot import name ‘pub‘
参考:https://github.com/exdx/Titan/issues/29ImportError: cannot import name ‘pub’解决方法:If you do pip install pypubsub which will resolve the issue原创 2021-12-03 00:53:10 · 1440 阅读 · 0 评论 -
CV学习笔记
python 使用opencv 对图像mask处理参考:https://blog.csdn.net/lucky__ing/article/details/78559916MASK图像掩膜处理在图像操作中有时候会用到掩膜处理,如果使用遍历法掩膜图像ROI区域对于python来讲是很慢的,所以我们要找到一种比较好的算法来实现掩膜处理。假设我们有一副图像:而我们关心的区域就在这一小堆线上,想把这一堆线提取出来,我们先通过numpy生成一个mask图像:sss=np.zeros([480,640],d原创 2021-12-01 12:53:27 · 94 阅读 · 0 评论 -
对极几何基本概念与极线约束
参考:https://blog.csdn.net/tina_ttl/article/details/52749542参考:https://blog.csdn.net/ccblogger/article/details/72900316对极几何(Epipolar Geometry)描述的是两幅视图之间的内在射影关系,与外部场景无关,只依赖于摄像机内参数和这两幅试图之间的的相对姿态1. 什么是对极几何·粗略概念提到对极几何,一定是对二幅图像而言,对极几何实际上是“两幅图像之间的对极几何”,它是图像平面与原创 2021-11-30 19:55:14 · 5725 阅读 · 0 评论 -
光流跟踪 Lucas-Kanade(LK)算法,用于目标追踪
参考:https://blog.csdn.net/gjy095/article/details/9226883?utm_medium=distribute.pc_relevant.none-task-blog-2defaultbaidujs_title~default-0.no_search_link&spm=1001.2101.3001.4242.1# encoding:utf-8'''Lucas-Kanade tracker====================Lucas-Kanad原创 2021-11-25 01:42:34 · 4562 阅读 · 1 评论 -
ffmpeg: error while loading shared libraries: libopenh264.so.5: cannot open shared object file: No s
参考:https://pretagteam.com/question/moviewriter-stderr-ffmpeg-error-while-loading-shared-libraries-libopenh264so5-cannot-open-shared-object-file-no-such-file-or-directory参考:https://newbedev.com/shell-ubuntu-20-04-ffmpeg-error-while-loading-shared-libraries原创 2021-11-24 12:24:18 · 2456 阅读 · 0 评论 -
ImportError: libtorch_cpu.so: cannot open shared object file: No such file or directory
参考:https://github.com/facebookresearch/detectron2/issues/1365It seems you're using a pre-built detectron2. As the installation instruction says:Such installation has to be used with certain version of official PyTorch release. See releases for requireme原创 2021-11-23 22:44:39 · 1252 阅读 · 0 评论 -
ModuleNotFoundError: No module named ‘nms.gpu_nms‘
参考:https://github.com/rbgirshick/py-faster-rcnn/issues/8参考:https://blog.csdn.net/qq_42647047/article/details/105341478?spm=1001.2101.3001.6650.11&utm_medium=distribute.pc_relevant.none-task-blog-2defaultCTRLISTdefault-11.no_search_link&depth_1-utm原创 2021-11-23 22:41:51 · 2419 阅读 · 1 评论 -
python导入包如果找不到
说明系统中可能没有前缀,可以在sys.path中加入各类查找路径,这样编译的时候会进行这些前缀的检索,如果是当前目录的,则不用加,直接Import那个包即可。原创 2021-11-23 22:39:00 · 1346 阅读 · 0 评论