Create a FastAPI project with the following specifications: A Student resource. Each student will have: Id (int) Name(str) Age (int) Sex (str) Height (float) For data storage, use an in-memory storage (Python dictionary) Create endpoints to do the following: Create a Student resource Retrieve a Student resource (one Student and many Students) Update a Student resource Delete a Student resource Push your project to a public git repository and post you submission here Goodluck!
NOTE: You are not required to use Pydantic type enforcement. Just basic Python.# Altschool_Ass_Fastapi