Skip to content

Commit aa89c67

Browse files
committed
new pyramid resources
1 parent 9b717c5 commit aa89c67

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

content/pages/04-web-development/05-pyramid.markdown

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,43 @@ Model-View-Controller (MVC) architectural pattern.
1818
<div class="well see-also">Pyramid is an implementation of the <a href="/web-frameworks.html">web frameworks</a> concept. Learn how these parts fit together in the <a href="/web-development.html">web development</a> chapter or view <a href="/table-of-contents.html">all topics</a>.</div>
1919

2020

21-
## Open source Pyramid example apps
21+
### Open source Pyramid example apps
22+
These projects provide solid starting code to learn from as you are building
23+
your own applications.
24+
2225
* [pyramid\_blogr](https://github.com/Pylons/pyramid_blogr) is an example
2326
project that shows how to build a blog with Pyramid modeled on the
2427
[Flaskr](http://flask.pocoo.org/docs/latest/tutorial/introduction/) tutorial.
2528

29+
* [pyramid-blogr-cf](https://github.com/cewing/pyramid-blogr-cf) is another
30+
Pyramid web app that has a similar title to the one above but this one
31+
is intended for teaching [web development](/web-development.html) to new
32+
developers.
33+
2634
* [pyramid\_appengine](https://github.com/twillis/pyramid_appengine)
2735
provides a project skeleton for running Pyramid on
2836
[Google App Engine](/platform-as-a-service.html).
2937

3038

39+
### Pyramid-specific packages
40+
The following packages are designed to make Pyramid play nicely with existing
41+
open source libraries by reducing the boilerplate you need to add to your
42+
project.
43+
44+
* [pyramid_celery](https://github.com/sontek/pyramid_celery) and
45+
[pyramid_rq](https://github.com/wichert/pyramid_rq) make it easier
46+
to use the [Celery](/celery.html) [task queue](/task-queues.html) in your
47+
Pyramid applications for handling asynchronous work.
48+
49+
* [pyramid_zipkin](http://pyramid-zipkin.readthedocs.io/en/latest/) provides
50+
distributed tracing via the [Zipkin](https://zipkin.io/) library.
51+
52+
* [Ramses](https://ramses.tech/)
53+
([source code](https://github.com/ramses-tech/ramses)) is a RESTful web API
54+
generation framework, similar in concept (but not in implementation
55+
details) to how Django REST Framework works with [Django](/django.html).
56+
57+
3158
### Pyramid resources
3259
Pyramid has fantastic official project documentation on its site. Other
3360
resources are harder to come by compared to other established
@@ -64,3 +91,7 @@ learn Pyramid if you choose to build your web applications with it.
6491
explains how Pyramid sprang from Pylons and how Pyramid compares to other
6592
modern frameworks.
6693

94+
* [Anyone using the Pyramid framework?](https://www.reddit.com/r/Python/comments/6yn74i/anyone_using_the_pyramid_framework/)
95+
is a good /r/Python thread with responses by current users as well as
96+
frustrations by developers who tried and decided against sticking with
97+
the framework.

0 commit comments

Comments
 (0)