factory-boy
Installation
SKILL.md
factory_boy
Deep Knowledge: Use
mcp__documentation__fetch_docswith technology:factory-boyfor comprehensive documentation on all declarations, ORM integrations, and patterns.
Installation
pip install factory_boy faker
Basic Factory
import factory
from myapp.models import User
class UserFactory(factory.Factory):
class Meta:
model = User