Spaces:
Running
on
Zero
Running
on
Zero
File size: 453 Bytes
eb5ea89 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from fastapi import FastAPI
from fastapi.responses import JSONResponse
from fastapi.requests import Request
from fastapi.encoders import jsonable_encoder
from pydantic import BaseModel
app = FastAPI()
class Data(BaseModel):
id: int
name: str
@app.get("/data/")
async def read_data():
# implement data retrieval from Google Lens API
return JSONResponse(content={"message": "Data retrieved successfully"}, media_type="application/json") |