Given is a string:
'search=hello+world&status=something&cache=false'
How do I pass parameters and values from that string to a payload dictionary given that I'm not sure what parameters I will always get from the string in order to use it in requests.get()?
requests.get(url, params=payload, headers=headers)