Skip to content

v-finance/camelot

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
April 11, 2013 23:38
November 3, 2009 14:22
March 26, 2013 22:40
June 29, 2012 15:41
October 27, 2009 20:34
March 14, 2013 23:00
##########
 Camelot
##########

Camelot provides components for building business applications on top of **Python**, **SQLAlchemy** and **Qt**.  
It is inspired by the Django admin interface.  
A simple piece of code as this::

  class Task( Entity ):
      short_description = Column( Unicode( 60 ), nullable = False )
      due_date = Column( Date() )
      long_description = Column( RichText() )
  
      class Admin( EntityAdmin ):
          list_display = ['short_description', 'due_date']
      
Is enough to define your database schema, define the mapping between the
database and objects, and to create a user friendly desktop GUI.

Building applications with Camelot has these advantages :

  *  Use high quality editors together with the *Qt* Model-View framework
  
  *  Editors are bound to the model without writing binding code
  
  *  User friendliness and performance out of the box
  
  *  Tons of built in functions such as data import and export, printing, 
     backup and restore
     
  *  Documentation on creating the various parts of an application like wizards
     and reports

For more information, refer to :

 - `Home page <http://www.python-camelot.com>`_.
 - `Screenshots <http://www.python-camelot.com>`_.
 - `Documentation <http://www.python-camelot.com/docs.html>`_.