0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Django で Faker と Factory Boy で雑に作成する。

Factory部分

class ProductFactory(factory.django.DjangoModelFactory):
    class Meta:
        model = Product

    name = factory.LazyFunction(fake.sentence)
    description = factory.LazyFunction(fake.paragraph)
    price = factory.LazyFunction(
        lambda: fake.pydecimal(left_digits=10, positive=True)
    )

Django コマンドでダミーデータを作成する。以下の実装で10レコード分をDBへ登録する。

class Command(BaseCommand):
    help = "Your custom command description"

    def handle(self, *args, **options):
        authors = ProductFactory.create_batch(10)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?