Grok (web framework)
Encyclopedia
Grok is an open-source Web framework based on Zope Toolkit
technology. The project was started in 2006 by a number of Zope developers. Grok has since then seen regular releases. Its core technologies (Martian, grokcore.component) are also used in other Zope-based projects.
The primary motive behind Grok is to make the Zope Toolkit technology more accessible and easier to use for newcomers and, at the same time, speed up application development, in accordance with the agile programming paradigm
.
To achieve this, Grok uses convention-over-configuration
instead of using an explicit XML based configuration language (ZCML) like Zope Toolkit and BlueBream do. Grok uses Python code for component configuration, and has many implicit defaults and conventions. Grok is similar in feel to other Python Web frameworks like TurboGears
, Pylons and Django.
Zope
Zope is a free and open-source, object-oriented Web application server written in the Python programming language. Zope stands for "Z Object Publishing Environment", and was the first system using the now common object publishing methodology for the Web...
technology. The project was started in 2006 by a number of Zope developers. Grok has since then seen regular releases. Its core technologies (Martian, grokcore.component) are also used in other Zope-based projects.
The primary motive behind Grok is to make the Zope Toolkit technology more accessible and easier to use for newcomers and, at the same time, speed up application development, in accordance with the agile programming paradigm
Agile software development
Agile software development is a group of software development methodologies based on iterative and incremental development, where requirements and solutions evolve through collaboration between self-organizing, cross-functional teams...
.
To achieve this, Grok uses convention-over-configuration
Convention over Configuration
Convention over configuration is a software design paradigm which seeks to decrease the number of decisions that developers need to make, gaining simplicity, but not necessarily losing flexibility....
instead of using an explicit XML based configuration language (ZCML) like Zope Toolkit and BlueBream do. Grok uses Python code for component configuration, and has many implicit defaults and conventions. Grok is similar in feel to other Python Web frameworks like TurboGears
TurboGears
TurboGears is a Python web application framework consisting of several WSGI components such as Pylons, SQLAlchemy, Genshi and Repoze.TurboGears is designed around the model-view-controller architecture, much like Struts or Ruby on Rails, designed to make rapid web application development in Python...
, Pylons and Django.
External links
- Grok website
- German book with chapter on Grok
- Grok 1.0 Web Development, a book by Carlos de la Guardia
- Article about Grok (in iXIX (magazine)iX is a German monthly computer magazine, published by the Heise Verlag publishing house since 1988. The magazine focuses primarily on professional IT...
) - Ohloh project information on Grok
- Grok at CeBIT
- Dolmen, an application development framework based on Grok and Zope3