使用httplib解析Python响应

时间:2010-02-02 04:05:09

标签: python urllib httplib

连接到套接字并使用.read()捕获响应后,如何解析输入流和读取行?

我看到没有任何CRLF的数据返回

<html><head><title>Apache Tomcat/6.0.16 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /index.html</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/index.html</u></p><p><b>description</b> <u>The requested resource (/index.html) is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.22</h3></body></html>

2 个答案:

答案 0 :(得分:3)

您必须解析HTML。 Python有几种解析HTML的方法 - 其中一种方法是内置的HTMLParser模块。另一种可能更好的方法是第三方BeautifulSoup模块。

nice article解释了处理HTML处理的许多其他问题。您还可以阅读(免费在线)Dive into Python book relevant chapter

答案 1 :(得分:0)

使用HTML解析器。 Beautiful Soup似乎很受欢迎。