An open API service indexing awesome lists of open source software.

https://github.com/an-empty-string/redis-orm

DON'T USE THIS | An ORM for Redis, written in Python
https://github.com/an-empty-string/redis-orm

Last synced: 5 months ago
JSON representation

DON'T USE THIS | An ORM for Redis, written in Python

Awesome Lists containing this project

README

          

Redis-ORM
===

(aka when fwilson went crazy)

Redis-ORM is kind of like SQLAlchemy for Redis. It works like this:
```
>>> s = Student(firstname="John", lastname="Doe", address="123 Main St.")
>>> s.save()
>>> Student.get("address", lastname="Doe")
['123 Main St.']
```