Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to convert a Python dictionary to a string for use as URL parameters. I am sure that there is a better, more Pythonic way of doing this. What is it?

x = ""
for key, val in {'a':'A', 'b':'B'}.items():
    x += "%s=%s&" %(key,val)
x = x[:-1]
share|improve this question
1  
+1 for the word Pythonic. Should give a corresponding -1 for that word's vagueness. – TMB Sep 13 '11 at 16:27

2 Answers

up vote 50 down vote accepted

Use urllib.urlencode(). It takes a dictionary of key-value pairs, and converts it into a form suitable for a URL (e.g., key1=val1&key2=val2).

share|improve this answer
7  
1  
if you want to make a url with repetitive params for example: ?p=1&p=2&p=3 then a = (('p',1),('p',2), ('p', 3)); urllib.urlencode(a) the result is 'p=1&p=2&p=3' – panchicore Jun 27 '12 at 17:05

What you have done is quite ok.

Maybe you can directly use a list comprehension, and use the join method to regroup the terms, separated by a & (no need to remove the last character).

dico = {'a':'A', 'b':'B'}
x = "&".join( "%s=%s"%item for item in dico.items() )

EDIT: the urllib.urlencode will also ensure that are converted in ASCII, that is not done, here. But this is the home-made pythonic way to do it ;-) (no extra library required)

EDIT2: since the question was "how to write this code in a more pythonic way", I believe that my answer is still correct (only one simple list comprehension). Of course, since the urllib.urlencode is doing it, with correct encoding, it's better to use it.

share|improve this answer
It's not at all pythonic to rewrite a function that the standard library provides. – Triptych Aug 5 '09 at 15:16
1  
it's not OK: you need to escape key and val. URL encoding is surprisingly subtle, best to use the library function. – Nelson Aug 5 '09 at 15:23
4  
urllib is included in the Python standard library, so it's not really an "extra library". – mipadi Aug 5 '09 at 15:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.