Skip to content

patx/mongokv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo is a tiny sync/async key-value store backed by PyMongo that provides a dead simple Redis-like API (set, get, etc). It is safe across threads, processes, and ASGI workers. For help getting started, installation, advanced examples and more read the API Docs and User Guide here.

>>> from mongokv import Mkv

>>> db = Mkv('mongodb://localhost:27071')
>>> db.set('hello', 'world')

>>> db.get('hello')
'world'