https://github.com/arjun-ms/learning-fast-api
https://github.com/arjun-ms/learning-fast-api
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/arjun-ms/learning-fast-api
- Owner: arjun-ms
- Created: 2025-05-06T07:33:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-24T04:57:21.000Z (about 1 year ago)
- Last Synced: 2025-06-09T15:57:17.931Z (about 1 year ago)
- Language: Python
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Tasks to Complete
- [x] Setup basic fastapi project
- [x] Install and connect postgres
- [x] Create signup API along with `user` table
- [x] Check whether data is inserted to DB
- [x] Login - JWT based auth
- [x] Handle Invalid Credentials
- [x] Create a Todo - ask for a `time to be done`(`Deadline`) also
- [x] Get All Todos ; Get Todos by ID
- [x] Delete Todo
- [x] Update Todo
- [x] Mark a Todo as completed
- [x] Group by `completed`, `to be done` & `time elapsed`