I want a fast way to grab a URL and parse it while streaming. Ideally this should be super fast. My language of choice is Python. I have an intuition that twisted can do this but I'm at a loss to find an example.
|
|
If you need to handle HTTP responses in a streaming fashion, there are a few options. You can do it via
This works because Another approach is to hook into things at the
Finally, there will be a new HTTP client API soon. Since this isn't part of any release yet, it's not as directly useful as the previous two approaches, but it's somewhat nicer, so I'll include it to give you an idea of what the future will bring. :) The new API lets you specify a protocol to receive the response body. So you'd do something like this:
|
||
|
|
|
|
You only need to parse a single URL? Then don't worry. Use urllib2 to open the connection and pass the file handle into ElementTree. Variations you can try would be to use ElementTree's incremental parser or to use iterparse, but that depends on what your real requirements are. There's "super fast" but there's also "fast enough." It's only when you start having multiple simultaneous connections where you should look at Twisted or multithreading. |
||||||
|
