On 15/03/2013 at 15:55, xxxxxxxx wrote:
Hello everybody,
i feel a bit stupid, but I have no idea and I do not really know the right keywords for finding solutions.
I have a plugin.tag, which is doing some stuff and storing that stuff in a list.
Now Id like to continue to work with the list in a python-tag. How can I get that list from the plugin?
For example:
class PlgTAG(plugins.TagData) :
list_ = ["Hello", 12.3, "Everybody"]
def Init(self, node) :
return True
def Message(self, node, type, data) :
return True
...
Thanks and greetings
rown