CURD - Tiny ORM for MySQL¶ Release: v0.3.6 (Installation) NOTE: CURD.py may not be stable before version 1.0 NOTE: version 0.3.0 has a lot of Not-Backward-Compatible changes compared to version 0.2.5. Tests status: CURD.py is a tiny orm for mysql database, written in Python. >>> from models import User >>> user = User(name='Tom', email='tom@gmail.com') >>> user.save() # insert 1L >>> user.email =