I got the url:
url = 'https://datastudio.google.com/reporting/c295033f-107d-431c-b140-6f4970c4a7a0/page/HGB2C/edit?params=%7B%22df8%22:%22include%25EE%2580%25800%25EE%2580%2580IN%25EE%2580%25802021%22%7D'
url = urllib.parse.unquote(url)
print(url)
Output:
https://datastudio.google.com/reporting/c295033f-107d-431c-b140-6f4970c4a7a0/page/HGB2C/edit?params={"df8":"include%EE%80%800%EE%80%80IN%EE%80%802021"}
The question is how can I decode the %EE%80%800%EE%80%80IN%EE%80%80 part as well.
Thanks