I try to using request.get with '@' in params, but in output I have '%40' How I can decode this dict?
Using Python3
import requests payload = {'OPERATION-NAME': 'findItemsByProduct','productId.@type':'ReferenceID'} req = requests.post(url, params=payload) print(req.url) The output is - 'url?productId.%40type=ReferenceID'
urllib.parse.unquote:unquote("url?productId.%40type=ReferenceID")returns'url?productId.@type=ReferenceID'. What's wrong about that?