コード例 #1
0
    def _populate_core_data(self):
        f = Finder(self.original_text)

        for attr in Attributes.ANALYSIS_ATTRIBUTES:
            find_function = getattr(f, f.define_finders(attr))
            value = find_function()
            self.core_data[attr] = value

        debug.show_full_data(self.core_data)