Hacker News new | ask | show | jobs
by jwilk 2786 days ago
urllib.parse.unquote() is unrelated to HTML. It undoes URL-encoding:

https://docs.python.org/3/library/urllib.parse.html#urllib.p...

In Python ≥ 3.4, you can use html.unescape() to decode HTML entities:

https://docs.python.org/3/library/html.html#html.unescape

1 comments

You are 100% correct. I mixed the two encodings up. Thanks.