Re: urllib, caching

2006-02-15 Thread Steve Holden
AndrewJ wrote: > I've got code: > > f= urllib.urlopen("http://www.stuff/nb5.php";) ; > > This connects to a page that changes in real time. Works ok, and > retrieves the data the first time. > > But then any subsequent calls all return the same data, even though the > web page itself has change

urllib, caching

2006-02-15 Thread AndrewJ
I've got code: f= urllib.urlopen("http://www.stuff/nb5.php";) ; This connects to a page that changes in real time. Works ok, and retrieves the data the first time. But then any subsequent calls all return the same data, even though the web page itself has changed. Is there caching going on her