parse query string with urllib in Python 2.4

后端 未结 3 490
轻奢々
轻奢々 2021-02-05 21:16

Using Python2.4.5 (don\'t ask!) I want to parse a query string and get a dict in return. Do I have to do it \"manually\" like follows?

>>> qs = \'first=         


        
3条回答
  •  死守一世寂寞
    2021-02-05 22:03

    this solves the annoyance:

    d = dict(urlparse.parse_qsl( qs ) )
    

    personally i would expect there two be a built in wrapper in urlparse. in most cases i wouldn't mind to discards the redundant parameter if such exist

提交回复
热议问题