Skip to content
forked from hit9/skylark

A micro python orm for mysql and sqlite3.

License

BSD-2-Clause, MIT licenses found

Licenses found

BSD-2-Clause
LICENSE-BSD
MIT
LICENSE-PEEWEE
Notifications You must be signed in to change notification settings

zhaoxuan/skylark

 
 

Repository files navigation

Skylark

A micro python orm for mysql and sqlite3. (Original named CURD.py).

Latest version: v0.9.1

Development status: 4 - Beta

Testing status: Build Status

Sample Code

>>> from models import User
>>> user = User(name='Tom', email='[email protected]')
>>> user.save()  # insert
1
>>> user.email = '[email protected]'
>>> user.save()  # update
1
>>> [user.name for user in User.select()]  # select
[u'Tom']
>>> query = User.where(name='Tom').delete()
>>> query.execute()  # delete
1
>>> user = User.create(name='Kate', email='[email protected]')  # another insert
>>> user
{'email': '[email protected]', 'name': 'Kate', 'id': 2}
>>> user.destroy()  # another delete
1

More examples: sample/, snippets

Requirements

Install

$ pip install skylark

Documentation

Documentation: http://skylark.readthedocs.org/

Strongly recommend that you read Quick Start at first.

NOTE: skylark is not currently threading safe.

Sample App

Tests

Contributors

https://github.com/hit9/skylark/graphs/contributors

About

Many ideas are inspired by peewee, thanks a lot to @coleifer. (#34)

License

Changes

CHANGES](CHANGES)

About

A micro python orm for mysql and sqlite3.

Resources

License

BSD-2-Clause, MIT licenses found

Licenses found

BSD-2-Clause
LICENSE-BSD
MIT
LICENSE-PEEWEE

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%