Metadata-Version: 1.1
Name: glim
Version: 0.8.5
Summary: A modern framework for the web
Home-page: https://github.com/aacanakin/glim
Author: Aras Can Akin
Author-email: aacanakin@gmail.com
License: UNKNOWN
Download-URL: https://github.com/aacanakin/glim/archive/v0.8.5.zip
Description: `Documentation(not complete) <http://aacanakin.github.io/glim>`__
        
        `Changelog <https://github.com/aacanakin/glim/blob/master/CHANGELOG.md>`__
        
        glim is a modern web framework on top of `Werkzeug <http://werkzeug.pocoo.org/>`__, `SQLAlchemy <http://www.sqlalchemy.org/>`__ and `Jinja2 <http://jinja.pocoo.org/docs/dev/>`__ inspired from `play <https://www.playframework.com/>`__ & `laravel <http://laravel.com/>`__. The aim is to build a lightweight architecture for web app development. The development philosophy here is to make the core small as possible but still not featureless. It has an extension system that can boot objects with configuration.(See `gredis <https://github.com/aacanakin/gredis>`__ - a redis extension for glim)
        
        Features
        --------
        
        -  A powerful routing system which has grouping & filtering
        -  A model layer with use of SQLAlchemy's ``declarative_base()``
        -  A controller layer for request handling, service calling, etc.
        -  A service layer to seperate database layer logic from models
        -  An object oriented command line layer with use of ``argparse``
        -  An extension system that developers can integrate to the framework
        
        Quick Start
        -----------
        
        ::
        
            # create project folder
            $ mkdir <project>
            $ cd <project>
        
            # create a virtualenv
            $ virtualenv venv
        
            # activate the virtualenv
            $ . venv/bin/activate
        
            # install glim from pypi
            $ pip install glim
        
            # generate a new glim app
            $ glim new
        
            # copy the sample configuration into the defined environment
            $ cp app/config/default.py app/config/development.py
        
            # start the web server
            $ glim start
        
        glim is
        -------
        
        -  small & lightweight
        -  great for painless web app development
        -  great for api development
        
        glim isn't
        ----------
        
        -  django
        -  flask
        -  not stable currently :(
        
        NOTE: I'm changing lots of things currently. So the web server may not
        even start but feel free to play with it!
        
Keywords: mvc,mvc(s),framework,web framework,api development,Werkzeug,SQLAlchemy,Jinja2,termcolor
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
