當前位置: 首頁>>代碼示例>>Python>>正文


Python ElementHelper.print_element方法代碼示例

本文整理匯總了Python中util.ElementHelper.print_element方法的典型用法代碼示例。如果您正苦於以下問題:Python ElementHelper.print_element方法的具體用法?Python ElementHelper.print_element怎麽用?Python ElementHelper.print_element使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在util.ElementHelper的用法示例。


在下文中一共展示了ElementHelper.print_element方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: print_cluster_record

# 需要導入模塊: from util import ElementHelper [as 別名]
# 或者: from util.ElementHelper import print_element [as 別名]
 def print_cluster_record(cls, clusters, doctree):
     ElementHelper.print_element(doctree)
     for cluster in clusters:
         if len(cluster)>1:
             print '===='*10
             nodes = clusters[cluster]
             for node in nodes:
                 print ElementHelper.get_xpath_by_element(node, doctree), node.get(py)
開發者ID:actlea,項目名稱:TopicalCrawler,代碼行數:10,代碼來源:api2.py

示例2: WISH

# 需要導入模塊: from util import ElementHelper [as 別名]
# 或者: from util.ElementHelper import print_element [as 別名]


if __name__ == '__main__':
    import lxml.etree as etree
    doc1 = etree.fromstring(html1)
    doc2 = etree.fromstring(html2)

    root1 = ElementHelper.get_root(doc1)
    root2 = ElementHelper.get_root(doc2)
    w = WISH()
    # print w.similar_check(root1, root2)
    dir = 'D:/OtherWork/CETD_DATA/BBC/original/0.htm'
    dir = '/mnt/UbutunShare/Work/CETD_DATA/BBC/original/71.htm'
    dir = '/mnt/UbutunShare/Work/CETD_DATA/Final/original/60.html'
    # dir = '/mnt/UbutunShare/Work/CETD_DATA/wiki/original/1.htm'
    from util import FileHelper
    content = FileHelper.readUTF8File(dir)
    doc = HtmlHelper.create_doc(content, 'utf-8')
    doc = HtmlHelper.pre_process_domtree(doc)
    article,title = HtmlHelper.get_article(doc, False)
    ElementHelper.print_element(doc)
    print article.encode('utf-8')







開發者ID:actlea,項目名稱:TopicalCrawler,代碼行數:24,代碼來源:api3.py


注:本文中的util.ElementHelper.print_element方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。