Tagged Questions

Simple, fast, extensible JSON encoder/decoder for Python.

learn more… | top users | synonyms

52
votes
6answers
7k views

`json` and `simplejson` module differences in Python

I have seen many a projects use simplejson module than the in builtin Standard Library json. Also there seem to be many different simplejson modules What are the advantages of simplejson and which ...
19
votes
4answers
23k views

jQuery.getJSON doesn't trigger callback

I have a html code: <button>asd</button> <script type = "text/javascript"> $('button').click( function() { $.getJSON('/schedule/test/', function(json) { ...
14
votes
4answers
13k views

How to install SimpleJson Package for Python

http://pypi.python.org/pypi/simplejson I am just diving into the Python world and want to make a simple twitter application which requires the installation of simplejson but not sure how I can set it ...
11
votes
6answers
5k views

How to serialize db.Model objects to json?

When using from django.utils import simplejson on objects of types that derive from db.Model it throws exceptions. How to circumvent this?
11
votes
3answers
8k views

Get json data via url and use in python (simplejson)

I imagine this must have a simple answer, but I am struggling: I want to take a url (which outputs json) and get the data in a usable dictionary in python. I am stuck on the last step. >>> ...
7
votes
3answers
3k views

Easiest way to serialize a simple class object with simplejson?

I'm trying to serialize a list of python objects with JSON (using simplejson) and am getting the error that the object "is not JSON serializable". The class is a simple class having fields that are ...
6
votes
7answers
19k views

Python JSON encoding

I'm trying to encode data to JSON in Python and I been having a quite a bit of trouble. I believe the problem is simply a misunderstanding. I'm relatively new to Python and never really got familiar ...
5
votes
2answers
680 views

Using Python simplejson to return pregenerated json

I have a GeoDjango model object that I want't to serialize to json. I do this in my view: lat = float(request.GET.get('lat')) lng = float(request.GET.get('lng')) a = ...
4
votes
2answers
706 views

SimpleJSON and NumPy array

What is the most efficient way of serializing a numpy array using simplejson?
4
votes
3answers
3k views

Decode complex JSON in Python

Hey, I have a JSON object created in PHP, that JSON object contains another escaped JSON string in one of it's cells: php > $insidejson = array('foo' => 'bar','foo1' => 'bar1'); php > $arr = ...
3
votes
2answers
295 views

Python 2.7 on App Engine, simplejson vs native json, who's faster?

I've had the understanding that simplejson is much faster than the native json in Python, such as this thread: `json` and `simplejson` module differences in Python However, I was just thrown for a ...
3
votes
1answer
3k views

How do I fix a “JSONDecodeError: No JSON object could be decoded: line 1 column 0 (char 0)”?

I'm trying to get Twitter API search results for a given hashtag using Python, but I'm having trouble with this "No JSON object could be decoded" error. I had to add the extra % towards the end of the ...
3
votes
2answers
1k views

installing simplejson on the google appengine

Super nub question time! I am trying to use simplejson on the google appengine. In a terminal on my machine I have simplejson installed and working. But my when I try to import it in a script running ...
2
votes
2answers
93 views

SimpleJson handling of same named entities

I'm using the Alchemy API in app engine so I'm using the simplejson library to parse responses. The problem is that the responses have entries that have the sme name { "status": "OK", ...
2
votes
2answers
147 views

django escapejs and simplejson

I'm trying to encode a Python array into json using simplejson.dumps: In [30]: s1 = ['test', '<script>'] In [31]: simplejson.dumps(s1) Out[31]: '["test", "<script>"]' Works fine. But ...
2
votes
2answers
271 views

Google App Engine Python simplejson escaping?

The version of django.utils.simplejson on GAE is for example escaping "/" characters, but not "\n" when doing js = json.dumps(my_dict_w_strings_w_newline_and_slash) which is causing problems when I ...
2
votes
1answer
428 views

customise simplejson output

I convert python dicts with simplejson, but I'd like to customise the output for some defined keys. for example, I'd like the keys callback and scope to be always rendered with no surrounding quotes ...
2
votes
2answers
533 views

How to make simplejson serializable class

I have a class defined like this class A: def __init__(self): self.item1 = None def __repr__(self): return str(self.__dict__) when I do: >>> import simplejson ...
2
votes
3answers
786 views

Simplejson dump and load not returning valid dictionary

I'm trying to store a json result in the GAE datastore, so that I can read it later. I'm dumping it to a String, then storing it, then reading it and loading it back into a dict. But I can no longer ...
2
votes
2answers
429 views

simplejson not escaping single quote on app engine server

I'm trying to generate a properly formatted json object to use in javascript. I've tried simplejson.dumps(string), but it behaves differently on my local machine (in the python shell) vs. on the ...
2
votes
1answer
138 views

Removing fields from json

I have a view function which renders json. I am able to specify which columns I want in my json but I don't know how to change the name of the key fields. Like the field "pk" should be "id". I am ...
2
votes
1answer
550 views

Json unicode decoding in python's simplejson

I can't decode json strings like this: "\u0e4f\u0361\u032f\u0e4f" >>> import simplejson >>> simplejson.loads('"\u0e4f\u0361\u032f\u0e4f"', encoding='utf8') ...
2
votes
1answer
935 views

Google Data Source JSON not valid?

I am implementing a Google Data Source using their Python Library. I would like the response from the library to be able to be imported in another Python script using the simplejson library. However, ...
1
vote
1answer
67 views

python, dict: not json serializable

I have a dictitionary where the keys are strings, and values are list of MyObject objects. If i execute simplejson.dumps(dict) it throws "MyObject not JSON serializable". So how can i avoids this ...
1
vote
1answer
41 views

simplejson/java - how to handle null arrays/lists

The following chunk of java deals with simplejson and string/JSONArray conversion. I'm running jre 1.6 on centos. My goal, trying to figure out how to handle null array as input text, and converting ...
1
vote
1answer
73 views

decoding json from ustream api with python

I'm trying to use simplejson to parse a request from the ustream data api, and I get this error when decoding. I'm new to the json library in python, so i'm not sure where to begin working towards a ...
1
vote
1answer
129 views

How to properly parse JSON with simplejson?

I can have the following JSON string: { "response" : [ [ { "name" : "LA_", "uid" : 123456 } ], [ { "cid" : "1", "name" : "Something" } ], [ { "cid" : ...
1
vote
1answer
99 views

Python simplejson.dumps still returns string

Input : {"id": null, "type": null, "order_for": null, "name": "Name"} code : input_map = simplejson.dumps(eval(line)) print type(input_map) returns <type 'str'> what is wrong in ...
1
vote
0answers
83 views

Google Maps Geocoding Error with Django

After hours of trying to figure out the problem here, I've given up. I am using http://djangosnippets.org/snippets/2241/ (saved in myproject/custom.py) to query Google and return the co-ordinates of ...
1
vote
1answer
361 views

MongoDB Object Serialized as JSON

I'm attempting to send a JSON encoded MongoDB object back in my HTTP response. I've followed several other similar questions but am still missing something. No exceptions are thrown, but I get a ...
1
vote
0answers
153 views

Simple Json decoding with SimpleJSON - Python

Ive just started learning python and Im having a go at using a google api. But I hit a brick wall trying to parse the JSON with simplejson. How do I go about pulling single values (ie product or ...
1
vote
3answers
381 views

How can I speed up simplejson in Python?

simplejson is slow. I wish it to be fast. How might I achieve this?
1
vote
4answers
186 views

Editing Existing JSON in Python

I'm pulling in some JSON from a server in the given format: {"images": [{"rating": 5.0, "thumburl": "http://something.jpg", "description": "dfgd", "submitdate": "2011-01-29T07:54:02", "submituser": ...
1
vote
2answers
789 views

Using Python simplejson for transmitting JSON to another server results in unicode encoding problems

I'm encoding a string with Python's simplejson library with special characters: hello testing spécißl characters plusses: +++++ special chars :œ∑´®†¥¨ˆøπ“ß∂ƒ©˙∆˚¬Ω≈ç√∫˜µ≤≥ ...
1
vote
1answer
143 views

Transform invalid nested json to valid one and change to list

Under this link : http://dev1.gecoloco.com/rte/done_json.php I have a json-like object, that I'm operating on. I cannot load it with simplejson, because it is wrongly formatted. And thus this code ...
1
vote
2answers
858 views

simplejson.loads() get Invalid \escape: 'x'

I am learning how to use simplejson to decode JSON file. But I suffered the "invalid \escape" error. Here is the code import simplejson as json def main(): json.loads(r'{"test":"\x27"}') if ...
1
vote
3answers
348 views

Why am I getting this simplejson exception?

Why does Django give me this exception [(7, u'Acura'), (18, u'Alfa Romeo'), ...] is not JSON serializable When I try data = ...
1
vote
1answer
209 views

Why are Google API queries through simplejson returning “responseData”: null?

I'm trying to screenscrape the first result of a Google search using Python and simplejson, but I can't access the search results the way that many examples online demonstrate. Here's a snippet: url ...
1
vote
5answers
472 views

XML library similar to simplejson/json? - Python

is there a similar library to simplejson, which would enable quick serialization of data to and from XML. e.g. json.loads('{vol:'III', title:'Magical Unicorn'}') e.g. json.dumps([1,2,3,4,5]) Any ...
1
vote
1answer
1k views

python json loads and unicode

I have the following case where I get the result of UTF-8 encoded HTTP response. I want to load the response content(JSON). However I don't know why I have to do 2 json.loads so that I get the final ...
0
votes
1answer
68 views

Why doesn't simplejson use a pickle-like interface? [closed]

Specifically, why doesn't simplejson.dumps() call o.___getstate___() and JSON encode the result? Similar (yet less flexible) behavior can be implemented by subclassing JSONEncoder and implementing a ...
0
votes
1answer
66 views

having problems when dumps dict to json?

Here, I want to dump a "big" dict into json, as following: #!/usr/bin/env python # -*- coding: utf-8 -*- import simplejson as json doc = {} # appending the doc, so that the doc is more than 2G ...
0
votes
0answers
87 views

how to install simplejson for python 2.5 on win7 64-bit

when I try to install simplejson for Python 2.5 (64-bit distribution) on my box running Win7 64-bit I'm getting this error: AttributeError: MSVCCompiler instance has no attribute '_ ...
0
votes
1answer
109 views

simplejson double escapes data causing invalid JSON string

I have a simple form for managing manufacturers in my shop. After posting form, ajax call returns json with updated data to the form. Problem is, that the returned string is invalid. It looks like it ...
0
votes
2answers
173 views

SVG serialization

I have RaphaelJS based canvas, where user can do some work. I need to do 2 things: Save users work into database Rastersize SVG (I use Apache Batik for that task) For 1 ...
0
votes
1answer
87 views

Cannot JSON serialize python Appengine GeoModel subclass using simple json

I am working on a simple app engine application that utilize the geo-searching proximity_fetch. I perform the search and some extra filtering on the data, and all goes well (I checked the number of ...
0
votes
1answer
66 views

Python, list dicts to json

I have a list of dicts: for item in list: listDicts.append(item.AsDict()) How convert listDicts to json string, using simplejson ? Making the list each dictionary will be an ...
0
votes
1answer
44 views

How to properly handle simplejson errors?

I've loaded json data to api_result variable. Now I need to extract particular fields (name, surname, city etc.). How should I verify if they are there? api_result = json.loads(some_json_data) if ...
0
votes
1answer
138 views

accessing elements in simplejson.load() output

i have a dictionary(?) of data returned from the simplejson.load() function. it looks like this... {'status': 'OK', 'results': [{'geometry': {'location_type': 'APPROXIMATE', 'bounds': {'northeast': ...
0
votes
3answers
233 views

Avoiding Django's QueryDict List limitations

I'm trying to send data from a webpage to a django view to be saved as serialized json to a database. If possible, I would like to avoid django's QueryDict object and just read the request with ...

1 2