[Tutor] please help and I will be so happy

D-Man dsh8290@rit.edu
Fri, 20 Apr 2001 15:08:02 -0400


On Fri, Apr 20, 2001 at 09:00:12PM +0200, Anders Arvidsson wrote:
| I would like to know how to recive and print information from a certain webpage by using sockets in Python. 

Don't use sockets.  Sockets are very low level, and you would have to
implement the HTTP protocol on top of them.  Instead use the "httplib"
module that is in the standard distribution.

http://www.python.org/doc/lib/lib.html


HTH,
-D