i'm receiving a dict from an api call like this:
response_dict = { u'somekey': { u'fu': u'bar' } }
All strings are in unicode and i want to do calculations with them, but I need them as str for that.
Do I really have to cast them all manually to str?
The api library isn't working for python 3.6 (where probably all values would have been in str already).
Thanks for help, Phil