a sample book crud api using flask python 📚
pip install Flask
pip install gunicorn
flask run
http://127.0.0.1:5000/books
RESULT
[{"author":"Author 1","id":1,"title":"Book 1"},{"author":"Author 2","id":2,"title":"Book 2"},{"author":"Author 3","id":3,"title":"Book 3"}]
Enjoy practice it with your front-end 😃.