How FAST API (backend) communicates with the frontend
Frontend sends data through the URL.URL is part of the request sent by frontend.
from fastapi import FastAPI
app = FastAPI()
posted = { 1 :
{
"title" : "new post",
"content" : "i am in hunza gilgit..."
...
fast-api-blog.hashnode.dev2 min read