Compare CherryPy and Pyramid

CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. CherryPy has built-in tools for sessions, static files, cookies, file uploads, caching, encoding, authorization, compression, and many more.

Pyramid is a web framework that is written in Python and is based on WSGI. It is minimalistic and inspired by Zope, Pylons, and Django. Before 2010, Pyramid was known as repoze.bfg.

Let's see how CherryPy and Pyramid compare on various factors and features and which to choose when.

CherryPy

Pyramid

Overall

Type

Type
A minimalist, object-oriented and popular web framework for Python.
Type
Python "microframework" for building web applications.

Author

Release Date

Release Date
2002
Release Date
2008

License

License
License

Website

Website
Website
Adoption and Ease of Use

Popularity [?]

Popularity [?]
1 Star
Used by 6,600 projects.
Popularity [?]
1 Star
Used by 8,000 projects.

Used by

Used by
Used in production services at Netflix and Hulu
Used by
Reddit, Yelp, Mozilla, SurveyMoney, NewCars.com.

Jobs [?]

Jobs [?]
0.5 Star
16 job openings which list CherryPy in the job description.
Jobs [?]
1 Star
80 job openings which list Pyramid as a requirement.

Performance [?]

Performance [?]
5 Stars
Very fast. Extensions could impact performance adversely.
Performance [?]
3 Stars
Claims to have top-notch performance but virtue of being a microframework but benchmarks prove it to be slower than even Django beyond simple use cases.

Flexibility

Flexibility
5 Stars
Very flexible and simple. Doesn't force anything on developers.
Flexibility
4.5 Stars
Pyramid is flexible.

Ease of Learning

Ease of Learning
5 Stars
Straightforward and easy to learn. Being around for almost 20 years, it has a good amount of tutorials online.
Ease of Learning
4 Stars
Being a microframework, the learning curve isn't very steep. However, it doesn't have the same amount of tutorials, courses, and resources available for leaning compared to Django and Flask
Database Support

RDBMS Support

RDBMS Support
Through Plugins or Extensions
Through Plugins or Extensions
No built-in ORM framework. Leaves it up to developers to choose their own such as SQLAlchemy.
RDBMS Support
Through Plugins or Extensions
Through Plugins or Extensions
No built-in ORM framework. Leaves it up to developers to choose a library like SQLAlchemy

NoSQL Support

NoSQL Support
No built-in support for NoSQL databases but developers can use libraries to talk to MongoDB, DynamoDB etc.
NoSQL Support
Doesn't get in the way of using NoSQL, and they are supported just as well as a relational database. Read more here.
Web & Core Features

Admin Dashboard

Admin Dashboard
Through Plugins or Extensions
Through Plugins or Extensions
No built-in admin panel.
Admin Dashboard
Through Plugins or Extensions
Through Plugins or Extensions
Doesn't ship with one but 3rd party tools are available.

REST Support

REST Support
No built-in support but can be implemented easily. Read this guide to implement.
REST Support
Because it is a minimal framework, users can build a REST API themselves easily, or use a 3rd party library like Cornice.

Security

Security
No built-in protection. Must be handled by developers themselves or by using 3rd party extensions.
Security
Built-in protection against CSRF, but XSS vulnerabilities have been discovered in older versions.

Templating Library

Templating Library
Doesn't come with a built-in templating language or package. Developers can use Jinja2, Mako. See full list here
Templating Library
Doesn't ship with a default templating language and leaves it up to developers to add one. Jinja2 can be added to Pyramid. Another engine popular amongst Pyramid users is Chameleon .

Web Forms

Web Forms
No built-in support. Developers can use formencode or any other solution.
Web Forms
No built-in support. Prefers 3rd party Deform library.

Authentication

Authentication
Built-in implementation of HTTP Basic Access Authentication.
Authentication

Testing

Testing
Using WebTest and Nose.
Testing
Uses pytest for unit testing.

If you found this useful, please help us grow by sharing this article with your followers using the sharing icons. Every share or call out will help. Thank you.

Similar Comparisons

Speak Your Mind