タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

Pythonとxmlとmoduleに関するdarwiniaのブックマーク (2)

  • XMLモジュールまとめ - /* Grid Thinking */

    Python標準: xml.dom 標準DOM規格を採用(JAVASCRIPTがDOMをアクセスするのもこれを使用している)、 ドキュメント全体に対して自由に解析&修正に適してる。DOM Level 2もサポート。 xml.dom.minidom コンパクトに実現、より小さい、DOM Level 1をサポート。 xml.dom.pulldom SAXモデムからDOM関係の一部を抽出。 xml.parsers.expat Expat(http://www.libexpat.org/)はPythonベースのチェックなしのパーサで、 ストリーム方式、非常に速い。 xml.sax sax読込のみで、一回アクセスで一部しか読み込めない。いわゆるイベントーモデルを採用してる。 外部モジュール(The third-party) PyXML(http://pyxml.sourceforge.net/) P

    XMLモジュールまとめ - /* Grid Thinking */
  • bridge - deFuze.org - Trac

    Latest version: 0.3.5 This page is updated for bridge 0.3.5 What is it? bridge is a Python XML library trying to provide a high level and clean interface for manipulating XML documents. Download it easy_install -U bridge Tarballs http://www.defuze.org/oss/bridge/ svn co https://svn.defuze.org/oss/bridge/ W00t another XML library for Python? Well yes and no. bridge aims at providing a common API to

  • 1