sentiment_analyzer / schemas.py
xclasscode's picture
Create schemas.py
6801092
raw
history blame
No virus
340 Bytes
class SentimentResultBase(BaseModel):
positive_score: float
negative_score: float
neutral_score: float
class SentimentResultCreate(SentimentResultBase):
pass
class SentimentResult(SentimentResultBase):
id: int
created_at: datetime
user_id: int
text_id: int
class Config:
from_attributes = True