生成requirements.txt文件pip freeze > requirements.txt安装requirements.txt依赖pip install -r requirements.txt...
blzxadmin179 2个月前 (2019-12-16) 5℃ 暂无评论 1喜欢
问题如何获取图片的物理尺寸,而非(width, height)?代码以女神图为例#! -*- coding: utf-8 -*-import requestsimport iourl = "http://s1.sinaimg.cn/large/001Db1PVzy7qxVQWM...
blzxadmin179 2个月前 (2019-12-12) 11℃ 暂无评论 1喜欢
pyspide通过默认安装的wsgidav是最新版本,启动pyspide运行时会报ValueError: Invalid configuration:- Deprecated option 'domaincontroller': use 'http_authe...
blzxadmin179 2个月前 (2019-12-10) 13℃ 暂无评论 1喜欢
import sysimport logging# 默认的配置LOG_LEVEL = logging.INFO ## 默认等级LOG_FMT = '%(asctime)s %(filename)s [line:%(lineno)d] %(levelname)s: %(message)s...
blzxadmin179 2个月前 (2019-12-09) 12℃ 暂无评论 1喜欢
OCR,即Optical Character Recognition,光学字符识别,是指通过扫描字符,然后通过其形状将其翻译成电子文本的过程,对应图形验证码来说,它们都是一些不规则的字符,这些字符是由字符稍...
blzxadmin179 2个月前 (2019-12-09) 11℃ 暂无评论 1喜欢
PIL:Python Imaging Library,已经是Python平台事实上的图像处理标准库了。PIL功能非常强大,但API却非常简单易用。由于PIL仅支持到Python 2.7,加上年久失修,于是一群志愿者在PIL...
blzxadmin179 2个月前 (2019-12-09) 12℃ 暂无评论 1喜欢
from urllib.parse import urlparseres = urlparse('https://pixabay.com/get/52e5d1434c54aa14f6d1867dda6d367a103bdfe055586c4870287ed3904bc55cbd/norway-4540666_1...
blzxadmin179 2个月前 (2019-12-08) 10℃ 暂无评论 1喜欢
具体方法就是捕获错误并重新运行程序,案例如下:# 获取一个地区二手房信息的总页数 def get_total_page(browser, url): browser.get(url) try: time.sleep(4)...
blzxadmin179 3个月前 (2019-11-14) 20℃ 暂无评论 1喜欢
很多人在群里问,这个下拉框定位不到、那个弹出框定位不到…各种定位不到,其实大多数情况下就是两种问题:1 有frame,2 没有加等待。殊不知,你的代码运行速度是什么量级的,而浏览器...
blzxadmin179 3个月前 (2019-11-14) 15℃ 暂无评论 1喜欢
最近在网站源码上添加PHP采集功能在做采集时老是报Internal Server Error错误,通过优化代码也没有找到好的解决方法。也就时不时要去刷新页面很是麻烦,于是想到使用Python来监...
blzxadmin179 3个月前 (2019-11-14) 11℃ 暂无评论 1喜欢