Random User Generator with Mimesis

  • Share this:

Code introduction


This function generates a random user with a full name, email, and phone number using the Person class from the Mimesis library.


Technology Stack : Mimesis

Code Type : Function

Code Difficulty : Intermediate


                
                    
import random
from mimesis import Person, Address, AddressUS, Company, Data

def generate_random_user():
    # Generate a random user with a full name, email, and phone number
    full_name = Person().full_name()
    email = Person().email()
    phone = Person().phone()

    return full_name, email, phone                
              
Tags: