Python uses get to search Baidu and saves the first page of search results

Source: Internet
Author: User

Python uses get to search Baidu and saves the first page of search results

Python uses get to search Baidu and saves the first page of search results

 

Author: vpoet

Date: about summer

Note: Do not worry about how I feel.

 

 

# Coding: utf-8import urllibimport urllib2import re "use GET to query on Baidu search engine this example shows how to generate GET string and request. "if _ name __= =" _ main _ ": url =" http://www.baidu.com/s "search = [('w', 'qq')] getString = url + "? "+ Urllib. urlencode (search) req = urllib2.Request (getString) fd = urllib2.urlopen (req) baiduResponse = "" while 1: data = fd. read (1024) if not len (data): break baiduResponse + = data fobj = open ("baidu.html", 'w') fobj. write (baiduResponse) fobj. close ()


 

The web page saved by searching QQ is:

Open and check:

Then compare it with Baidu's search QQ results:


Yes, it is the same. The webpage we saved has no images because the html structure of the webpage we saved has not downloaded the image link from the server.

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.