I'd like to introduce a new option: Quick ORM
Its features:
- quick: you could get and play with it in less than a minute. It couldn't be more straightforward.
- easy: you don't have to write any SQL statement, including those "create table xxx ..." ones.
- simple: the core code counts only 230 lines including comments and pydocs, bugs have nowhere to hide.
- free: released under BSD license, you are free to use it and distribute it.
- powerful: built upon SQLAlchemy and doesn't compromise its power.
- flexible: you are free to write raw sql to improve performance.
- support multiple databases: you can map your models to many databases without difficulty.
- write less, do more: taking advantage of python metaclass reduces data modeling code dramatically.
- long-term maintained: Continous efforts are taking to improve and maintain it.
Hello World Example:
from quick_orm.core import Database
from sqlalchemy import Column, String
class User(object):
__metaclass__ = Database.DefaultMeta
name = Column(String(30))
if __name__ == '__main__':
database = Database('sqlite://')
database.create_tables()
user = User(name = 'Hello World')
database.session.add_then_commit(user)
user = database.session.query(User).get(1)
print 'My name is', user.name
A comprehensive example:
from quick_orm.core import Database
from sqlalchemy import Column, String, Text
class User(object):
__metaclass__ = Database.DefaultMeta
name = Column(String(70))
@Database.foreign_key(User)
class Post(object):
__metaclass__ = Database.DefaultMeta
content = Column(Text)
class Question(Post):
title = Column(String(70))
@Database.foreign_key(Question)
class Answer(Post):
pass
@Database.foreign_key(Post)
class Comment(Post):
pass
if __name__ == '__main__':
database = Database('sqlite://')
database.create_tables()
user1 = User(name = 'Tyler Long')
user2 = User(name = 'Peter Lau')
question = Question(user = user1, title = 'What is Quick ORM ?', content = 'What is Quick ORM ?')
answer = Answer(user = user1, question = question,
content = 'Quick ORM is a python ORM which enables you to get started in less than a minute!')
comment1 = Comment(user = user2, content = 'good question', post = question)
comment2 = Comment(user = user2, content = 'nice answer', post = answer)
database.session.add_all_then_commit([question, answer, comment1, comment2])
question = database.session.query(Question).get(1)
print 'new comment on question:', question.comments.first().content
print 'new comment on answer:', question.answers.first().comments.first().content
# Could the last two lines work as you expected? Try it yourself!
user = database.session.query(User).filter_by(name = 'Peter Lau').one()
print 'Peter Lau has posted {0} comments'.format(user.comments.count())
Check the project page for more examples.
Disclaimer: I am the author of Quick ORM