Standalone HTTP parser?

Gabriel Genellina gagsl-py2 at yahoo.com.ar
Thu May 31 16:47:31 EDT 2007


En Thu, 31 May 2007 15:07:00 -0300, Christopher Stawarz  
<cstawarz at csail.mit.edu> escribió:

> Does anyone know of a standalone module for parsing and generating
> HTTP messages?  I'm looking for something that will take a string and
> return a convenient message object, and vice versa.  All the Python
> HTTP parsing code I've seen is either intimately bound to the
> corresponding socket I/O operations (e.g. httplib, httplib2,
> BaseHTTPServer) and/or buried in somebody's framework (e.g. Twisted).

HTTP messages are like RFC 822. You can use the email.Message class to  
generate and parse HTTP headers.

-- 
Gabriel Genellina




More information about the Python-list mailing list