i will be very appreciated for any help
I'm getting info from website... And generally everyting works fine... But, just look at code:
r = requests.get(s_url) print r.text >>>[{"nameID":"D1","text":"I’ll understand what actually happened here."}] print r.json() >>>[{u'nameID':u'D1',u'text':u'I\u2019ll understand what actually happened here.'"}] As you see after r.json() ' was changed to \u2019. Why it did it? How I can force to don't make such changes?
Thanks
s_urlreturning JSON or plain text?r.textthen, right? I'm not sure what your problem is.