搜索结果
查询Tags标签: BaseModel,共有 7条记录-
pydantic Schema
1.根据模型自动创建JSON结构 from enum import Enum from pydantic import BaseModel, Fieldclass FooBar(BaseModel):count: intsize: float = Noneclass Gender(str, Enum):male = malefemale = femaleother = othernot_given = not_givenclass MainModel(BaseModel):&q…
2022/6/16 23:23:41 人评论 次浏览 -
pydantic导出模型
1.model.dict(...)将模型转换为字典的主要方法。子模型将递归转换为字典。 参数如下:include:要包含在返回的字典中的字段 exclude:要从返回的字典中排除的字段 by_alias:字段别名是否应用作返回字典中的键 exclude_unset:创建模型时未显式设置的字段是否应从返回的字…
2022/6/16 23:21:17 人评论 次浏览 -
Sqlite
using App41.Models; using SQLite; using System; using System.Collections.Generic; using System.IO; using System.Text; namespace App { public class SQLiteHelper { public string connstr = Path.Combine(Environment.GetFolderPath(Environmen…
2022/1/25 19:05:49 人评论 次浏览 -
Python - pydantic(2)嵌套模型
简单的栗子class User(BaseModel):id: int # 必填字段name: str = "小菠萝" # 有默认值,选填字段signup_ts: Optional[datetime] = Nonefriends: List[int] = [] # 列表中元素是 int 类型,或可以直接转成 int 的类型# 关键字参数 user = User(id="1&q…
2021/9/12 22:34:39 人评论 次浏览 -
Python - pydantic(2)嵌套模型
简单的栗子class User(BaseModel):id: int # 必填字段name: str = "小菠萝" # 有默认值,选填字段signup_ts: Optional[datetime] = Nonefriends: List[int] = [] # 列表中元素是 int 类型,或可以直接转成 int 的类型# 关键字参数 user = User(id="1&q…
2021/9/12 22:34:39 人评论 次浏览 -
HttpRunner3源码阅读:2. 模型定义
models.py昨天体验的时候我们分别执行了httprunner -h,httprunner startproject demo, httprunner run demo,但是源码中其调用了其他文件中的方法所以暂时先不分析cli.py了,先从根本开始models.py可用资料 typing[类型提示]: https://docs.python.org/zh-cn/3/library/typ…
2021/8/4 1:05:53 人评论 次浏览 -
HttpRunner3源码阅读:2. 模型定义
models.py昨天体验的时候我们分别执行了httprunner -h,httprunner startproject demo, httprunner run demo,但是源码中其调用了其他文件中的方法所以暂时先不分析cli.py了,先从根本开始models.py可用资料 typing[类型提示]: https://docs.python.org/zh-cn/3/library/typ…
2021/8/4 1:05:53 人评论 次浏览