feat: use faker for realistic people data in create_random_data#728
Open
Pra26nav wants to merge 1 commit intowagtail:mainfrom
Open
feat: use faker for realistic people data in create_random_data#728Pra26nav wants to merge 1 commit intowagtail:mainfrom
Pra26nav wants to merge 1 commit intowagtail:mainfrom
Conversation
fix: sort faker import alphabetically
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #...
Related to #676
Description
This PR improves the create_random_data management command by replacing "lorem_ipsum" with "faker" for generating "Person" objects, and introduces a selected list of bakery-specific job titles.
Previously, people were created with "lorem_ipsum.words(1)" for names and job titles, producing unrealistic output like "lorem Baker" or "ipsum Manager". This change generates realistic first and last names via faker, paired with domain-appropriate job titles such as "Head Baker", "Pastry Chef", and "Sous Chef".
Changes
Testing
Tested locally by running:
python manage.py create_random_data 5 5 0
Verified via Django shell as people are getting created with realistic names and bakery job titles.
AI usage
Used Claude (claude.ai) for debugging help. The idea to combine faker with a selected list of bakery job titles came from reading the #676 discussion.