Work with the Perfecto Lab User Management Utility

Admin users in private and public clouds can add or delete users, add or modify roles, create groups, and so on. A limited number of update or delete operations can easily be done using the cloud administrator window, but they become painful when a bulk update is required.

Learn how to use a Python UI utility to create and update bulk user details in public and private clouds.

Prerequisites

  • Admin credentials for a private or public cloud

  • Python (Windows only)

    Mac/Unix comes with a pre-existing Python installation.

Python installation

Windows:

  1. Download the latest Python 2.7.* version (https://www.python.org/downloads/).
  2. Install the package. Consider installing it using the default directory path, for example Python27.
  3. In the Environment variable, under the "PATH" system variable, add the <PythonInstallationDirectory> and <PythonInstallationDirectory>\Scripts paths.

Mac/Unix:

    If needed, update the Python version by downloading the latest version from https://www.python.org/downloads/mac-osx/.

Package installation

If you are installing on Mac/Unix, use the SUDO command.

To install:

  1. Open a command prompt or terminal window in Windows or Mac, respectively.
  2. Install the package by running the following commands sequentially:
    1.  pip install requests
    2.  pip install openpyxl
    3.  pip install Tkinter

Utility usage