Search code examples
python-3.xpyramid

Doing automatically generated admin interface and content management in Pyramid


Do Python Pyramid have an Admin Interface like other CMS like Wordpress, Drupal, Joomla?

I mean a admin interface from where all the website settings can be managed like menu settings, pages, content etc.

If yes can you please let me know how can I access it.

If no can you please let me know how to add a admin interface to it with an authentication?

Thanks


Solution

  • Pyramid is a web framework and does not provide any web application out of the box. You can write an admin interface or any other kind of web application on top of Pyramid. There are many open source packages that provide an admin interface, including WebSauna, Kotti, and SubstanceD. For a list of such packages and other packages for extending Pyramid, visit https://trypyramid.com/resources-extending-pyramid.html and filter packages.