-
Hi! I'm using Field to define JSON Schema. The regex randomisation is working, but it would be more useful if the seed would work as well.
Minimal working example:
```python
from pydantic import …
-
It would be a nice feature to have access to the already generated field values in a customised generator scenario, e.g.
```python
from typing import Any
from pydantic_factories import ModelFacto…
-
When I have
1. A model defined where some fields are Union of types and None and
2. `__allow_none_optionals__= True`
I'm getting an error: `RecursionError: maximum recursion depth exceeded whil…
-
Hi there,
I am the author of [Starlite][https://github.com/starlite-api/starlite] and a user requested we support pyright better. I'm trying to set it up as part of our pre-commit configuration, wh…
-
Hi,
I have the problem integrating your tool with my models to keep correct constraints keys etc.
Please give me some examples or tips.
-
### What happened + What you expected to happen
While running a simple lightgbm cv hpo script taken from [your code repo](https://github.com/ray-project/ray/blob/master/python/ray/tune/examples/light…
-
I wanted to check the temperature of this project and so I ran a quick, very simple, benchmark with `wrk` and the default example:
```Python
from fastapi import FastAPI
app = FastAPI()
@ap…
-
Hi @Goldziher, I'm having issues using `pydantic_factories` with `pytest_freezegun`, the problem is that pytest_factories is not able to find the factory function for the `datetime` attributes
```p…
-
Hi,
Given the following Pydantic model and factory:
```python
from pydantic import BaseModel, condecimal
from pydantic_factories import ModelFactory
class MyModel(BaseModel):
qty: condecim…
mtmvu updated
2 years ago
-
As a user, I want to easily extend the available mappers of the pydantic model attribute types, for example, if there is a class that has an attribute type not supported by `pydantic-factories` and in…