I have a string:
my_str = '{"country":{"AE":"United Arab Emirates","AL":"Albania","AM":"Armenia","AR":"Argentina","AT":"Austria","AU":"Australia","AW":"Aruba"}}'
Is there an easy way to convert it into dictionary? I'd like to use something like dict(my_str)
but it doesn't exist.
Easy way.