Files
redi/toy.py
T
2011-04-09 05:05:39 -04:00

14 lines
161 B
Python

import redi
lst = redi.list(('haystack', 'metalist'))
# lst.append({'x': 'y'})
# for l in lst:
# print l
lst[0].update({'a':'b'})
print list(lst._raw)