The json library does not work on my computer, so does anyone know the best way to convert json to a python dictionary? It needs to be python 2.5 compatible and not use any special libraries (libraries that don't come with 2.5).
Asked
Active
Viewed 1,105 times
-4
-
1Re-implement a JSON parser: http://json.org/ – AetherUnbound Sep 04 '17 at 02:59
-
1Use `simplejson`: https://stackoverflow.com/questions/791561/which-json-module-can-i-use-in-python-2-5 – AetherUnbound Sep 04 '17 at 03:12
-
@AetherUnbound no special libraries. I specifically said that in the question. I have some sort of a solution. eval() although dangerous, works for what I need – Qwerty Sep 04 '17 at 03:22
1 Answers
0
Take a look at these ones:

joegalaxian
- 350
- 1
- 7
-
Answers that provide link are bad in SO, these can be used to complement the answers, but not as base of them. These links are broken making your answer unusable. – eyllanesc Sep 04 '17 at 03:42
-
This kind of thing you can post it as a comment, but it is not an adequate answer. – eyllanesc Sep 04 '17 at 03:43
-
Hi @eyllanesc, yes, I know, you're right, and I take your point. The thing was that yesterday, when I wrote this, I had less than 50 points hence I wasn't able to comment on the original answer. – joegalaxian Sep 04 '17 at 23:54