image_pdfimage_print

Let’s get started with the Python toolkit. There are a few options to get going with Windows:

  1. Use physical or virtual Windows 8.1 (this is what I will be using on a Surface Pro 3 no-less)
  2. Use physical or virtual Windows Server

Quick Steps

  1. Download and install Babun (pronounced Baboon) – This is one of the slicker and easier to setup Windows Shells.
  2. After Babun installs it will automatically start, you should see the below screenshot.
  3. Run the following command to download to use setuptools bootstrap installer:
  4. Run
  5. Run the following command to install:
  6. Run the following command to download the Pure Storage Python Toolkit:
  7. Run the following command to install the Python Requests module which provides HTTP capabilities:

    Note: I had already installed this so you’ll see the requirement has already been satisfied.
  8. Now let’s install the Pure Storage Python Toolkit 1.4.0:

Now we are done installing and setting up the environment. On to creating the first simple script to create a connection and a volume. Most of of the steps below are about commands to use in VIM (Vi Improved).


  1. Note: This is going to create a Python file named New-PfaVolume… dang that file name looks awfully similar.

  2. Note: Just type “I” (no quotes) to enter INSERT mode.
  3. The next few lines are the core of the script for connecting to the FlashArray and creating a volume. The following lines will create a FlashArray using the purestorage library. Then we will assign the array object by using the FlashArray with the various properties, then finally create a TEST-VOLUME1 that is 500GB in size.from purestorage import FlashArray
    array = FlashArray(target=”<IP>”, username=”pureuser”, password””=”pureuser”)
    array.create_volume(“TEST-VOLUME1”, “500G”)
  4. The next few lines with exit out of insert mode, write the file (:w) and quit VIM (:q)

     
  5. Now time to run the New-PfaVolume.py script:

Super simple and demonstrates using our Python Toolkit from a Windows machine. Next part we’ll create a host, connect volumes, and take snapshots. But in the meantime if you are interested take a look at the Programming Interfaces on the Pure1 Community or visit the Online Quick Start Guide to do some more work on your own.

I’m just starting on some other examples using the Python Toolkit so there will be others coming in between my PowerShell SDK/Toolkit work. What’s next…C# is what I’m thinking about.

Thanks,
barkz