redistore:用于Redis的Pythonic界面

时间:2024-05-19 15:21:57
【文件属性】:

文件名称:redistore:用于Redis的Pythonic界面

文件大小:8KB

文件格式:ZIP

更新时间:2024-05-19 15:21:57

Python

Redistore 用于Redis的简单python界面 安装 $ pip install redistore 用法 >> > import redistore >> > store = redistore . get ( host = 'localhost' , port = 6379 , db = 0 ) 现在,您可以使用类似dict的界面访问和存储键和值: >> > store [ 'foo' ] = 'bar' >> > store [ 'foo' ] 'bar' >> > 'foo' in store True >> > del store [ 'foo' ] >> > store [ 'foo' ] ... KeyError : 'foo' 或使用方法: >> > store . set ( 'baz' , 'qux' ) >> > store . get ( 'b


【文件预览】:
redistore-master
----MANIFEST.in(31B)
----.travis.yml(343B)
----README.rst(2KB)
----pytest.ini(84B)
----CHANGES.rst(335B)
----Pipfile(211B)
----tests()
--------fake.py(842B)
--------test_types.py(2KB)
--------conftest.py(614B)
--------__init__.py(0B)
--------test_redistore.py(2KB)
----LICENSE(1KB)
----redistore()
--------types.py(2KB)
--------__init__.py(1KB)
----setup.py(2KB)
----.gitignore(176B)
----Makefile(440B)

网友评论