v.0.11.2 added beautyful soup bs4
This commit is contained in:
9
api-server/app/models/item.py
Normal file
9
api-server/app/models/item.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class Item(BaseModel):
|
||||
id: int
|
||||
name: str
|
||||
description: Optional[str] = None
|
||||
price: float
|
||||
Reference in New Issue
Block a user