How do I url unencode in Python?

前端 未结 3 1163
轻奢々
轻奢々 2020-12-11 02:58

Given this:
It%27s%20me%21

Unencode it and turn it into regular text?

3条回答
  •  [愿得一人]
    2020-12-11 03:24

    Use the unquote method from urllib.

    >>> from urllib import unquote
    >>> unquote('It%27s%20me%21')
    "It's me!"
    

提交回复
热议问题