[Answered ]-Posting data to another Site with Django

2👍

urllib2 is the appropriate way to post data if you’re looking for python standard library. Django doesn’t provide a specific method to do this (as well as it shouldn’t). Django goes out of it’s way to not simply reinvent tools that already exist in the the standard library (except email…), so you should never really fear using something out of the python standard library.

requests is also great, but not standard library. Nothing wrong with that though.

👤John

Leave a comment