A simple REST API built using Python and FastAPI that allows users to create, read, update, and delete notes.
This project is designed for beginners who want to learn backend development and APIs.
- Create a new note
- Get all notes
- Get a single note by ID
- Update a note
- Delete a note
- Interactive API documentation (Swagger UI)
- Python 3
- FastAPI
- Uvicorn
- Pydantic
pip install fastapi uvicornpython -m uvicorn main:app --reload