This commit is contained in:
Kenneth Reitz
2011-04-09 14:30:52 -04:00
parent 4b64c41a20
commit f908284dea
2 changed files with 19 additions and 2 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ required = ['redis']
setup(
name='redi',
version='0.0.2',
version='0.0.3',
description='Python middle layer for interacting with Redis data easily.',
long_description=open('README.rst').read(),
author='Kenneth Reitz',
+18 -1
View File
@@ -7,7 +7,24 @@ lst = redi.list(('haystack', 'metalist'))
# for l in lst:
# print l
lst[0].update({'a':'b'})
# lst.delete()
# lst.append(0)
# lst.append(124)
# lst.append(346)
# lst.append(46)
# print type(lst[1])
lst[2] = 23.3
# print type(lst[2])
# print (lst[2])
# print lst[2].keys()
# lst[2]['face'] = ['book']
print list(lst._raw)