python
一切归于平静
这个作者很懒,什么都没留下…
展开
-
python编码
转自:https://blog.csdn.net/ym01213/article/details/89083428一、了解字符编码的知识储备 1. 文本编辑器存取文件的原理(nodepad++,pycharm,word) 打开编辑器就打开了启动了一个进程,是在内存中的,所以在编辑器编写的内容也都是存放与内存中的,断电后数据丢失,因而需要保存到硬盘上,点击保存按钮,就从内存中把...转载 2019-11-11 18:30:26 · 89 阅读 · 0 评论 -
python GB2312乱码问题
字符串在Python内部的表示是unicode编码,因此,在做编码转换时,通常需要以unicode作为中间编码,即先将其他编码的字符串解码(decode)成unicode,再从unicode编码(encode)成另一种编码。decode的作用是将其他编码的字符串转换成unicode编码,如str1.decode('gb2312'),表示将gb2312编码的字符串str1转换成...原创 2019-11-05 18:57:38 · 625 阅读 · 0 评论 -
python获取当前目录路径和文件
获取当前目录和文件方法:import osprint(sys.argv[0]) 输出本文件print(os.getcwd()) 获取当前工作目录路径print(os.path.abspath('.')) ...原创 2019-11-05 17:15:34 · 886 阅读 · 0 评论 -
python json.dumps中文乱码问题
json.dumps在默认情况下,对于非ascii字符生成的是相应的字符编码,而非原始字符调整json.dumps的参数如下:原创 2019-11-04 10:59:38 · 212 阅读 · 0 评论 -
python爬取网页乱码解决方案
importchardetimportrequestsurl='http://www.100253.com/'d1=requests.get(url)codesty=chardet.detect(d1.content)a=d1.content.decode(codesty['encoding'])a.encode('utf-8')原创 2019-08-27 17:07:53 · 231 阅读 · 0 评论 -
python操作cookie
(一)方法 方法 简单说明 add_cookie(cookie_dict) 在当前会话中添加cookie信息 cookie_dict:字典,name和value是必须的 delete_all_cookies() 在当前会话中删除所有cookie信息 ...转载 2019-06-28 11:02:46 · 5154 阅读 · 0 评论 -
Scrapy 如何设置日志
转:https://www.jianshu.com/p/99d4426c4366Logging 模块刚开始接触的时候,我看官方文档只说了怎么设置日志,没有讲去哪里看日志。然后参考了 python 关于 logging 的文档,我发现可以自定义一个输出的文件。# 在你需要输出日志的地方设置,比如 your_spider.pyimport logging# level 表示级别lo...转载 2019-06-17 20:32:17 · 1391 阅读 · 0 评论 -
windows pip is configured with locations that require TLS/SSL, however the ssl module in Python i...
转:https://www.jianshu.com/p/4be85de84d2a本机环境:Windows 10 64位Anaconda python 3.7报错信息:pip is configured with locations that require TLS/SSL, however the ssl module in Python is not availabl...转载 2019-06-15 15:38:54 · 8561 阅读 · 8 评论 -
ImportError:在python 3.6 下没有名为'config_parser'的模块
我在CentOS中运行ngxtop(查看nginx日志):找不到config_parser[XXX ~]# /usr/local/python3/bin/ngxtopTraceback (most recent call last): File "/usr/local/python3/bin/ngxtop", line 6, in <module> from ngxt...原创 2019-05-13 11:24:13 · 1016 阅读 · 1 评论 -
python依赖库路径
python库分标准库和第三方库输出依赖库: import sys sys.path标准库目录: home 目录/pythonXX.XX/lib第三方库目录: 在 lib 下的 site-packages 目录下 home 目录/pythonXX.XX/lib/pythonXX.XX/site-pack...原创 2019-05-13 11:18:41 · 4664 阅读 · 0 评论