Building a Basic CRUD Flask App With Dataclass in Python

Jerry An
Level Up Coding
Published in
3 min readMar 18, 2022

--

One exciting feature coming in Python 3.7 is the dataclass. I recently started using this module in a couple of web backend projects, and I enjoy it.

In this post, we will build a basic CRUD flask app that as an example of the dataclass.

Photo by Venti Views on Unsplash

Requirements

  • Flask (the popular web framework)

--

--