I've been using Pyramid for some projects lately, and I'm finding I like it. However, in thinking about making re-usable apps for it, like Django, I can't come up with an approach that would be generally liked by Pyramid developers.
Django is at an advantage here because it makes a bunch of choices, mainly with the ORM. Pyramid, though, makes it a point to not choose a persistence method. This, in turn, makes it tough to implement a re-usable app in a flexible way. I do know of a way...using Zope interfaces.
That's right, I said the Z word. Interfaces have fallen out of favor in Python programming, but they would help in this situation. A Pyramid app could provide interfaces and a method of looking up a particular implementation (using the Zope Component Architecture, or repoze.lemonade), but that also means implementing the storage a few times - the two main mechanisms I know of being the ZODB or SQLAlchemy, but there could be Mongo or other NoSQL mappings too.
I suppose implementations could be split out into their own packages, but that seems overly complex.
Thinking on it further, I'm not sure that having re-usable apps a-la Django or perhaps Plone/Zope "Products" is feasible, at least in the sense that they'll work with any Pyramid project.
In order to be useful, these apps or products will have to define views, models/storage, and templates. Each one of these can be configured very differently within each Pyramid project, making it hard to fit all possibly use cases. Granted, Chameleon and Mako templates are bundled with Pyramid, but say someone wants to re-use an app that defines some Chameleon templates in their project that use Jinja2?
So I don't think it's going to be easy to try supporting all Pyramid projects in a self-contained, re-usable application like Django. Because Pyramid itself tries very hard to avoid having an opinion, making components where the opinion (storage backend, templating renderer, view routing mechanism) matters apply to everyone is difficult.
Perhaps a better target would be re-usable libraries without all the components built-in by default.
I'm not sure how that would look, though. I'd have to play around with some implementations to get a feel for how interdependent models, views, and renderers would play as somewhat stand alone components.