Pyramid is an open source WSGI web framework based on the Model-View-Controller (MVC) architectural pattern.
These projects provide solid starting code to learn from as you are building your own applications.
pyramid_blogr is an example project that shows how to build a blog with Pyramid modeled on the Flaskr tutorial.
pyramid-blogr-cf is another Pyramid web app that has a similar title to the one above but this one is intended for teaching web development to new developers.
pyramid_appengine provides a project skeleton for running Pyramid on Google App Engine.
The following packages are designed to make Pyramid play nicely with existing open source libraries by reducing the boilerplate you need to add to your project.
pyramid_celery and pyramid_rq make it easier to use the Celery task queue in your Pyramid applications for handling asynchronous work.
pyramid_zipkin provides distributed tracing via the Zipkin library.
Ramses (source code) is a RESTful web API generation framework, similar in concept (but not in implementation details) to how Django REST Framework works with Django.
Pyramid has fantastic official project documentation on its site. Other resources are harder to come by compared to other established web frameworks such as Django and Flask, but there are enough tutorials out there for you to learn Pyramid if you choose to build your web applications with it.
Try Pyramid is the official marketing website for Pyramid, with resources for extending your Pyramid apps. It also provides some sample "hello world!" code.
An introduction to the Pyramid web framework for Python provides a detailed configuration and more than trivial code to build a "to do" application. This post is one in a four part series that compares Pyramid to Flask, Django and Tornado so there is some commentary on how this framework compares to the others.
The first Pyramid app is a good place to start getting your hands dirty with an example project.
Six Feet Up explains why Pyramid is their choice for rapid development projects in that blog post.
Build a chat app with Pyramid, SQLDB, and Bluemix is a Pyramid application walkthrough specific to IBM's Bluemix platform.
Developing Web Apps Using the Python Pyramid Framework is a video from San Francisco Python with an overview of how to install, get started and build a web app with the Pyramid framework.
This podcast interview with the primary author of the Pyramid framework explains how Pyramid sprang from Pylons and how Pyramid compares to other modern frameworks.
Anyone using the Pyramid framework? is a good /r/Python thread with responses by current users as well as frustrations by developers who tried and decided against sticking with the framework.
Fix errors in your Python code before your users see them by monitoring with Rollbar.
Deploy web apps with the Ansible configuration management tool.
Build microservices with Docker, Flask & React in this great course.