In python simplejson my dictionary is like
>>> s= {u'hello': u"Hi, i'm here"}
>>> simplejson.dumps(s)
'{"hello": "Hi, i\'m here"}'
But I want like
'{"hello": "Hi, i'm here"}'
How to do that?
In python simplejson my dictionary is like
>>> s= {u'hello': u"Hi, i'm here"}
>>> simplejson.dumps(s)
'{"hello": "Hi, i\'m here"}'
But I want like
'{"hello": "Hi, i'm here"}'
How to do that?
What you're seeing is only an internal representation. Python keep it that way so it can escape the quote you're having there.
If you print it, it will appear like normal.