Create REST application where we can give an example of CRUD operations and best practices for mostly used languages and frameworks
The app, called CompanyRegister should be able to:
- Add new company ---> Create
- List all companies ---> Retreive
- Update a company ---> Update
- Delete a company ---> Delete
Flask is realy super-easy and lightweight web appliations framework. If you are familiar with any other framework, transition to Flaks is matter of hours and even it is really simple to learn for beginers.
In addition for the example I will use Flask-RESTIX extension. The extension encourages best practices with minimal setup.