fast json api code example
Example 1: how to generate a serializer fast json api
rails g serializer Movie name year
# Movie is the title
# name and year are the attributes
Example 2: fast api
pip install fastapi
pip install uvicorn # ASGI server
pip install starlette # lightweight ASGI framework/toolkit
pip install pydantic # Data validation and type annotations
# OR
pip install fastapi uvicorn starlette pydantic