SYMBOL INDEX (15 symbols across 4 files) FILE: calc.py function calculated_similarity (line 10) | def calculated_similarity(dom1_eigenvector, dom2_eigenvector, dimension): FILE: domtree2data.py class Converter (line 10) | class Converter: method __init__ (line 11) | def __init__(self, dom_tree, dimension): method get_eigenvector (line 19) | def get_eigenvector(self): method create_feature (line 29) | def create_feature(node): method feature_hash (line 38) | def feature_hash(node_feature): method calculate_weight (line 41) | def calculate_weight(self, node, node_id, feature_hash): method construct_eigenvector (line 54) | def construct_eigenvector(self, feature_hash, node_weight): FILE: htmlparser.py class DOMTree (line 14) | class DOMTree: method __init__ (line 15) | def __init__(self, label, attrs): class HTMLParser (line 20) | class HTMLParser: method __init__ (line 22) | def __init__(self, html): method get_dom_structure_tree (line 27) | def get_dom_structure_tree(self): method recursive_descendants (line 34) | def recursive_descendants(self, descendants, parent_id): FILE: htmlsimilarity.py function get_html_similarity (line 14) | def get_html_similarity(html_doc1, html_doc2, dimension=5000):