From 03b85a970e976b44e867a9dd54957a986688b71a Mon Sep 17 00:00:00 2001 From: Michael Herman Date: Sat, 7 Dec 2019 08:56:25 -0700 Subject: [PATCH] add bit about Masonite --- .../10-other-web-frameworks.markdown | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/content/pages/04-web-development/10-other-web-frameworks.markdown b/content/pages/04-web-development/10-other-web-frameworks.markdown index 89635e140..d4f680e6f 100644 --- a/content/pages/04-web-development/10-other-web-frameworks.markdown +++ b/content/pages/04-web-development/10-other-web-frameworks.markdown @@ -82,6 +82,20 @@ requests and responses via Python objects and does not integrate session handling or [database](/databases.html) access. +## Masonite + +[Masonite](https://docs.masoniteproject.com/) is a modern, developer +centric, batteries-included Python web framework. It uses the MVC +(Model-View-Controller) architecture pattern and comes with a lot of +functionality out of the box with an extremely extendable architecture. + +Check out the following resources to lean more: + +1. [5 reasons why people are choosing Masonite over Django](https://dev.to/masonite/5-reasons-why-people-are-choosing-masonite-over-django-ic3) +1. [MasoniteCasts](https://masonitecasts.com/) +1. [Dockerizing Masonite with Postgres, Gunicorn, and Nginx](https://testdriven.io/blog/dockerizing-masonite-with-postgres-gunicorn-and-nginx/) + + ### Other web framework resources * This [roundup of 14 minimal Python frameworks](http://codecondo.com/14-minimal-web-frameworks-for-python/) contains both familiar and less known Python libraries.