configparser 配置读取模块安装命令:pip install configparser1.基本的读取配置文件-read(filename) 直接读取ini文件内容-sections() 得到所有的section,并以列表的形式返回...
blzxadmin179 2周前 (2020-02-08) 3℃ 暂无评论 0喜欢
COOKIE = { "Cookie": '__cfduid=def03b19933fd994bff59a377ec396ee01580718716; Hm_lvt_14b14198b6e26157b7eba06b390ab763=1580801448; Hm_lvt_526caf4e20c21f06a4...
blzxadmin179 2周前 (2020-02-08) 2℃ 暂无评论 0喜欢
sess = requests.Session()getres = sess.get(pageinfo['curl'])#对获取的网页源码进行解码d = pq(getres.content.decode('gb2312'))...
blzxadmin179 2周前 (2020-02-08) 3℃ 暂无评论 0喜欢
数据库返回默认是以 tuple 类型返回(为了安全起见),但有时候元组返回很不方便,如果能以字典的形式返回那就太棒了~MySQL 设置返回字典类型是在连接数据库时设置cursorclass = py...
blzxadmin179 2周前 (2020-02-08) 3℃ 暂无评论 0喜欢
Pyquery使用手册:https://pythonhosted.org/pyquery/api.html 参考手册发现一个获取下一页的方法nexturl = next.filter(lambda i: response.doc(this).text().strip() == &#...
blzxadmin179 2周前 (2020-02-04) 5℃ 暂无评论 0喜欢
CookieJar是对于Cookie类的一个类似管理类的封装。类继承图,CookieJar是基类CookieJar类有一些子类,分别是FileCookieJar,MozillaCookieJar,LWPCookieJar。CookieJar:管理HTTP co...
blzxadmin179 1个月前 (2019-12-27) 7℃ 暂无评论 0喜欢
安装pygamepip install pygame装完就直接跑代码啦,很短的import timeimport pygamefile=r'C:\Users\chan\Desktop\Adele - All I Ask.mp3'pygame.mixer.init()print(...
blzxadmin179 1个月前 (2019-12-26) 6℃ 暂无评论 0喜欢
pip install报SSLError错误,提示SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed,requests.get请求也无法返回数据,...
blzxadmin179 1个月前 (2019-12-26) 6℃ 暂无评论 0喜欢
每种异常都有不同的名称,在实际开发中,不可能把每种异常都涉及到,这里就要用到今天提到的这点:万能异常。万能异常:万能异常:Exception,可以捕获任意异常。什么时候使用万能异常呢?1...
blzxadmin179 2个月前 (2019-12-25) 9℃ 暂无评论 0喜欢
wxFormBuilder是一个开源,跨平台的所见即所得的图形用户界面生成器,可以翻译wxWidget GUI设计成C++,Python和PHP或XML格式。//原文出自【易百教程】,商业转载请联系作者获得授权...
blzxadmin179 2个月前 (2019-12-23) 6℃ 暂无评论 0喜欢