为了账号安全,请及时绑定邮箱和手机立即绑定

Python开发简单爬虫

蚂蚁帅帅 全栈工程师
难度初级
时长 1小时14分
学习人数
综合评分9.67
646人评价 查看评价
9.9 内容实用
9.6 简洁易懂
9.5 逻辑清晰

最新回答 / 慕粉1461918066
一个小错误,已经解决了。。
Python第三种方法
import urllib2
import cookielib
url = "http://www.baidu.com/"
print 'third'
cj = cookielib.CookieJar()
opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))
urllib2.install_opener(opener)
response3 = urllib2.urlopen(url)
print response3.getcode()
print cj
print response3.read()
Python2.7.12 第二种方法
————————————————————————————————
import urllib2
import cookielib
url = "http://www.baidu.com/"
print 'second'
request = urllib2.Request(url)
request.add_header('user-agent', 'Mozilla/5.0')
response2 = urllib2.urlopen(request)
print response2.getcode()
print len(response2.read())
Python2.7.12
————————————————————————————————
import urllib2
import cookielib

url = "http://www.baidu.com/"

print 'first'

response1 = urllib2.urlopen(url)
print response1.getcode()
print len(response1.read())

最新回答 / 宇娃
find_all是beautifulsoup里面的一个模块cmd安装方法:C:\Python27\Scripts>pip  install Beautifulsoup
#增加一些东西
def output_html(self):
fount=open("output.html","w",encoding='utf-8')
fount.write("<meta charset=\'utf-8\'>")
大家的路还长着呢
我的输出是这个C:\Python27\python.exe D:/pycharm/xiexie/baike_spider/spider_main.py
craw 1 : None
craw failed

Process finished with exit code 0
为什么?

最新回答 / 慕粉4289539
运行以后是这样的C:\Python27\python.exe D:/pycharm/xiexie/baike_spider/spider_main.pycraw 1 : Nonecraw failed Process finished with exit code 0
是在是厉害 只有听到这里才感觉出python的强大
真是厉害,感触很多
课程须知
本课程是Python语言开发的高级课程 1、Python编程语法; 2、HTML语言基础知识; 3、正则表达式基础知识;
老师告诉你能学到什么?
1、爬虫技术的含义和存在价值 2、爬虫技术架构 3、组成爬虫的关键模块:URL管理器、HTML下载器和HTML解析器 4、实战抓取百度百科1000个词条页面数据的抓取策略设定、实战代码编写、爬虫实例运行 5、一套极简的可扩展爬虫代码,修改本代码,你就能抓取任何互联网网页!

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消