Jump to content

Pyramid (web framework)

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 204.210.242.157 (talk) at 18:25, 13 October 2011 (Added possessive apostrophe). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Pyramid
Developer(s)Ben Bangert, James Gardner, Chris McDonough
Initial releaseDecember 2010 (2010-12)[1]
Stable release
1.1 / July 22, 2011 (2011-07-22)
Written inPython
Operating systemCross-platform
TypeWeb application framework
LicenseBSD License
Websitewww.pylonsproject.com

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.[2]

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

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.[7]

Pyramid also allows you to define routes that takes regular expressions that maps to objects, like most other frameworks. And it also allows hierarchical object traversal where each part of an URL is an object that contains other objects, in a way similar to folders; like fellow framework Zope.[8]

See also

References

  1. ^ History of Pyramid
  2. ^ Chris McDonough. "repoze.bfg introduction". Retrieved 2010-09-21.
  3. ^ Gary Poster (2010-09-17). "Zope Summit, DZUG, repoze.bfg". Retrieved 2010-09-21.
  4. ^ Thomas Moroz, Chris Rossi & Calvin Hendryx-Parker (2009-10-28). KARL - large-scale Knowledge Management. Budapest, Hungary: Plone Conference 2009. Retrieved 2010-09-23.
  5. ^ Ben Bangert (2010-09-18). "Emails explaining the Pylons 2 structure". Retrieved 2010-09-21.
  6. ^ "repoze.bfg is now Pyramid". Retrieved 2011-01-03.
  7. ^ Cite error: The named reference bfg_doc was invoked but never defined (see the help page).
  8. ^ Wichert Akkerman (2009-10-28). Lessons from other frameworks. Budapest, Hungary: Plone Conference 2009. Event occurs at 25:50. Retrieved 2010-09-21.

External links