在线工具

2020-07-06     3

python 安装phantomjs后,运行提示这个: phantomjs: error while loading shared libraries: libfontconfig.so.1: cannot open shared object file: 执行以下安装命令: yum -y install fontconfig-devel

2020-07-09     5

# 图像处理标准库 from PIL import Image # web测试 from selenium import webdriver # 鼠标操作 from selenium.webdriver.common.action_chains import ActionChains # 等待时间 产生随机数 import time, random # 滑块移动轨迹 def get_track

2020-07-09     2

python3在写入文件open()的时候,出现:TypeError: write() argument must be str, not dict,报错。 可以使用json,格式写入 cookies = '某某某数组' open("sgcookie.txt", "w").write(cookies) 改成后 cookies = '某某某数组' open("sgcookie.txt", "

2020-07-11     2

今天运行python3程序的时候,出现以下报错: No module named 'execjs' (python3) 解决方案: python2 pip install PyExecJS python3 pip3 install PyExecJS

2020-07-11     3

python也有编码和解码的用法,如下 函数 urlencode:     urllib.parse.quote(string, safe='/', encoding=None, errors=None) urldecode:     urllib.parse.unquote(string, encoding='utf-8', errors='replace') 最终代码: impo

2020-07-11     6

当运行一个django项目后,出现了这样的一个错误,如图: ![](https://cx.lmcjl.com/uploads/202007/5f09394b2cc8c_5f09394b.png) CSRF verification failed. Request aborted. You are seeing this message because this site requires

2020-07-11     5

我把request内置库和 requests库 给搞混了 requests使用来发送请求的, request 而是用来获取数据的 别看只有一个单词只差,却让我找了大半天 requests.post(***) 发送请求 post必须是小写的 request.POST.get() 是用来获取数据的 这是错误的代码 re_dict = request.POSt(access_token

2020-07-19     20

今天运行python3 代码的时候,提示这个: ModuleNotFoundError: No module named 'win32api' 和 ModuleNotFoundError: No module named 'win32com' 解决方法: pip3 install pypiwin32 记得关闭程序和cmd重启打开

2020-07-21     13

python3 word转pdf python3 office2007及以上 关键函数: #doc --> pdf def doc2pdf(input_file): word = Dispatch('Word.Application') doc = word.Documents.Open(input_file) doc.SaveAs(input_file.repla

2020-08-23     5

今天python3项目运行出现这个错误: No module named 'newspaper' 最佳答案 是的,请参阅上面提到的用户指南文档.但是,请注意 Python3是: pip3 install newspaper3k 和Python 2.x是: pip install newspaper

2020-09-13     3

一、获取索引页。 添加好headers,params直接get请求即可。 二、在索引页中获取详情页的url。 ![](https://cx.lmcjl.com/uploads/202009/5f5d86273e2cf_5f5d8627.png) 在浏览器中直接打开这个url,仔细看浏览器上方中url,你会发现url会跳转,就是说他进行了重定向。这里我们需要使用fiddler这个抓包工具对他

2020-09-13     2

今天运行项目python3 报错: ModuleNotFoundError: No module named 'pymongo' 解决方法: pip3 install pymongo