I have a querydict that looks like the following:
How would I extract
this one works also for values that are lists:
dict_ = {k: qdict.getlist(k) if len(qdict.getlist(k))>1 else v for k, v in qdict.items()}