【已解决】Python中xml.etree.ElementTree出错:AttributeError: module ‘xml’ has no attribute ‘etree’
crifan 6年前 (2018-10-11) 2563浏览 0评论
折腾: 【未解决】PySpider中PyQuery中把得到的html的text转换为纯文本字符串 期间,用代码: import xml def htmlToString(htmlText): return ''.join...
crifan 6年前 (2018-10-11) 2563浏览 0评论
折腾: 【未解决】PySpider中PyQuery中把得到的html的text转换为纯文本字符串 期间,用代码: import xml def htmlToString(htmlText): return ''.join...
crifan 6年前 (2018-08-24) 2309浏览 0评论
折腾: 【未解决】Flask中如何在其他模块中引入当前的app或者全局单一实例的app 期间,给app.py中用了: def create_rest_api(app): from resources.qa import RobotQaAPI...
crifan 6年前 (2018-08-10) 958浏览 0评论
折腾: 【未解决】Django中如何自定义返回分页数据 期间,想要获取: /conf/development/settings.py # django-restframework and jwt settings REST_FRAMEWORK = {...
crifan 8年前 (2016-09-01) 5167浏览 0评论
折腾: [已解决]Flask-Login出错:AttributeError AnonymousUserMixin object has no attribute openid 之后,参考: Flask-Login — Flask-Login 0.3....
crifan 8年前 (2016-09-01) 6539浏览 0评论
之前已经解决了: [已解决]Flask-Login出错:NameError: global name ‘current_user’ is not defined 但是此处又出现: Traceback (most rece...
crifan 8年前 (2016-09-01) 4869浏览 1评论
折腾: [记录]如何在Flask中实现记住微信公众号的用户帐户的登录状态 期间,用代码: @app.before_request def before_request(): “”” 这里是全局...
crifan 8年前 (2016-08-31) 13316浏览 0评论
Python代码: from datetime import datetime, date, time, timedelta curTimestamp = time.time() gLog.debug(“type(...
crifan 8年前 (2016-08-29) 3266浏览 0评论
在: [已解决]SQLAlchemy中添加枚举类型字段 之后,代码: /Users/crifan/dev/dev_root/daryun/SIPEvents/sourcecode/flask/db_create.py db.drop_all()...
crifan 12年前 (2012-10-06) 2928浏览 1评论
转自:Python 设置系统默认编码 python在安装时,默认的编码是ascii,当程序中出现非ascii编码时,python的处理常常会报这样的错 UnicodeDecodeError: ‘ascii’ co...