Related operation skills for reading web page source code based on http request and response

零下一度
Release: 2017-06-15 14:55:21
Original
1695 people have browsed it

This article mainly introduces the function of downloading web page source code implemented by Python, and involves the operation skills related to the web page source code reading function implemented by Python based on http request and response. Friends in need can refer to the following

Examples of this article The function of downloading web page source code implemented in Python is implemented. Share it with everyone for your reference, the details are as follows:


#!/usr/bin/python
import httplib
httpconn = httplib.HTTPConnection("www.baidu.com")
httpconn.request("GET", "/index.html")
resp = httpconn.getresponse()
if resp.reason == "OK":
  resp_data = resp.read()
  print resp_data
  print len(resp_data)
httpconn.close()
Copy after login

The source code of the webpage to be downloaded has been read into resp_data

The running effect is as follows:

The above is the detailed content of Related operation skills for reading web page source code based on http request and response. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!