{"get",vlcObject_var_get,METH_VARARGS,"get(str) -> value Get a variable value."},
{"set",vlcObject_var_set,METH_VARARGS,"set(str, value) Set a variable value"},
{"config_get",vlcObject_config_get,METH_VARARGS,"get(str) -> value Get an option value."},
{"config_set",vlcObject_config_set,METH_VARARGS,"set(str, value) Set an option value"},
{"type",vlcObject_var_type,METH_VARARGS,"type(str) -> str Get a variable type"},
{"list",vlcObject_var_list,METH_VARARGS,"list() List the available variables"},
{"children",vlcObject_children,METH_VARARGS,"children() List the children ids"},
{"find_object",vlcObject_find_object,METH_VARARGS,"find_object(str) -> Object Find the object of a given type.\n\nAvailable types are : aout, decoder, input, httpd, intf, playlist, root, vlc, vout"},
{"find_id",vlcObject_find_id,METH_VARARGS,"find_id(int) -> Object Find an object by id"},
{"info",vlcObject_info,METH_VARARGS,"info() -> dict Return information about the object"},