【已解决】Python中判断本地和网络图片的分辨率等基本信息
crifan 6年前 (2018-11-13) 1203浏览 0评论
去写爬虫期间,发现有些图片地址,虽然是有的,但是实际上是1×1的空图片: https://images-na.ssl-images-amazon.com/images/P/141972486X.jpg 而另外一些图片地址,才是正常的: ...
crifan 6年前 (2018-11-13) 1203浏览 0评论
去写爬虫期间,发现有些图片地址,虽然是有的,但是实际上是1×1的空图片: https://images-na.ssl-images-amazon.com/images/P/141972486X.jpg 而另外一些图片地址,才是正常的: ...
crifan 6年前 (2018-08-08) 1369浏览 0评论
reactjs中js中有个列表: this.state.dialogList 想要实现类似于Python中的range 且是倒叙,5,4,3,2,1的那种 然后去处理。 js python range JavaScript function sim...
crifan 7年前 (2018-05-31) 11489浏览 3评论
代码: try: cur.execute(executeSql) db.commit() print("[%5d](%s) (%s)" % (curRowNum, dialogA, dialogB)) ex...
crifan 7年前 (2018-04-20) 5466浏览 0评论
折腾: 【已解决】Mac中把Python3的pip重新换成Python2的pip 期间,去试试easy_install,结果有问题: <code>➜ robotDemo which easy_install /usr/bin/easy_...
crifan 7年前 (2018-04-20) 10557浏览 0评论
折腾: 【已解决】Mac本地用supervisor去管理gunicorn的Python3的Flask 期间发现:不知道何时,Mac默认的pip,竟然变成python3的了。 需要重新把Mac本地的实际上是pip3的pip去重新安装回来python2的...
crifan 8年前 (2017-05-06) 4841浏览 0评论
折腾: 【已解决】Mac中安装Python的第三方库:openpyxl 期间,需要去,在不影响已有的Mac中的Python2的情况下,去安装Python3 mac python 3 Python Releases for Mac OS X | Pyt...
crifan 9年前 (2015-11-20) 14905浏览 0评论
flask出错。 搜: flask “message”: “The browser (or proxy) sent a request that this server could not under...
crifan 9年前 (2015-11-20) 9468浏览 0评论
搜: flask request get_json None 参考: python – Flask request and application/json content type – Stack Overflow ...
crifan 9年前 (2015-11-20) 2691浏览 0评论
想要去了解python中的property函数 搜: python property函数 参考: Python descriptor 以及 内置property()函数 – 真实的活 – 博客园 Python进阶之“属性(p...
crifan 10年前 (2015-07-22) 7632浏览 0评论
【问题】 别人遇到的Python代码出错: 【解决过程】 1.另外某人说的: 装就行了呗 结果其回复: 用pip install utils也没用啊 2.此处,针对该问题: (1)(通过去打开Python的自带...