码迷,mamicode.com
首页 > 编程语言 > 详细

Python urllib爬取百度首页

时间:2017-11-14 23:21:47      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:url   imp   安装python   alt   输出   技术分享   https   text   pen   

官网下载安装python
在VS code里面安装python插件 https://www.cnblogs.com/bloglkl/archive/2016/08/23/5797805.html

  • cmd进入python输入
/*
没报错则证明urllib安装成功
*/
from urllib.request  import urlopen
  • 直接在cmd输入
pip install beautifulsoup4//安装beautifulsoup4
  • cmd进入python输入
/*
没报错验证beautifulsoup4安装
*/
from bs4 import BeautifuSoup
  • 爬取百度首页
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import io  
import sys
from urllib import request
sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding=‘utf8‘) #改变标准输出的默认编码  
resp = request.urlopen("http://www.baidu.com/")
print (resp.read().decode("utf-8"))

技术分享

Python urllib爬取百度首页

标签:url   imp   安装python   alt   输出   技术分享   https   text   pen   

原文地址:http://www.cnblogs.com/jieshendada/p/7835218.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!