Skip to content

Latest commit

 

History

History
50 lines (26 loc) · 680 Bytes

readme.md

File metadata and controls

50 lines (26 loc) · 680 Bytes

ToDo-Flask-Application

  • This is a back-end RESTful API (ToDo WebAPI) built with Python using Flask (a web framework).

  • This implements CRUD operations

  • CONCEPTS COVERED :

    • authentication

    • databases

  • The users will be able to,

    • Login

    • Add a new ToDo task

    • Delete a ToDo task

    • Complete a ToDo task

  • The admin will be able to,

    • Create new user

    • Delete a user

    • Promote a user to admin

    • View all users

    • View a specific user

Python Libraries used

  • flask

  • flask_sqlalchemy

  • werkzeug

  • Jwt

  • functools

Reference

Create a RESTful API