vote up 1 vote down star

Specifically, are there any libraries that do not use sockets? I will be running this code in Google App Engine, which does not allow the use of sockets.

Google app engine does allow the use of urllib2 to make web requests.

I've been trying to get mechanize to work, since that what I've used before, but if there's something easier, I'd rather do that.

thanks, Mark

flag

29% accept rate
What problems are you having with mechanize? It uses urllib2, so it should be fine, in theory. – Nick Johnson Jun 7 at 21:44
but it also uses sockets . . . – MStodd Jun 8 at 15:09
Directly, or only through urllib? As alamar has already pointed out, GAE ships with a custom implementation of urllib that doesn't use sockets, instead using the urlfetch API. – Nick Johnson Jun 9 at 18:22
it uses urllib2 and also uses sockets. – MStodd Jun 10 at 22:22
From what I can tell, it only uses sockets for non-HTTP protocols, so that shouldn't be a problem. – Nick Johnson Jun 11 at 7:46
show 1 more comment

3 Answers

vote up 0 vote down

urlfetch seems to do the same thing that you are looking for.

link|flag
vote up 0 vote down

To answer your question, twill and webunit are some other Python programmatic web browsing libraries. However, I'd be surprised if any of them worked off the bat with Google App Engine given the restricted stdlib.

link|flag
vote up -3 vote down

How would you download pages without using sockets? That's like eating without mouth. Maybe GAE have some kind of I.V. API, tho.

link|flag
2  
Eating without months? GAE does allow the use of urllib2, and also has it's own url fetch API (which uses urllib2 I think). – MStodd Jun 5 at 19:24
1  
.. and urllib2 uses httplib, which uses sockets. you need sockets to do http, and therefore anything "web" needs sockets – corey goldberg Jun 5 at 19:26
2  
yes, and google app engine doesn't expose them to developers, but does expose their implementation of urllib2 – MStodd Jun 5 at 19:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.