Thursday, April 8, 2021

Patrick Kennedy: What is Werkzeug?

I wrote a blog post on TestDriven.io explaining what Werkzeug is and how Flask uses it for its core HTTP functionality. In this blog post, you’ll develop your own WSGI-compatible application using Werkzeug to create a Flask-like web framework:

https://testdriven.io/blog/what-is-werkzeug/

This blog post looks at explores the following functionality provided by Werkzeug (which Flask uses):

  1. Request processing
  2. Response handling
  3. URL routing
  4. Middleware
  5. HTTP utilities
  6. Exception handling
  7. Development server (with hot reloading)

To help explain this functionality, a web application is built using Werkzeug:

https://gitlab.com/patkennedy79/werkzeug_movie_app



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...