14 lines
176 B
Python
14 lines
176 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class ParseHtmlVo(BaseModel):
|
|
"""
|
|
解析html的vo类
|
|
"""
|
|
|
|
# 地址
|
|
url: str
|