I'm using Django 1.1 on a project, and I ran into a problem.
I need to send a GET request to an external URL. I want to create a method that would act like this:
def Send_msg(object):
converted_url = "http://example.com/some/link/?title="
+ object.title + "&body=" + object.body
LoadURL(converted_url)
return True
Another problem that title and body should be translated to equivalent of rawurlencode() in PHP
I tried to search in Django Docs, but no success.