在windows环境下,转到上面的目录。
1.使用"cd\"才能转到c的根目录下面
2.转到python27目录需要在前面加上"cd"才能转过去
3.转到script也是一样的。
4.然后按照教程就可以了。
1.使用"cd\"才能转到c的根目录下面
2.转到python27目录需要在前面加上"cd"才能转过去
3.转到script也是一样的。
4.然后按照教程就可以了。
2016-06-14
可以自行下载插件,解压后拷贝到python安装目录中的lib目录下,打开cmd进入插件的目录,输入python setup.py install,即可安装。
2016-06-13
对于初学者来说太快了,很难理解。为什么要一次过介绍三种方法呢?为什么不能讲一个方法就演示一遍呢?感觉就是照着PPT读一样,那我不如直接看PPT算了,还需要老师干什么。
2016-06-12
import urllib.request
import http.cookiejar
print('third method')
cj=http.cookiejar.CookieJar()
opener=urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3=urllib.request.urlopen(url)
print(cj)
print(response3.read())
import http.cookiejar
print('third method')
cj=http.cookiejar.CookieJar()
opener=urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3=urllib.request.urlopen(url)
print(cj)
print(response3.read())
2016-06-12
仅输出1条记录就craw failed,检查html_parser模块get_new_data方法里title_node的赋值,在最后find前有个括号).find('h1')
2016-06-08
python3.5第三段代码,urllib2在3.5中为urllib.request
print("第三种方法")
cj = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3 = urllib.request.urlopen(url)
print(response3.getcode())
print(len(response3.read()))
print("第三种方法")
cj = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
response3 = urllib.request.urlopen(url)
print(response3.getcode())
print(len(response3.read()))
2016-06-07