gabriele Domenichini's Library tagged → View Popular
23 May 08
urllib2 - The Missing Manual
import urllib
import urllib2
url = 'http://www.someserver.com/cgi-bin/register.cgi'
values = {'name' : 'Michael Foord',
'location' : 'Northampton',
'language' : 'Python' }
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
the_page = response.read()
Selected Tags
Related Tags
Sponsored Links
Ads by Google
Top Contributors
Groups interested in web
Related Lists on Diigo
-
web20tools
A list of links to support ...
Items: 94 | Visits: 11355
Created by: Kathy Schrock
-
Funny things found on the web
My collection of funny thin...
Items: 10 | Visits: 2720
Created by: Iris Deters
-
Web 2.0
Items: 259 | Visits: 2673
Created by: Peter Van Gils
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo
