[Answered ]-What's the best way to post data from Django?

2👍

urllib2 sounds like a completely reasonable way to solve your problem. However you might want to take a look at the requests library: http://docs.python-requests.org/en/v0.10.7/index.html It wraps urllib2 so that you can make the HTTP requests you want and maintain your sanity.

Leave a comment