1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
<!-- markdownlint-disable -->
<p align="center">
<img src="https://github.com/litestar-org/branding/blob/e27cda904e0649e5065ac1c26df6a279ba5d06b5/assets/Branding%20-%20SVG%20-%20Transparent/Polyfactory%20-%20Banner%20-%20Inline%20-%20Light.svg#gh-light-mode-only" alt="Litestar - Polyfactory Logo - Light" width="100%" height="auto" />
<img src="https://github.com/litestar-org/branding/blob/e27cda904e0649e5065ac1c26df6a279ba5d06b5/assets/Branding%20-%20SVG%20-%20Transparent/Polyfactory%20-%20Banner%20-%20Inline%20-%20Dark.svg#gh-dark-mode-only" alt="Litestar - Polyfactory Logo - Dark" width="100%" height="auto" />
</p>
<div align="center">
<!-- prettier-ignore-start -->
| Project | | Status |
| --------- | :-- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| CI/CD | | [](https://github.com/litestar-org/polyfactory/actions/workflows/publish.yml) [](https://github.com/litestar-org/polyfactory/actions/workflows/ci.yml) [](https://github.com/litestar-org/polyfactory/actions/workflows/pages/pages-build-deployment) |
| Quality | | [](https://codecov.io/github/litestar-org/polyfactory) |
| Package | | [](https://badge.fury.io/py/polyfactory)    |
| Community | | [](https://reddit.com/r/litestarapi) [](https://discord.gg/X3FJqy8d2j) [](https://matrix.to/#/#litestar:matrix.org) [](https://blog.litestar.dev) [](https://twitter.com/LitestarAPI) [](https://blog.litestar.dev) |
| Meta | | [](https://github.com/litestar-org/polyfactory) [](https://github.com/python/mypy) [](https://spdx.org/licenses/) [](https://github.com/sponsors/litestar-org) [](https://pydantic.dev) [](https://github.com/astral-sh/ruff) [](https://github.com/astral-sh/ruff) [](https://sourcery.ai) [](#contributors-) |
<!-- prettier-ignore-end -->
</div>
<!-- markdownlint-restore -->
# Polyfactory
Polyfactory is a simple and powerful mock data generation library, based around type
hints and supporting dataclasses, typed-dicts, pydantic models, msgspec structs and more.
Polyfactory part of the Litestar project and as such actively maintained by a community of maintainers and contributors.
## Example
```python
from dataclasses import dataclass
from polyfactory.factories import DataclassFactory
@dataclass
class Person:
name: str
age: float
height: float
weight: float
class PersonFactory(DataclassFactory[Person]):
...
def test_is_person() -> None:
person_instance = PersonFactory.build()
assert isinstance(person_instance, Person)
```
That's it - with almost no work, we are able to create a mock data object fitting the `Person` class model definition.
This is possible because of the typing information available on the dataclass, which are used as a
source of truth for data generation.
The factory parses the information stored in the dataclass and generates a dictionary of kwargs that are passed to
`Person`.
## Documentation
Usage and API reference documentation is available on https://polyfactory.litestar.dev/.
## Installation
```shell
pip install polyfactory
```
## Relation to Pydantic-Factories
Prior to version 2, this library was known as [pydantic-factories](https://pypi.org/project/pydantic-factories/), a name
under which it gained quite a bit of popularity.
A main motivator for the 2.0 release was that we wanted to support more than just Pydantic models, something which also
required a change to its core architecture. As this library would no longer be directly tied to Pydantic, `polyfactory`
was chosen as its new name to reflect its capabilities; It can generate mock data for dataclasses, typed-dicts,
Pydantic, odmantic, and beanie ODM models, as well as custom factories.
## Contributing
This library is a community driven open source project. We welcome and encourage contributions. Please check out the
GitHub issues, read the contribution guide (at the repository's root), and you're always welcome
to [join our discord server](https://discord.gg/F4jPQzHpBU).
## Contributors โจ
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tbody>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Goldziher"><img src="https://avatars.githubusercontent.com/u/30733348?v=4?s=100" width="100px;" alt="Na'aman Hirschfeld"/><br /><sub><b>Na'aman Hirschfeld</b></sub></a><br /><a href="#maintenance-Goldziher" title="Maintenance">๐ง</a> <a href="#infra-Goldziher" title="Infrastructure (Hosting, Build-Tools, etc)">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=Goldziher" title="Tests">โ ๏ธ</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=Goldziher" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=Goldziher" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://scriptr.dev/"><img src="https://avatars.githubusercontent.com/u/45884264?v=4?s=100" width="100px;" alt="Jacob Coffee"/><br /><sub><b>Jacob Coffee</b></sub></a><br /><a href="#maintenance-JacobCoffee" title="Maintenance">๐ง</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=JacobCoffee" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=JacobCoffee" title="Tests">โ ๏ธ</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/provinzkraut"><img src="https://avatars.githubusercontent.com/u/25355197?v=4?s=100" width="100px;" alt="Janek Nouvertnรฉ"/><br /><sub><b>Janek Nouvertnรฉ</b></sub></a><br /><a href="#maintenance-provinzkraut" title="Maintenance">๐ง</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=provinzkraut" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=provinzkraut" title="Tests">โ ๏ธ</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=provinzkraut" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://schutt.io"><img src="https://avatars.githubusercontent.com/u/20659309?v=4?s=100" width="100px;" alt="Peter Schutt"/><br /><sub><b>Peter Schutt</b></sub></a><br /><a href="#maintenance-peterschutt" title="Maintenance">๐ง</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=peterschutt" title="Tests">โ ๏ธ</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=peterschutt" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=peterschutt" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://czaplicki.it/"><img src="https://avatars.githubusercontent.com/u/9108586?v=4?s=100" width="100px;" alt="Marek Czaplicki"/><br /><sub><b>Marek Czaplicki</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=mdczaplicki" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=mdczaplicki" title="Tests">โ ๏ธ</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/przybylop"><img src="https://avatars.githubusercontent.com/u/82805821?v=4?s=100" width="100px;" alt="Piotr Przybyลo"/><br /><sub><b>Piotr Przybyลo</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=przybylop" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/sygutss"><img src="https://avatars.githubusercontent.com/u/48909366?v=4?s=100" width="100px;" alt="sygutss"/><br /><sub><b>sygutss</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/issues?q=author%3Asygutss" title="Bug reports">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=sygutss" title="Code">๐ป</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/chrisbeardy"><img src="https://avatars.githubusercontent.com/u/20585410?v=4?s=100" width="100px;" alt="chrisbeardy"/><br /><sub><b>chrisbeardy</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=chrisbeardy" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/guacs"><img src="https://avatars.githubusercontent.com/u/126393040?v=4?s=100" width="100px;" alt="guacs"/><br /><sub><b>guacs</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=guacs" title="Code">๐ป</a> <a href="#infra-guacs" title="Infrastructure (Hosting, Build-Tools, etc)">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=guacs" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=guacs" title="Tests">โ ๏ธ</a> <a href="#maintenance-guacs" title="Maintenance">๐ง</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/VSHUMILIN97"><img src="https://avatars.githubusercontent.com/u/27234763?v=4?s=100" width="100px;" alt="Vadim"/><br /><sub><b>Vadim</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=VSHUMILIN97" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Simske"><img src="https://avatars.githubusercontent.com/u/2445660?v=4?s=100" width="100px;" alt="Simske"/><br /><sub><b>Simske</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Simske" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/sondrelg"><img src="https://avatars.githubusercontent.com/u/25310870?v=4?s=100" width="100px;" alt="Sondre Lillebรธ Gundersen"/><br /><sub><b>Sondre Lillebรธ Gundersen</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=sondrelg" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://mciszczon.pl/"><img src="https://avatars.githubusercontent.com/u/1078369?v=4?s=100" width="100px;" alt="Mateusz Ciszczoล"/><br /><sub><b>Mateusz Ciszczoล</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=mciszczon" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/pedro-bernardes/"><img src="https://avatars.githubusercontent.com/u/18899993?v=4?s=100" width="100px;" alt="Pedro Bernardes"/><br /><sub><b>Pedro Bernardes</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=phbernardes" title="Code">๐ป</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/lindycoder"><img src="https://avatars.githubusercontent.com/u/12926519?v=4?s=100" width="100px;" alt="Martin Roy"/><br /><sub><b>Martin Roy</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=lindycoder" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://matthewtyleraylward.com"><img src="https://avatars.githubusercontent.com/u/19205392?v=4?s=100" width="100px;" alt="Matthew Aylward "/><br /><sub><b>Matthew Aylward </b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Butch78" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/EltonChou"><img src="https://avatars.githubusercontent.com/u/12560310?v=4?s=100" width="100px;" alt="Elton H.Y. Chou"/><br /><sub><b>Elton H.Y. Chou</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=EltonChou" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nguyent"><img src="https://avatars.githubusercontent.com/u/576848?v=4?s=100" width="100px;" alt="Thang"/><br /><sub><b>Thang</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=nguyent" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DaanRademaker"><img src="https://avatars.githubusercontent.com/u/29598493?v=4?s=100" width="100px;" alt="Daan"/><br /><sub><b>Daan</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=DaanRademaker" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://lyz-code.github.io/blue-book/"><img src="https://avatars.githubusercontent.com/u/24810987?v=4?s=100" width="100px;" alt="Lyz"/><br /><sub><b>Lyz</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=lyz-code" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://portfolio.schiffer.pro/"><img src="https://avatars.githubusercontent.com/u/3502492?v=4?s=100" width="100px;" alt="Thorin Schiffer"/><br /><sub><b>Thorin Schiffer</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=thorin-schiffer" title="Code">๐ป</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Iipin"><img src="https://avatars.githubusercontent.com/u/52832022?v=4?s=100" width="100px;" alt="Iipin"/><br /><sub><b>Iipin</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Iipin" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/avihai-yosef"><img src="https://avatars.githubusercontent.com/u/79567307?v=4?s=100" width="100px;" alt="avihai-yosef"/><br /><sub><b>avihai-yosef</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=avihai-yosef" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/anthonyh209"><img src="https://avatars.githubusercontent.com/u/33107540?v=4?s=100" width="100px;" alt="anthonyh209"/><br /><sub><b>anthonyh209</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=anthonyh209" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://linkedin.com/in/roman-reznikov"><img src="https://avatars.githubusercontent.com/u/44291988?v=4?s=100" width="100px;" alt="Roman Reznikov"/><br /><sub><b>Roman Reznikov</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=ReznikovRoman" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/gigelu"><img src="https://avatars.githubusercontent.com/u/270697?v=4?s=100" width="100px;" alt="gigelu"/><br /><sub><b>gigelu</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=gigelu" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/roeeyn"><img src="https://avatars.githubusercontent.com/u/13385000?v=4?s=100" width="100px;" alt="Rodrigo Medina"/><br /><sub><b>Rodrigo Medina</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=roeeyn" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://gerritegnew.info/"><img src="https://avatars.githubusercontent.com/u/35822787?v=4?s=100" width="100px;" alt="Gerrit Egnew"/><br /><sub><b>Gerrit Egnew</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=gegnew" title="Code">๐ป</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/danielkatzan"><img src="https://avatars.githubusercontent.com/u/9249066?v=4?s=100" width="100px;" alt="danielkatzan"/><br /><sub><b>danielkatzan</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=danielkatzan" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/abdulhaq-e"><img src="https://avatars.githubusercontent.com/u/2532125?v=4?s=100" width="100px;" alt="Abdulhaq Emhemmed"/><br /><sub><b>Abdulhaq Emhemmed</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=abdulhaq-e" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/klimantje"><img src="https://avatars.githubusercontent.com/u/20017047?v=4?s=100" width="100px;" alt="klimantje"/><br /><sub><b>klimantje</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=klimantje" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tcrasset"><img src="https://avatars.githubusercontent.com/u/25140344?v=4?s=100" width="100px;" alt="Tom Crasset"/><br /><sub><b>Tom Crasset</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=tcrasset" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://git.roboces.dev/catalin"><img src="https://avatars.githubusercontent.com/u/45485069?v=4?s=100" width="100px;" alt="cฤtฤlin"/><br /><sub><b>cฤtฤlin</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=185504a9" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/adhtruong"><img src="https://avatars.githubusercontent.com/u/40660973?v=4?s=100" width="100px;" alt="Andrew Truong"/><br /><sub><b>Andrew Truong</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=adhtruong" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=adhtruong" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/anthonyjgraff"><img src="https://avatars.githubusercontent.com/u/59455370?v=4?s=100" width="100px;" alt="Anthony"/><br /><sub><b>Anthony</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=anthonyjgraff" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=anthonyjgraff" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=anthonyjgraff" title="Tests">โ ๏ธ</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/johnraz"><img src="https://avatars.githubusercontent.com/u/304164?v=4?s=100" width="100px;" alt="Jonathan Liuti"/><br /><sub><b>Jonathan Liuti</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=johnraz" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=johnraz" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=johnraz" title="Tests">โ ๏ธ</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://julio.li/"><img src="https://avatars.githubusercontent.com/u/1302493?v=4?s=100" width="100px;" alt="Julio Olivera"/><br /><sub><b>Julio Olivera</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=julioolvr" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=julioolvr" title="Tests">โ ๏ธ</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/g0di"><img src="https://avatars.githubusercontent.com/u/2545380?v=4?s=100" width="100px;" alt="Benoรฎt Godard"/><br /><sub><b>Benoรฎt Godard</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=g0di" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=g0di" title="Documentation">๐</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=g0di" title="Tests">โ ๏ธ</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/hsorsky"><img src="https://avatars.githubusercontent.com/u/36887638?v=4?s=100" width="100px;" alt="Henry Sorsky"/><br /><sub><b>Henry Sorsky</b></sub></a><br /><a href="#infra-hsorsky" title="Infrastructure (Hosting, Build-Tools, etc)">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wer153"><img src="https://avatars.githubusercontent.com/u/23370765?v=4?s=100" width="100px;" alt="Kim Minki"/><br /><sub><b>Kim Minki</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=wer153" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://www.timdumol.com/"><img src="https://avatars.githubusercontent.com/u/49169?v=4?s=100" width="100px;" alt="Tim Joseph Dumol"/><br /><sub><b>Tim Joseph Dumol</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=TimDumol" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/wangxin688"><img src="https://avatars.githubusercontent.com/u/36665036?v=4?s=100" width="100px;" alt="jeffry"/><br /><sub><b>jeffry</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=wangxin688" title="Code">๐ป</a></td>
</tr>
<tr>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Reskov"><img src="https://avatars.githubusercontent.com/u/4832451?v=4?s=100" width="100px;" alt="Sergey Kovalev"/><br /><sub><b>Sergey Kovalev</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Reskov" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Vegemash"><img src="https://avatars.githubusercontent.com/u/2470379?v=4?s=100" width="100px;" alt="Isaac Jackson"/><br /><sub><b>Isaac Jackson</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Vegemash" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/nisemenov"><img src="https://avatars.githubusercontent.com/u/117774141?v=4?s=100" width="100px;" alt="Nikita Semenov"/><br /><sub><b>Nikita Semenov</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=nisemenov" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=nisemenov" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://mikebian.co/"><img src="https://avatars.githubusercontent.com/u/150855?v=4?s=100" width="100px;" alt="Michael Bianco"/><br /><sub><b>Michael Bianco</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=iloveitaly" title="Code">๐ป</a> <a href="https://github.com/litestar-org/polyfactory/commits?author=iloveitaly" title="Documentation">๐</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/marcuslimdw"><img src="https://avatars.githubusercontent.com/u/42759889?v=4?s=100" width="100px;" alt="Marcus"/><br /><sub><b>Marcus</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=marcuslimdw" title="Code">๐ป</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Rub1kCube"><img src="https://avatars.githubusercontent.com/u/90901892?v=4?s=100" width="100px;" alt="Rub1kCube"/><br /><sub><b>Rub1kCube</b></sub></a><br /><a href="https://github.com/litestar-org/polyfactory/commits?author=Rub1kCube" title="Tests">โ ๏ธ</a></td>
</tr>
</tbody>
</table>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification.
Contributions of any kind welcome!
|