我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用factory.Faker()。
def _update_discussion_user(discussion_user): """Helper function to create a DiscussionUser and update its username""" if discussion_user.username is None: discussion_user.username = Faker('user_name').generate({}) discussion_user.last_sync = discussion_user.user.profile.updated_on discussion_user.save()