Tim,
This is not so much of a problem with the API, but rather how you
are using it. If you have dynamic labels or any kind of data for that
matter, the easiest thing to do is create a function that returns a
list of all of them. Here is an example of one that generates a list
of random numbers
def generate_list():
list = []
for i in range(10):
list.append(random.randint(0,10))
return list
You would then use it with the wrapper like so
G.label(*generate_list())
Notice the *, that means to pass the items in a list as arguments to
the function. It works for static lists too: G.label(*[1,2,3,4,5])
I hope that this clears it up!
Justin