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

learn more… | top users | synonyms

0
votes
0answers
13 views

Using JSON populated list from django view

here is my view: def dummy_method(request): data = simplejson.dumps({'a': 1}) return render_to_response('test.html',data) my javascript: var request = $.ajax({ url: "test", type: ...
-1
votes
0answers
40 views

Parsing Json file

I am trying to parse the next json file: https://dl.dropboxusercontent.com/u/21811480/datasets.json I can parse most elements since they are at the same "first level", uuid, taxonomy, description, ...
0
votes
2answers
66 views

How to serialize Java generics with SimpleJson

I want to use a generic model to broadcast different data over websocket from server to client. Unfortunatley I always get an error while wanting to serialize the following class structure: Class to ...
2
votes
1answer
61 views

JSON or SimpleJSON and Python with Twython

I'm a newbie to Python and JSON as well. I installed twython to "speak" to the Twitter API. I use Python 2.7 on a mac. I would like to get my mentions through the API. The program should identify ...
1
vote
1answer
55 views

Serialization of python (django) data to javascript

I'm trying to return data to javascript using json.dumps in order to show data to the user. Dajax call when button is pressed: Dajaxice.chamber.ATableUpdate(TableUpdate); My ajax function: ...
0
votes
2answers
52 views

django simplejson [] is not JSON serializable

in my view, why does this work: results = [] results.append({'status':1}) results.append({'bookmarks':[]}) simplejson.dumps(results) # produces: [] and this doesn't: from myapp.models import ...
0
votes
1answer
35 views

simplejson nested object indexing

I can't figure out how to perform nested object access using simplejson. I have looked at the examples in the docs and searched but can't find a way of achieving the following functionality: nested = ...
0
votes
1answer
167 views

simplejson error on return HttpResponse in django 1.5 CBV

I am quite new to Django, especially CBV's. So, I have a listView with a post method, where I am trying to output a JSON as follows: from django.utils import simplejson class ...
0
votes
2answers
84 views

Python list, tuple and dictionary to JSON?

What's the best way of displaying this as JSON? {'foo': 'bar'} [1,2,3,4,5] My partial solution: import json def json_tuple(*args, **kwargs): if args: if kwargs: ...
0
votes
1answer
32 views

Simplejson and random key value

Here is the value i got from API server {"query":{"pages":{"-1":{"ns":0,"title":"spencerx","missing":""}}}} Let say if i want to get determine if it's not missing word, i will know by looking at ...
0
votes
3answers
90 views

fill array from json file without knowing the keys

I have the following Json file and I want to create list of array ,i don't know the keys name (like person ,lastname etc ) it can be many entities like employes users etc but the structure of the file ...
0
votes
3answers
235 views

simplejson: loading spanish characters — utf-8

I'm trying to load some geographic data with Python's simplejson. <!-- language: lang-py --> string = file("prCounties.txt","r").read().decode('utf-8') d = simplejson.loads(string) The ...
0
votes
2answers
138 views

JSONParser can't read a JSON file

I'm using a Json file to save some informations about users with this code: Login login = new Login(email, token, jsessionId); JSONObject jsonObj = new JSONObject(); ...
1
vote
1answer
96 views

Using simplejson module to dump usernames as an array

I am trying to implement bootstrap typeahead in django. In my template file, I want a textbox for users to enter text [usernames in my case]. The approach I am shooting for is to have django provide ...
1
vote
2answers
202 views

Can't parse simple json with python

I have a very simple json I can't parse with simplejson module. Reproduction: import simplejson as json json.loads(r'{"translatedatt1":"Vari\351es"}') Result: Traceback (most recent call last): ...
1
vote
1answer
122 views

simplejson - encoding regexp \d+

I have some missunderstanding with encoding regexp: >>> simplejson.dumps({'title':r'\d+'}) '{"title": "\\\\d+"}' >>> simplejson.loads('{"title": "\\\\d+"}') {u'title': u'\\d+'} ...
1
vote
1answer
292 views

Single versus double quotes in json loads in Python

I notice that single quotes cause simplejson's loads function to fail: >>> import simplejson as json >>> json.loads("\"foo\"") 'foo' >>> json.loads("\'foo\'") Traceback ...
0
votes
1answer
82 views

Escape html tags in json-simple

I have a java servlet which sends a json response in order to fill a datatable.net, I need to generate the json response with some links. I have the following piece of code: LinkedList lt2 = new ...
1
vote
1answer
264 views

Why is 'import simplejson' failing in Python 2.7.3 code, but not in the interpreter?

There are two instances running uwgsi and nginx servers. Each hosts a Flask application. Both are running on a Python 2.7.3 path. One of the servers throws an ImportError for the "import simplejson" ...
1
vote
1answer
246 views

python google json api

So i curentlly run this script that i found from http://www.dcortesi.com/blog/2008/05/28/google-ajax-search-api-example-python-code/ import urllib import simplejson query = urllib.urlencode({'q' : ...
2
votes
1answer
87 views

Infinite looping with urllib2 and simplejson

The following code exhibits strange behaviour when the json response indicates an invalid request. Instead of logging the response and then hitting the "if" block, the code will log the response and ...
1
vote
2answers
202 views

Simplejson error Python 3.3

I'm trying to run a program that imports simplejson. When I run it in Python 2.7 it's ok, but when I run it in Python 3.3 it says: File "C:\Python33\lib\simplejson__init__.py", line 111, in ...
2
votes
1answer
250 views

Flask Jsonify mongoengine query

I have method like this , and want to return as Json , but it writes that Posts object is not Json serializable :S def show_results_async(text): query = { ...
0
votes
0answers
195 views

Using simple JSON to parse embedded JSON Objects

I'm looking for an efficient way to parse JSON Objects using simple JSON (org.json.simple) For example, to parse the JSON Object below: {"result": [ { "NlmUniqueID":"8611905", ...
0
votes
1answer
78 views

Django - How to get a response variable from js file?

I am sending a variable to jquery side from my view. And what i want is taking and using that value in my js file. i tried $.post or response.xx but didn't work. here is my related view part: ...
0
votes
1answer
251 views

Json dumping a dict gives TypeError: keys must be a string

I m trying to convert the following dict into JSON using json.dumps: { 'post_engaged': 36, 'post_impressions': 491, 'post_story': 23, 'comment_count': 6, 'created_time': ...
0
votes
4answers
183 views

Parsing Strings from json in Python

I am parsing a JSON document in Python and I have gotten nearly the whole process to work except I am having trouble converting a GPS string into the correct form. I have the following form: ...
2
votes
1answer
143 views

Issue with post request using requests Python lib and dict of dicts

I'm new with Python and I need to build a Python library that connect to our API service sending some json data, everything works fine but one thing, I need to send some dict of dicts doing a POST ...
0
votes
3answers
3k views

Python JSON get values

Trying to get values from my JSON string gives me a error: data = json.loads('{"lat":444, "lon":555}') return data["lat"] But if I iterate data it gives me the elements (lat and lon), but not the ...
1
vote
1answer
390 views

Use simplejson with Python 2.7 on GAE

Having trouble using simplejson with google app engine running Python 2.7. Just switched from Python 2.5 on the Master/Slave datastore to Python 2.7 on the High Replication Datastore. This used to ...
0
votes
2answers
820 views

Various errors while parsing JSON in Python

Attempting to parse json from a url requiring login. Including all my code here as I'm not sure where the error is. try: import simplejson as json except ImportError: import json import urllib2 ...
0
votes
1answer
185 views

Get Python 2.7's 'json' to not throw an exception when it encounters random byte strings

Trying to serialize a dict object into a json string using Python 2.7's json (ie: import json). Example: json.dumps({ 'property1': 'A normal string', 'pickled_property': ...
0
votes
0answers
172 views

problems for parse complicate json post data in django

I have a django parse function as: def parse_org(request): try: org = simplejson.loads(request.POST['org']) except Exception: traceback.print_exc() print org I got the ...
0
votes
1answer
200 views

Python nested json object being serialize as str

Hi I have made a custom JSONEncoder and happened to run into this issue. When I use the dumps function of simplejson the nested object gets serialize as a string. For example I use this: ...
0
votes
2answers
217 views

Python: Extract Attribute within JSON data structure

I am currently parsing ebay data using ebay public api, I have figured out the to parse the json structure except for some json elements. Here is the JSON Structure that I am looking at: ...
0
votes
2answers
3k views

Check whether the JSON (object property exists) & print it as unicode decoded

I get the following data from the Instagram API, I m trying to get the text property from the caption using the following code: data = simplejson.load(info) # info is retrieved using the urllib2 ...
0
votes
1answer
691 views

Iterating over JSON object individually for processing each post

I have the following JSON object that I get from the Instagram API, it can have n number of posts (depending upon the count parameter provided). { "pagination": { "next_url": ...
1
vote
4answers
2k views

Python JSON module has no attribute 'dumps'

I am running Python 2.7 (x64 Linux) and trying to convert a dict to a JSON object. >>> import sys ...
0
votes
1answer
239 views

How to get field from json object in template?

I use Dajaxice library with django. These are my ajax.py methods: def get_by_date_queryset(): #return model.objects.latest('created_on') return Article.objects.all().order_by('created_on') def ...
0
votes
1answer
413 views

inconsistent simplejson conversion of quotes

I've read the simplejson docs and don't understand why it sometimes returns a json object with single quotes (which php can't understand) and other times returns an escaped sequence of double quotes ...
1
vote
2answers
345 views

Very simple JSON decoding

I have searched for this, but all the results I find make no sense to me and seem too complicated. I'm looking to use either the json or simplejson module to get the value of a string in my object. ...
10
votes
2answers
4k views

Why does json serialization of datetime objects in python not work out of the box for datetime objects

Why does the json serialization not work for datetime objects . As I understand json serialization the basic idea for any object can be call the __str__ builtin function and then urlencode the object ...
-1
votes
2answers
365 views

Python simplejson not converting true

Why doesn't this work? I'm reading for simplejson JsonDecoder, true should be parsable and translated to True. % python >>> import simplejson as json >>> print ...
0
votes
2answers
987 views

DJANGO simplejson

Good afternoon..i have a model with a class like this: class Reportage: def get_num(self): end_date = self.date.end_date start_date = self.date.start_date duration = ...
0
votes
1answer
219 views

Django add textfield on click

I am writing a django recipe website and have a question about JSON Field and forms I am trying to write the create recipe function for the site and wanted to do two things: I want to add text ...
0
votes
1answer
201 views

django json query working in shell but not views

in my views I am running a query that extracts information based on previous kwargs passed. Sample paypaladaptive debug.request entry {"returnUrl": ...
-1
votes
2answers
348 views

Get corresponding value from json key in python

currently I have the following which parses a json api.. import simplejson import urllib2 f = ...
0
votes
1answer
2k views

simplejson documentation?

I just have a question regarding SimpleJSON's documentation. Is it implicit understood that functions for example .get() can be used without the need of the author to document it? Or is it something ...
0
votes
1answer
3k views

simple json dumps function with unicode

Here is a sample run of simple json using python2.4 version >>> >>> orig='{"key1":"Val", "key2":"val2"}' >>> origDict = simplejson.loads(orig) >>> origDict ...
0
votes
1answer
868 views

SyntaxError: invalid syntax while installing simplejson 2.4 line 390 - python 2.4.3

i am trying to install simplejson2.4 on RedHat however getting: SyntaxError: Invalid syntax encoder.py line 390 Output: [~/tmp/simplejson-2.4.0]# python setup.py install running install running ...

1 2 3