(一)爬蟲入門

# -*- coding: utf-8 -*- import urllib2 import urllib   #最簡單的網頁內容抓取 request = urllib2.Request("http://www.baidu.com") response = urllib2.urlopen(request) print response.read() #post方式發送請求 (在URL中看不到參數值
相關文章
相關標籤/搜索