import uuid

class UUID:
    """UUID is a simple library that generates a uuid"""
    
    def generate_UUID(self):
        """generate a uuid"""
        return uuid.uuid4()