Introduction

glim - a modern python framework for the web

🚧

Not Complete

This documentation is not complete currently. You can check the github page and the current docs for more information.

glim is a modern web framework on top of bottle inspired from play & laravel. The aim is to build a lightweight architecture for painless web app development in python.

The development philosophy here is to make the core small as possible but still not featureless. Therefore, the features that are not common in every web app are decomposed into extensions of glim. It is inspired from great web frameworks like play and laravel.

Features

Currently, glim has all features to make a typical crud web app or a web service. Some of them are the following;

  • A powerful routing system which is RESTful by default.
  • A controller layer for request handling, service calling, etc.
  • A service layer to implement reusable controller functions.
  • An object oriented command line layer
  • An extension system that allow developers to integrate extensions to the framework
  • A handful set of extensions which includes SQLAlchemy, Jinja2, redis integrations

Raison d'être

The development of this framework is a result of my personal curiosity to the advanced topics of python.

Although there are great web frameworks for python out there, glim development approach is completely different. It is a little bit tough to know how much differences there are on the python world when comparing to other programming languages. If you are coming from a different programming languages, you may notice some conceptual differences between other programming languages. Glim is about bringing the common practices that achieved consensus through the web world so that a non pythonista can also feel like home.

Moreover, it is obvious that glim is not reinventing the wheel. It has dependencies to the best python open source projects out there. Glim is about providing the functionality of these interfaces that are put into a beautiful box.

A note on other frameworks

👍

Flask & Django

I had a chance to flirt with both of these great frameworks. I think they have many advantages in terms of community. However, people keep asking me to compare the frameworks because they tend to be biased at the first look after seeing the dependency list. So, no harm intended. It's just a part that exposes the differences.

At the first glance, after seeing the library dependencies of glim (Werkzeug, Jinja2, SQLAlchemy), one might ask the most fair question;

How is it different from Flask ?

It is obvious that the creators of flask doesn't want to direct strictly developers in terms of building an app structure, configuration structure, etc. Therefore, it is not a convention over configuration framework. However, glim is all about conventions, directing to the best practices, etc. So, there are lots of ways to implement a feature in flask. However, in glim, although the same solutions can be done very differently, it guides through the solution which is hard to make different.

Consider an example of an rdb integration. Flask has a documentation on how to integrate SQLAlchemy with a single app.py really easily. However, the app.py relatively different than a simple "Hello World" app. From glim framework's perspective, this kind of difference should not happen. In glim, there is the db module that exposes the features of SQLAlchemy while still keeping the framework lightweight because, it takes 4 lines of code to comment out in configuration to completely disable db module. So, glim may be named much more closer to the "full-stack" approach.

"So.. you say it's more full-stack, then.."

How is it different from django ?

  • Not answered yet :)