摘要: print(ss.encode('utf-8').decode("unicode-escape")) 阅读全文
posted @ 2019-10-15 09:57 御虫师 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 去年建立了自己网站,一直没有来博客园。之后换了服务器,网站准备过段日子新建。 阅读全文
posted @ 2019-06-17 10:14 御虫师 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 今天修改了博客后缀域名,可能有部分博客404不能访问,如果不能访问请联系博主。修改一下就好 阅读全文
posted @ 2018-04-07 23:43 御虫师 阅读(239) 评论(0) 推荐(0) 编辑
摘要: http://chromedriver.storage.googleapis.com/index.html 阅读全文
posted @ 2018-04-07 12:15 御虫师 阅读(161) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/you_are_my_dream/article/details/60610179 本机配置如下: python2.7.12 scrapy1.1.1 scrapyd1.1.0 看了好多scrapyd的部署博客,发现基本上都是在麦子学院(链接)里面复制粘贴出来 阅读全文
posted @ 2018-03-14 20:52 御虫师 阅读(1481) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/wm9028/article/details/79463509 File Zilla遇到的问题: 状态: 正在连接 118.25.3.XX… 响应: fzSftp started, protocol_version=8 命令: open “userftp@1 阅读全文
posted @ 2018-03-11 16:36 御虫师 阅读(2994) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/big_neal/article/details/69236181 最近学习python,因为学习的是python3,但是目前所有的linux系统默认版本都是python2,故百度了一下,找到一个不错的方法。 此方法适用于ubuntu和debian 其他发行 阅读全文
posted @ 2018-03-06 19:38 御虫师 阅读(394) 评论(0) 推荐(0) 编辑
摘要: chromeOptions = webdriver.ChromeOptions()print(proxy)chromeOptions.add_argument("'--proxy-server={}".format(proxy))browser = webdriver.Chrome(chrome_o 阅读全文
posted @ 2017-12-19 18:47 御虫师 阅读(5312) 评论(1) 推荐(0) 编辑
摘要: https://digi.bib.uni-mannheim.de/tesseract/ tesseract-orc下载 在使用 pytesseract中的image_to_string时报错如下: Python3.5版本,已经正确安装了Pillow和pytesseract模块,安装方法请百度,使用P 阅读全文
posted @ 2017-12-18 20:05 御虫师 阅读(274) 评论(0) 推荐(0) 编辑
摘要: from __future__ import unicode_literalsimport pymongoimport jsonconn = pymongo.MongoClient(host='127.0.0.1',port=27017)db = conn['first_db']# print(db 阅读全文
posted @ 2017-12-13 10:57 御虫师 阅读(490) 评论(0) 推荐(0) 编辑