Spaces:
Sleeping
Sleeping
File size: 303 Bytes
1eecf37 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI(title="Analyze sentiment of text")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
from Sentiment import router |