Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string output which is in form of a dict ex.

{'key1':'value1','key2':'value2'}

how can make easily save it as a dict and not as a string?

share|improve this question
save it where/how? – SilentGhost Oct 18 '09 at 16:17
This was answered quite well in previous question 988228 – Dave Oct 18 '09 at 16:56
What? Why not save the dict as a dict instead of creating a string in the first place? Please provide some more context on this. The question makes very little sense and indicated far larger and deeper problems may have lead to this. – S.Lott Oct 18 '09 at 19:59
2  
As pointed out by Dave, stackoverflow.com/questions/988228/… is an exact duplicate of this – dbr Oct 18 '09 at 23:56

5 Answers

up vote 2 down vote accepted

astr is a string which is "in the form of a dict". ast.literal_eval converts it to a python dict object.

In [110]: import ast

In [111]: astr="{'key1':'value1','key2':'value2'}"

In [113]: ast.literal_eval(astr)
Out[113]: {'key1': 'value1', 'key2': 'value2'}
share|improve this answer
6  
Note that this using eval is not such a good idea if there's any way astr can contain, say, os.remove("foo"). – Robert Rossney Oct 18 '09 at 17:14

This is best if you're on Python 2.6+, as it's not subject to the security holes in eval.

import ast

s = """{'key1':'value1','key2':'value2'}"""
d = ast.literal_eval(s)
share|improve this answer
You messed up the quotes. Use double quotes for the outside ones. – Chris Lutz Oct 18 '09 at 23:11

Where are you getting this string from? Is it in JSON format? or python dictionary format? or just some ad-hoc format that happens to be similar to python dictionaries?

If it's JSON, or if it's only a dict, and only contains strings and/or numbers, you can use json.loads, it's the most safe option as it simply can't parse python code.

This approach has some shortcomings though, if for instance, the strings are enclosed in single quotes ' instead of double quotes ", not to mention that it only parses json objects/arrays, which only coincidentally happen to share similar syntax with pythons dicts/arrays.

Though I think it's likely the string you're getting is intended to be in JSON format. I make this assumption because it's a common format for data exchange.

share|improve this answer

using json.loads - may be faster

share|improve this answer
1  
actually, json.loads – hasen j Oct 19 '09 at 1:31

I know this is an old thread but it interests me because I'm having the exact same problem. Referencing unutbu's answer on Oct 18 '09 at 16:16, I ran the code as posted and it didn't work, I'm using Python 2.7. I did a type(astr) before and after ast.literal_eval(astr) and it came back 'str' on both. My code is as follows:

import ast
astr = "{'key1': 'value1', 'key2': 'value2'}"
print '\n --->', astr
print '\n 1) astr is type: ', type(astr)
ast.literal_eval(astr)
print '\n 2) astr is type: ', type(astr)
print '\n --->', astr

So if anyone has any suggestions I would love to hear them, I need to make this work as advertised. Below are my results:

 ---> {'key1': 'value1', 'key2': 'value2'}

 1) astr is type:  <type 'str'>

 2) astr is type:  <type 'str'>

 ---> {'key1': 'value1', 'key2': 'value2'}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.