I have a json which looks like the below. When i validate json, i get an error "Invalid Json" since i have just a single quote and also, there is u
which i can't tell why it is there.
{u'domain': u'127.0.0.1', u'user_id': u'example.com', u'sender': u'shop_1'}
The Json above is invalid. How can i make the json appear with double quotes and also remove the u
from the response to get a valid json.
PS: Beginner with Python