v0.6.0 - Mimesis support!
Pre-release
Pre-release
Adds a new CLI option -p
that allows you to specify your provider of choice. Faker and Mimesis are currently supported.
Note that the column names will need to change to match your provider of choice and templates are only supported with Faker.
Below is an a timed example of generating 100,000 usernames with Faker vs. Mimesis.
❯ time poetry run fake -n 100000 user_name > /dev/null
11.18s user 0.20s system 98% cpu 11.570 total
vs.
❯ time poetry run fake -p mimesis -n 100000 username > /dev/null
1.58s user 0.19s system 93% cpu 1.902 total