python
yangyangrenren
这个作者很懒,什么都没留下…
展开
-
python gevent 协程
协程,又称微线程。英文名Coroutine。协程是Python语言中所特有的,在其他语言中没有。协程是python中另外一种实现多任务的方式,比线程更小、占用更小执行单元(理解为需要的资源)。在一个线程中的某个函数,可以在任何地方保存当前函数的一些临时变量等信息,然后切换到另外一个函数中执行。协程就是通过yield来实现多个任务之间的切换的。进程、线程、协程对比 1.进程切换需要...原创 2019-10-22 19:58:45 · 176 阅读 · 0 评论 -
CursorNotFound: cursor id '8770545284945729938' not valid at server
You’re getting this error because the cursor is timing out on the server (after 10 minutes of inactivity).From the pymongo documentation:Cursors in MongoDB can timeout on the server if they’ve been...转载 2019-06-07 19:53:35 · 1297 阅读 · 0 评论 -
python AttributeError: 'Cursor' object has no attribute 'index'
lst_arr = [message for message in messages]原创 2019-03-04 19:25:56 · 6319 阅读 · 0 评论 -
OperationFailure: Authentication failed.
OperationFailure: Authentication failed.append /?authSource=admin’ to the end to the URIAuthentication OptionsThe following connection string to a replica set specifies the authSource to the admi...原创 2019-02-28 12:46:50 · 1270 阅读 · 0 评论 -
python 遇到的报错
python flask json格式 报错使用python flask框架开发时候,由于代码中限定了使用json格式进行数据传输。我使用postman进行接口测试时候,由于没有在header中对Content-Type赋值为application/json ,导致一直报错“flask assertion error full_dispatch_request “pycurl报错 ...原创 2018-03-23 15:53:18 · 361 阅读 · 0 评论 -
pyautogui
使用pyautogui,可以模拟人工操作,但是经常使用位置定位,需要知道具体操作点的坐标(x,y)。在Linux系统(Ubuntu)中,没有找到屏幕坐标拾取系统这类应用,通过截图(prt sc),保存之后,使用Pinta图像软件,可以看到具体的位置(x,y) selenium的键盘操作,或者其他操作,全部都是建立于网页的基础之上,像chrome的ip代理认证弹出层窗口、或者扩展程序的点击这类...原创 2018-03-03 20:56:12 · 805 阅读 · 0 评论 -
selenium popup
1 中描述Selenium supports interaction with web view only - so this is not possible. 所以这种方式,行不通!How to setup Shadowsocks on your Ubuntu server https://gist.github.com/nathanielove/40c1dcac777e64ceeb...原创 2018-03-02 20:09:21 · 706 阅读 · 0 评论 -
chrome浏览器扩展程序遇到的问题
自己打算制作一个Chrome扩展程序,打算点开扩展程序,就可以出来一个标记的地图,将遇到的问题稍微记录。 1.制作好的扩展程序,打包成crx文件,步骤:谷歌浏览器,“更多工具”——“扩展程序”——“打包扩展程序”,然后就可以直接将crx使用拖拉的方式,拖拉到谷歌“扩展程序”界面,就可以安装了。但是,这样,在使用一段时间之后,会报错“此扩展程序可能已损坏”,导致扩展程序无法使用了。以下是参照百度经...原创 2018-02-14 12:09:18 · 2598 阅读 · 0 评论 -
python全局变量
globalTest.py# 告诉编译器这是全局变量aglobal adef set_value_1(value): # 告诉编译器在这个方法中使用的a是刚才定义的全局变量a,而不是方法内部的局部变量. global a a = value print("set_value_1,a="+str(a))def set_value_2(value): ...原创 2018-02-23 09:34:49 · 217 阅读 · 0 评论 -
python 正则表达式
python 正则原创 2017-12-15 15:14:05 · 400 阅读 · 0 评论 -
ImportError: No module named 'tensorflow.tensorboard.tensorboard'
tensorboard找不到ImportError: No module named 'tensorflow.tensorboard.tensorboard'原创 2017-09-10 16:56:59 · 13200 阅读 · 1 评论 -
用python发送邮件
python3,用smtp协议发送邮件原创 2017-01-09 17:21:30 · 369 阅读 · 0 评论