Pylons project

Pylons Project
Type of site
Python framework development
Available in English
Owner Open source
Editor Anonymous
Website www.pylonsproject.org
Commercial No
Registration None
Launched December 27, 2010 (2010-12-27)
Current status Active

Pylons Project is an open source project that develops a set of web application frameworks written in Python. Initially the project was little more than a single web framework but with the merger repoze.bfg framework under the new name Pyramid, the Pylons project now consists of multiple web application frameworks.

Pylons Framework

Pylons Framework
Developer(s) Ben Bangert, James Gardner
Initial release September 2005 (2005-09)[1]
Stable release
1.0.2[2] / July 21, 2015 (2015-07-21)
Development status Dormant
Written in Python
Operating system Cross-platform
Type Web application framework
License BSD license
Website www.pylonsproject.org/projects/pylons-framework/about

Pylons Framework is an open source Web application framework written in Python. It makes extensive use of the Web Server Gateway Interface standard to promote reusability and to separate functionality into distinct modules.[3] It is strongly influenced by Ruby on Rails: two of its main components, Routes and WebHelpers, are Python reimplementations of Rails features.

Structure

Pylons is well known for having a near-complete stack of third-party tools, eschewing the "not–invented–here" phenomenon.

Installation, dependencies, and setup

The official installation method of Pylons is through EasyInstall via the Python Package Index (pypi), and most of the additional tools are typically installed the same way. EasyInstall also handles package dependencies when relevant. Some distributions could also package Pylons and Paste, but it is likely that any distribution's packages would lag the official distribution. Pylons may also be installed by hand by renaming its .egg file to .zip and extracting the contents.

Paste is used for project setup, testing, and deployment. Using the common INI configuration format, Paste allows for multiple "profiles", so that developers can run development and deployment setups from the same codebase without revealing sensitive parts of Pylons, such as the interactive debugger, to production users.

URL dispatch

Currently the only widely used URL dispatcher for Pylons is Routes, a Python reimplementation of Ruby on Rails' URL dispatching, although any WSGI-compatible URL dispatcher can be used. While Routes is a separate library, it was developed for use in Pylons and its development remains closely in sync with Pylons.

HTML generation

Another piece of Rails adapted for Pylons is WebHelpers, which provides URL mapping based on the Routes configuration. WebHelpers also provides some utility functions for generating JavaScript code making use of the script.aculo.us and Prototype libraries.

FormEncode and FormBuild are used for HTML form validation and generation; there has been some use of Mako for form generation using Mako's inheritance model.

Templating

Myghty was the default Pylons templating language, but as of version 0.9.6 it has been replaced by Mako.[4] Both templating languages are text-based (as opposed to XML-based), and support includes, inheritance and embedding arbitrary Python code.

Because of Pylons' loosely coupled layers, other templating languages can be used as well. Genshi, an XML-based templating language, can be used in lieu of either Mako or Myghty.[5]

Database abstraction and object-relational mapping

Pylons has no default database library. Both SQLObject and SQLAlchemy are known to be used.

Merger with repoze.bfg and birth of Pyramid Web Framework

Pylons has developed into the Pylons Project, and the old code from Pylons 1.0 is being supported indefinitely. However, pursuant to the project's merger with repoze.bfg since November 2010, newer versions of Pylons are actually different from the original Pylons 1.0. Pylons developers initially planned to rewrite certain portions of the code but they observed that the new code was approximating to repoze.bfg, which led the merger of Pylons and repoze.bfg.[6][7] This led to repoze.bfg (a part of the Repoze Python-based web framework) to become rebranded and relaunched as the Pyramid web framework.[8]

Pyramid

Pyramid
Developer(s) Chris McDonough, Ben Bangert
Initial release July 8, 2008 (2008-07-08)[9][10]
Stable release
1.7[11] / May 19, 2016 (2016-05-19)
Written in Python
Operating system Cross-platform
Type Web application framework
License BSD License
Website www.pylonsproject.org/projects/pyramid/about

Pyramid is an open source web framework written in Python and is based on WSGI. It is a minimalistic web framework inspired by Zope, Pylons and Django.[12]

Originally called "repoze.bfg", Pyramid gathered attention mostly in the Zope[13] and Plone community as the Open Society Institute's KARL project migrated from Plone to BFG.[14] In 2010 it was announced that the Pylons framework will move over to using BFG as a base in version 1.5.[15] As a result of the inclusion of BFG into the Pylons project, BFG was renamed Pyramid.[16]

Features

Pyramid is a minimalistic, platform-independent MVC object publishing web framework. It is persistence agnostic and is integrated both with SQL databases via SQLAlchemy, but also has integration with the Zope Object Database and other NoSQL databases, such as CouchDB.[12]

Pyramid allows developers to define routes using regular expressions that map to objects. Like its fellow framework Zope, Pyramid also allows hierarchical object traversal, where each part of a URL is an object containing other objects, in a way that is similar to folders in a filesystem.[17]

See also

References

  1. History of Pylons
  2. Pylons Changelog
  3. The mod_wsgi project includes both Pylons and Pyramid in its list of supported major Python web frameworks.
  4. Haas, Christoph Beginning Pylons. Retrieved July 5, 2007
  5. Genshi Wiki Pylons with Genshi Retrieved July 5, 2007
  6. Pylons Project FAQ. URL: http://docs.pylonsproject.org/en/latest/faq/pylonsproject.html#what-does-the-pylons-project-mean-for-pylons-the-web-framework
  7. Notes on the Pylons and repoze.bfg merger. URL: http://be.groovie.org/post/1558848023/notes-on-the-pylons-repoze-bfg-merger
  8. About Pyramid. URL: http://www.pylonsproject.org/projects/pyramid/about
  9. "repoze.bfg Change History".
  10. BFG_HISTORY.txt
  11. "Pyramid 1.7 Change History".
  12. 1 2 Chris McDonough. "repoze.bfg introduction". Retrieved 2010-09-21.
  13. Gary Poster (2010-09-17). "Zope Summit, DZUG, repoze.bfg". Retrieved 2010-09-21.
  14. Thomas Moroz, Chris Rossi & Calvin Hendryx-Parker (2009-10-28). KARL – large-scale Knowledge Management. Budapest, Hungary: Plone Conference 2009. Retrieved 2010-09-23.
  15. Ben Bangert (2010-09-18). "Emails explaining the Pylons 2 structure". Retrieved 2010-09-21.
  16. "repoze.bfg is now Pyramid". Retrieved 2011-01-03.
  17. Wichert Akkerman (2009-10-28). Lessons from other frameworks. Budapest, Hungary: Plone Conference 2009. Event occurs at 25:50. Retrieved 2010-09-21.

Further reading

This article is issued from Wikipedia - version of the 11/22/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.