v.0.11.2 added beautyful soup bs4

This commit is contained in:
tiijay
2025-11-21 15:06:04 +00:00
parent 3a8fb95f4f
commit c27b97fc71
9 changed files with 73 additions and 60 deletions

View 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