Skip to content

actuarial-tools/camelot

 
 

Repository files navigation

##########
 Camelot
##########

A python GUI framework on top of  Sqlalchemy  and PyQt, inspired by the Django admin interface. 
Start building desktop applications at warp speed, simply by adding some additional information to you 
model definition::

  class Movie(Entity):
    title = Field(Unicode(60), required=True)
    short_description = Field(Unicode(512))
    release_date = Field(Date)
    genre = Field(Unicode(15))

    class Admin(EntityAdmin):
      verbose_name = 'Movie'
      list_display = ['title', 'short_description', 'release_date', 'genre']
      
This piece of code is enough to define your database schema and to create a user friendly 
desktop GUI.

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>`_.

About

Fork of the Camelot library for creating data-driven Qt user interfaces in Python. Official homepage is at http://www.python-camelot.com/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.9%
  • Shell 0.1%