lorem-pysum 1.4.6

Creator: bradpython12

Last updated:

Add to Cart

Description:

lorempysum 1.4.6

Lorem Pysum
Generate instances of Pydantic models.





Install
Lorem Pysum is on PyPI and can be installed with:
poetry add lorem-pysum

or
pip install lorem-pysum

Usage
Given a Pydantic model type Lorem Pysum can generate instances of that model with
randomly generated values.
Example
from enum import auto, Enum
from uuid import UUID

import lorem_pysum
from pydantic import BaseModel


class Flavor(Enum):
MOCHA = auto()
VANILLA = auto()


class Brand(BaseModel):
brand_name: str


class Coffee(BaseModel):
id: UUID
description: str
cream: bool
sweetener: int
flavor: Flavor
brand: Brand


lorem_pysum.generate(Coffee)
# Result -> id=UUID('550342d5-13ce-4ee1-b73d-d3c5e81607ce') description='string' cream=True sweetener=0 flavor=<Flavor.MOCHA: 1> brand=Brand(brand_name='string')

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.