Skip to content

Commit 37320e7

Browse files
authored
feat(python): add --pydantic-base-model option (#2604)
1 parent 29bb816 commit 37320e7

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

packages/quicktype-core/src/language/Python/PythonRenderer.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,11 @@ export class PythonRenderer extends ConvenienceRenderer {
138138

139139
if (hasNull !== null) {
140140
let rest: string[] = [];
141-
if (!this.getAlphabetizeProperties() && this.pyOptions.features.dataClasses && _isRootTypeDef) {
141+
if (
142+
!this.getAlphabetizeProperties() &&
143+
(this.pyOptions.features.dataClasses || this.pyOptions.pydanticBaseModel) &&
144+
_isRootTypeDef
145+
) {
142146
// Only push "= None" if this is a root level type def
143147
// otherwise we may get type defs like List[Optional[int] = None]
144148
// which are invalid
@@ -177,6 +181,9 @@ export class PythonRenderer extends ConvenienceRenderer {
177181

178182
protected declarationLine(t: Type): Sourcelike {
179183
if (t instanceof ClassType) {
184+
if (this.pyOptions.pydanticBaseModel) {
185+
return ["class ", this.nameForNamedType(t), "(", this.withImport("pydantic", "BaseModel"), "):"];
186+
}
180187
return ["class ", this.nameForNamedType(t), ":"];
181188
}
182189

@@ -196,7 +203,7 @@ export class PythonRenderer extends ConvenienceRenderer {
196203
}
197204

198205
protected emitClassMembers(t: ClassType): void {
199-
if (this.pyOptions.features.dataClasses) return;
206+
if (this.pyOptions.features.dataClasses || this.pyOptions.pydanticBaseModel) return;
200207

201208
const args: Sourcelike[] = [];
202209
this.forEachClassProperty(t, "none", (name, _, cp) => {
@@ -236,7 +243,7 @@ export class PythonRenderer extends ConvenienceRenderer {
236243
properties: ReadonlyMap<string, ClassProperty>,
237244
propertyNames: ReadonlyMap<string, Name>
238245
): ReadonlyMap<string, ClassProperty> {
239-
if (this.pyOptions.features.dataClasses) {
246+
if (this.pyOptions.features.dataClasses || this.pyOptions.pydanticBaseModel) {
240247
return mapSortBy(properties, (p: ClassProperty) => {
241248
return (p.type instanceof UnionType && nullableFromUnion(p.type) != null) || p.isOptional ? 1 : 0;
242249
});
@@ -246,7 +253,7 @@ export class PythonRenderer extends ConvenienceRenderer {
246253
}
247254

248255
protected emitClass(t: ClassType): void {
249-
if (this.pyOptions.features.dataClasses) {
256+
if (this.pyOptions.features.dataClasses && !this.pyOptions.pydanticBaseModel) {
250257
this.emitLine("@", this.withImport("dataclasses", "dataclass"));
251258
}
252259

packages/quicktype-core/src/language/Python/language.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,18 @@ export const pythonOptions = {
2727
"3.6"
2828
),
2929
justTypes: new BooleanOption("just-types", "Classes only", false),
30-
nicePropertyNames: new BooleanOption("nice-property-names", "Transform property names to be Pythonic", true)
30+
nicePropertyNames: new BooleanOption("nice-property-names", "Transform property names to be Pythonic", true),
31+
pydanticBaseModel: new BooleanOption("pydantic-base-model", "Uses pydantic BaseModel", false)
3132
};
3233

3334
export class PythonTargetLanguage extends TargetLanguage {
3435
protected getOptions(): Array<Option<FixMeOptionsAnyType>> {
35-
return [pythonOptions.features, pythonOptions.justTypes, pythonOptions.nicePropertyNames];
36+
return [
37+
pythonOptions.features,
38+
pythonOptions.justTypes,
39+
pythonOptions.nicePropertyNames,
40+
pythonOptions.pydanticBaseModel
41+
];
3642
}
3743

3844
public get stringTypeMapping(): StringTypeMapping {

0 commit comments

Comments
 (0)