I've been using urllib2 very effectively - do be careful with it though - assuming you're planning on using it in view code - the time it spends waiting for something is the time that your user spends waiting.
-joe On Thu, Apr 17, 2008 at 4:31 PM, Russell Keith-Magee <[EMAIL PROTECTED]> wrote: > > On Fri, Apr 18, 2008 at 12:51 AM, Dan-Cristian Bogos > <[EMAIL PROTECTED]> wrote: > > Folks, > > > > I was wondering what is the best way to send out http requests from within > > django. Shall I use an external library (like urllib) or use some django > > internals? > > Eg: I want to POST some info on some other django site. > > Django is a framework for a HTTP server; it has almost no built-in > client capabilities. You will need to use urllib or something similar. > > Yours, > Russ Magee %-) > > > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

