I am having a problem with getting lists/dictionaries out of the
database.

If I have for instance this in a field of my database:

[['Image format', 'JPEG'], ['Image mode', 'RGB'], ['Image size',
'1440x900'], ['Compression', '21.0 times']]

And I call it from django, I would get the following string:

[{'metadata': u"[['Image format', 'JPEG'], ['Image mode', 'RGB'],
['Image size', '1280x960'], ['Compression', '14.0 times']]", 'title':
u'Technical Metadata'}]

Because of the 'u' UTF it seems that I can't then properly use it as a
list with dictionaries like so:

myProblemObject[0]['metadata'][0]

Any ideas? I presume this is Django's handling of the data within the
database being the problem not a python problem in general?

Thanks..
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to