
python
AI时代科技风潮
艺多不压身。
w x 公众号同名。
展开
-
在pandas dataframe中groupby之后将多个列合并转换为dict
【代码】在pandas dataframe中groupby之后将多个列合并转换为dict。原创 2023-06-15 23:16:07 · 1133 阅读 · 0 评论 -
robotframework请求重定向后,响应里cookie为空
在RF里关闭请求中的重定向时,传入参数须写成${False}, 即 allow_redirects=${False}python在post 请求时可以加参数allow_redirects=False禁止自动重定向。比如登录后,重定向到了index首页,RF会自动跳转到新页面,就没有cookie。...原创 2022-08-04 17:49:48 · 2218 阅读 · 0 评论 -
安装robotframework的RIDE/wxPython 依赖VC的编译器, 使用VC BuildTool 解决
robotframework-ride好像只能支持Python2.7,于是又用anaconda创建了python2.7的环境。电脑上没装VisualStudio,所以报错“Unabletofindvcvarsall.bat”安装robotframework的RIDE,需要wxPython,而它又依赖VC的编译器。本来电脑Python版本是3.9,安装wxpython时报一堆奇怪的错误。//2.2、如果你安装的Python是64位的,则,创建如下。注意路径中不包含最后的反斜杠。......原创 2022-08-02 16:47:57 · 427 阅读 · 0 评论 -
django注释中间件仍无法关闭CSRF,CSRF token missing
第一个方法:在setting中注释中间件 django.middleware.csrf.CsrfViewMiddleware,不起作用,仍然报错;第二个方法:在函数上加了@csrf_exempt 免除csrf装饰器,也不起作用;SessionAuthentication具有强制的csrf检查,但Basic......原创 2022-07-25 16:02:07 · 1089 阅读 · 1 评论 -
用python获取下个整点时间的时间戳
import datetimeimport time#datetime.datetime.now()获得当前时间,strftime格式化, 由此获得整点字符串h= (datetime.datetime.now()+datetime.timedelta(hours=1)).strftime("%Y-%m-%d %H") +":00:00"print ("next hour=",h)#...原创 2020-04-10 13:20:53 · 2692 阅读 · 0 评论 -
python requests发送HTTPS 请求-不验SSL证书
有时为了方便,在发送请求时把验SSL正式关掉, 设置verify为False, import requestsfrom requests import Request, Sessionfor i in range (0,2): s=requests.Session() r1= s.get('https://www.baidu.com/&', verify=F原创 2016-08-30 19:08:47 · 39267 阅读 · 1 评论 -
python实现对以‘&’连接的参数串排序后计算md5
本程序实现了对’&’符号连接的http参数串排序后再计算md5. 主要步骤为:1.参数串以&为分割符拆成list, 2. 对list进行排序 3. 把排序完的list再用&连接为string 4. 对string计算md5...原创 2017-03-07 22:54:43 · 2047 阅读 · 0 评论 -
NameError: name 'simple_server' is not defined
from wsgiref.simple_server import make_server。。。。。class CustomRequestHandler(simple_server.WSGIRequestHandler):。。。。执行报错:NameError: name 'simple_server' is not defined原创 2016-09-05 13:36:45 · 3117 阅读 · 0 评论 -
Python List find方法报错 TypeError: 'str' does not support the buffer interface
deviceList[1].find('device') List使用find方法时,报错误:TypeError: 'str' does not support the buffer interfaceIn python 3, bytes strings and unicodestrings are now two different types. Bytes原创 2016-06-26 20:22:13 · 1322 阅读 · 0 评论 -
Python修改文件权限
os.chmod()方法 此方法通过数值模式更新路径或文件权限。该模式可采取下列值或按位或运算组合之一:stat.S_ISUID: Set user ID on execution.stat.S_ISGID: Set group ID on execution.stat.S_ENFMT: Record locking enforced.stat.S_ISVTX: Save text ima转载 2015-06-30 10:51:05 · 3838 阅读 · 0 评论 -
python: 目录操作
>>> import os>>> os.getcwd() ##显示当前目录'D:\\Python34'>>> os.chdir("d:\\") ##切换目录>>> os.getcwd()'d:\\'>>> os.listdir() ##列出当前目录内容['DLLs', 'Doc', 'hello.py转载 2015-06-30 10:32:02 · 751 阅读 · 0 评论