QueryDict.urlencode(safe=None)
[source]
Returns a string of the data in query-string format. Example:
1 2 3 | >>> q = QueryDict( 'a=2&b=3&b=5' ) >>> q.urlencode() 'a=2&b=3&b=5' |
Optionally, urlencode can be passed characters which do not require encoding. For example:
1 2 3 4 | >>> q = QueryDict(mutable = True ) >>> q[ 'next' ] = '/a&b/' >>> q.urlencode(safe = '/' ) 'next=/a%26b/' |
Please login to continue.