python中unicode编码的url如何正确解码

python爬虫的时候,有时候会遇到类似于 https://detail.tmall.com/item.htm?id\u003d567018911496\u0026ns\u003d1\u0026abbucket\u003d8

这样的url,该如何正确解码呢,参看知乎大牛的解决方法:
python中unicode编码的url如何正确解码_第1张图片

“https://detail.tmall.com/item.htm?id\u003d567018911496\u0026ns\u003d1\u0026abbucket\u003d8”.encode(“latin-1”).decode(“unicode_escape”)
结果
https://detail.tmall.com/item.htm?id=567018911496&ns=1&abbucket=8

你可能感兴趣的:(notebook)