Coding/Programming LEDs on the Blinkstick Strip

I have a Blinkstick Strip and am unable to use the same python code that was used for the blinkstick pro to manipulate the light settings. Does anyone know what I can do first to get the device working? Here is my code:

#Import blinkstick module
from blinkstick import blinkstick

#Find the first BlinkStick
bstick = blinkstick.find_first()

print(bstick.get_serial())

#Set the color red on the 12th LED of R channel
#bstick.set_color(channel=0, index=3, name='red')

print(bstick.get_mode())
bstick.set_mode(2)
print(bstick.get_mode())

bstick.set_color(channel = 0, index = 0, name = "red")

This is the output:

Hello,
As a python example program for use the leds I suggest this:

#Import blinkstick module

from blinkstick import blinkstick

from time import sleep

#Find the first BlinkStick

bstick = blinkstick.find_first()

#Set the colors red green and bly of all the LEDs

colors = [“red”,“green”,“blue”,“yellow”]

number_of_leds = 10

while 1:

for c in colors:

    for i in range(number_of_leds):

        bstick.set_color(channel=0, index=i, name=c)

        sleep(0.05)