Re: Instrumented web proxy

2008-03-28 Thread Andrew McLean
Paul Rubin wrote: > Andrew McLean <[EMAIL PROTECTED]> writes: >> I would like to write a web (http) proxy which I can instrument to >> automatically extract information from certain web sites as I browse >> them. Specifically, I would want to process URLs that match a >> particular regexp. For thos

Re: Instrumented web proxy

2008-03-27 Thread Paul Rubin
Andrew McLean <[EMAIL PROTECTED]> writes: > I would like to write a web (http) proxy which I can instrument to > automatically extract information from certain web sites as I browse > them. Specifically, I would want to process URLs that match a > particular regexp. For those URLs I would have code

Re: Instrumented web proxy

2008-03-27 Thread Miki
Hello Andrew, > Tiny HTTP Proxy in Python looks promising as it's nominally simple (not > many lines of code) > > http://www.okisoft.co.jp/esc/python/proxy/ > > It does what it's supposed to, but I'm a bit at a loss as where to > intercept the traffic. I suspect it should be quite straightforward,