05 2018 档案

摘要:解决Office安装错误代码1024:安装程序无法打开注册表项UNKNOWN\Components\ 在安装软件时(比如安装SQLserver、office、Visio)会出现如下的错误提示: 无法打开项 UNKNOWN\Components\................\。 请验证您是否具有足 阅读全文
posted @ 2018-05-28 16:35 Python研究者 阅读(1998) 评论(0) 推荐(0) 编辑
摘要:for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear 阅读全文
posted @ 2018-05-17 12:39 Python研究者 阅读(258) 评论(0) 推荐(0) 编辑
摘要:ps:MYSQLdb只适用于python2.x python3不支持MYSQLdb,取而代之的是pymysql 运行会报:ImportError:No module named 'MYSQLdb' 阅读全文
posted @ 2018-05-13 11:00 Python研究者 阅读(1720) 评论(0) 推荐(0) 编辑
摘要:文章中的ipython notebook和jupyter notebook基本可以互换,不过使用ipython notebook会警告您要使用jupyter notebook。其他没有区别。 正在学习《利用python进行数据分析》一书,下载了编者留在GitHub的资料,发现没法打开里面的ipynb 阅读全文
posted @ 2018-05-12 11:14 Python研究者 阅读(11016) 评论(0) 推荐(0) 编辑
摘要:今天想做个语音读取的小脚本,在网上查了一下发现python里有个pyttsx可以识别文字, 打算通过pip3 install pyttsx安装包,结果报错, 然后试了一下发现不行,去网上查了一下发现pyttsx3才行, pip3 uninstall pyttsx3 pip3 install pytt 阅读全文
posted @ 2018-05-08 15:46 Python研究者 阅读(441) 评论(0) 推荐(0) 编辑
摘要:content = b'{"log_id": 5507183146687669657, "words_result_num": 2, "words_result": [{"location": {"width": 154, "top": 102, "left": 216, "height": 53} 阅读全文
posted @ 2018-05-06 09:21 Python研究者 阅读(426) 评论(0) 推荐(0) 编辑
摘要:1. urllib.urlencode(params) 换成 urllib.parse.urlencode(params) 2. 在python3.3后urllib2已经不能再用,只能用urllib.request来代替 response=urllib2.urlopen(' File "b.py", 阅读全文
posted @ 2018-05-05 23:04 Python研究者 阅读(1371) 评论(0) 推荐(0) 编辑
摘要:import sys import ssl from urllib import request,parse # client_id 为官网获取的AK, client_secret 为官网获取的SK #获取token def get_token(): client_id =API Key clien 阅读全文
posted @ 2018-05-05 22:38 Python研究者 阅读(3266) 评论(0) 推荐(0) 编辑
摘要:qqmusic上的音乐还是不少的,有些时候想要下载好听的音乐,但有每次在网页下载都是烦人的登录什么的。于是,来了个qqmusic的爬虫。 至少我觉得for循环爬虫,最核心的应该就是找到待爬元素所在url吧。下面开始找吧(讲的不对不要笑我) #寻找url: 这个url可不想其他的网站那么好找。把我给累 阅读全文
posted @ 2018-05-05 19:50 Python研究者 阅读(863) 评论(0) 推荐(0) 编辑
摘要:import urllib.requestimgurl="https://ss3.baidu.com/9fo3dSag_xI4khGko9WTAnF6hhy/image/h%3D300/sign=84337ed7c7134954611eee64664f92dd/ac6eddc451da81cbe33 阅读全文
posted @ 2018-05-04 17:50 Python研究者 阅读(778) 评论(0) 推荐(0) 编辑
摘要:cmd中运行 >python untitled2.py 图片的网站 import requests import threading from bs4 import BeautifulSoup import sys import os if len(sys.argv) != 2: print("Us 阅读全文
posted @ 2018-05-04 17:49 Python研究者 阅读(1606) 评论(0) 推荐(0) 编辑
摘要:链接: https://pan.baidu.com/s/1hrgYDzhgQIDrf4KmZxhW1w 密码: h1m6 源码以及运行图 阅读全文
posted @ 2018-05-04 16:04 Python研究者 阅读(270) 评论(0) 推荐(0) 编辑