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
- Host: GitHub
- URL: https://github.com/an-empty-string/redis-orm
- Owner: an-empty-string
- Created: 2013-11-12T16:21:42.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-11-13T17:31:32.000Z (over 12 years ago)
- Last Synced: 2025-04-20T19:55:43.342Z (10 months ago)
- Language: Python
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.']
```