What is the best JSON library to get JSON data for Django, ‘simplejson’ or otherwise?
thanks very much
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Python 2.6 comes with a
jsonmodule in the standard library — so that would be best if you’re on Python 2.6; for older Python versions,simplejsonmay be roughly equivalent.