can wxpython do this?

Cameron Laird claird at starbase.neosoft.com
Tue Sep 17 12:52:09 EDT 2002


In article <am7hrt$9b3$1 at news01bb.so-net.ne.jp>,
Erick <erick_papadakis at REMOVEFORSPAM.yahoo.com> wrote:
>sorry for restating, but is there a way for me to connect to the Internet,
>make a call to a webserver as a browser would do, retrieve data and display
>it inside my application?
			.
			.
			.
There are too many ways to do this.

You might start with
  from urllib import urlopen
  
  URL = "http://www.python.org"
  page = urlopen(URL).read()    
  print page
-- 

Cameron Laird <Cameron at Lairds.com>
Business:  http://www.Phaseit.net
Personal:  http://phaseit.net/claird/home.html



More information about the Python-list mailing list