mirror of
https://github.com/kennethreitz-archive/redi.git
synced 2026-06-05 23:40:18 +00:00
14 lines
161 B
Python
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)
|
|
|