remove_attribute_ns method

remove_attribute_ns(namespace_uri, local_name)

Removes an attribute by local name and namespace URI.

Returns

True if find and remove the attribute, otherwise false.

def remove_attribute_ns(self, namespace_uri, local_name):
    ...
Parameter Type Description
namespace_uri str The attribute namespace URI.
local_name str The attribute local name.

See Also