A nice micro orm for python, mysql only.
Project description
A nice micro orm for python, mysql only.
Sample Usage
>>> from models import User >>> user = User(name='Tom', email='tom@gmail.com') >>> user.save() # insert 1L >>> user.email = 'tom@github.com' >>> user.save() # update 1L >>> [user.name for user in User.select()] # select [u'Tom'] >>> query = User.where(name='Tom').delete() >>> query.execute() # delete 1L >>> user = User.create(name='Kate', email='kate@gmail.com') # another insert >>> user.data {'email': 'kate@gmail.com', 'name': 'Kate', 'id': 2L} >>> user.destroy() # another delete 1L
Installation
$ pip install skylark
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size skylark-0.7.0.tar.gz (7.3 kB) | File type Source | Python version None | Upload date | Hashes View |