python--爬虫01

首先要引入urllib包
利用urlopen打开需要采集的网址

import urllib.request
url = "http://www.baidu.com"
htmlobj = urllib.request.urlopen(url)
html = htmlobj.read()  #二进制的代码
html = html.decode("utf-8")  #解码
print(html)

################################################## 

获取到的网页代码



    
    
    
    
    
    
     
    
    
    
    
    
    
    

.................................................

你可能感兴趣的:(Python,python爬虫)