Results 1-25 of about 505 results found for 'elementtree' in 0.31 seconds
 1 2345678910...

__init__.py
# $Id: //people/fredrik/elementtree/elementtree/__init__.py#1 $
# elementtree package
Language: Python
LOC: 0
Spider_20090529_inc : Asaph - pyasaph (project search) : .../lib/python2.3/site-packages/elementtree/__init__.py

__init__.py
# $Id: __init__.py,v 1.1 2004/08/31 19:18:15 ca8272 Exp $
# elementtree package
Language: Python
LOC: 0
Spider_20090227_inc : monmaster (project search) : .../009/monmaster/monmaster/elementtree/__init__.py

test-04-etree.py
#import elementtree.ElementTree as ET
import xml.etree.ElementTree as ET
tree = ET.parse("../data/xml/6bus-bbglc.xml")
Language: Python
LOC: 4
Google : wxpylon - open source power system and ene...lysis (project search) : .../wxpylon/trunk/wxpylon/sandbox/test-04-etree.py

setup.py
#!/usr/bin/env python
#
# Setup script for the elementtree library
# $Id: setup.py 2145 2004-10-09 12:42:27Z fredrik $
#
Language: Python
LOC: 17
Spider_20090228_inc : Spheral++ - Spheral (project search) : .../src/thirdPartyLibs/elementtree-1.2.1-20041009.tgz.---/elementtree-1.2.1-20041009/setup.py

setup.py
#!/usr/bin/env python
#
# Setup script for the elementtree library
# $Id: setup.py 2145 2004-10-09 12:42:27Z fredrik $
#
Language: Python
LOC: 17
Spider_20090120_inc : Python Internet Engine (project search) : .../pie/tarballs/elementtree-1.2.1-20041009.zip.---/elementtree-1.2.1-20041009/setup.py

keys.py
import os.path, urllib
try:
    import cElementTree as ElementTree
except:
    from elementtree import ElementTree
Language: Python
LOC: 70
Google : isbndb-py - Python wrapper for searching I...b.com (project search) : .../i/isbndb-py/trunk/isbndb/keys.py

setup_keys.py
from isbndbkey import KEY
def make_keyfiles():
    x = ElementTree.Element('Keys')
    y = ElementTree.Element('key')
    y.text = KEY
Language: Python
LOC: 25
Google : isbndb-py - Python wrapper for searching I...b.com (project search) : .../i/isbndb-py/trunk/tests/setup_keys.py

TidyHTMLTreeBuilder.py
#
# ElementTree
# $Id: TidyHTMLTreeBuilder.py 2304 2005-03-01 17:42:41Z fredrik $
#
Language: Python
LOC: 1
BerliOS (SVN) : Foopanel (project search) : .../foopanel/foopanel/lib/elementtree/TidyHTMLTreeBuilder.py

TidyHTMLTreeBuilder.py
#
# ElementTree
# $Id: TidyHTMLTreeBuilder.py 2304 2005-03-01 17:42:41Z fredrik $
#
Language: Python
LOC: 1
Google : html2fb - Python html to FictionBook conve...o fb2 (project search) : .../html2fb/trunk/wxoptparse/elementtree/TidyHTMLTreeBuilder.py

dbimport.py
class IImportFilter(object):
    def getsongxml(self,files):
        """@rtype: lxml.etree.ElementTree"""
        pass
interop.anchor.define('importfilter',IImportFilter)
Language: Python
LOC: 6
BerliOS (SVN) : Zpevnikator (project search) : .../trunk/zp7/lib/anchors/dbimport.py

TidyHTMLTreeBuilder.py
#
# ElementTree
# $Id: TidyHTMLTreeBuilder.py 2304 2005-03-01 17:42:41Z fredrik $
#
Language: Python
LOC: 1
Spider_bigsf001 : Endian Firewall Community (project search) : .../smart-0.52/smart/util/elementtree/TidyHTMLTreeBuilder.py

xml_serializer.py
# using enough of it." -- various
# importing this module is fairly slow because it has to load several
# ElementTree bits
from bzrlib import registry
from bzrlib.trace import mutter, warning
Language: Python
License: GPL
(C) 2005, 2006 Canonical Ltd
LOC: 126
Spider_bigsf001 : Endian Firewall Community (project search) : .../EFW-2.2-rc2-200807241531-source.zip/SRPMS/bzr-1.5/bzrlib/xml_serializer.py

projectsxml.py
import elementtree.ElementTree as ET
import os
rootdir = 'p:/cad/CR 2360 Old Emu Brewery Site'
Language: Python
LOC: 18
Google : thedodsworthinstitute - The Dodsworth Institute (project search) : .../trunk/work/python/cad/projectsxml.py

selftest.py
# $Id: selftest.py 1845 2004-06-10 06:19:43Z fredrik $
# -*- coding: iso-8859-1 -*-
# elementtree selftest program
# this test script uses Python's "doctest" module to check that the
# *test script* works as expected.
Language: Python
LOC: 687
Spider_20090228_inc : Spheral++ - Spheral (project search) : .../src/thirdPartyLibs/elementtree-1.2.1-20041009.tgz.---/elementtree-1.2.1-20041009/selftest.py

selftest.py
# $Id: selftest.py 1845 2004-06-10 06:19:43Z fredrik $
# -*- coding: iso-8859-1 -*-
# elementtree selftest program
# this test script uses Python's "doctest" module to check that the
# *test script* works as expected.
Language: Python
LOC: 687
Spider_20090120_inc : Python Internet Engine (project search) : .../pie/tarballs/elementtree-1.2.1-20041009.zip.---/elementtree-1.2.1-20041009/selftest.py

__init__.py
# elementtree package
#  Magic Master Project  http://magmap.sourceforge.net
#  $Id: __init__.py,v 1.4 2004/03/12 17:49:55 lexx_spb Exp $
Language: Python
LOC: 1
Spider_20081217_inc : Magic Master Project (project search) : .../MagMa_src_20040707.zip/MagMa/contrib/elementtree/__init__.py

styles.py
import os, sys
try:
    import xml.etree.cElementTree as ET
except ImportError:
    from elementtree.cElementTree import ElementTree as ET
Language: Python
LOC: 14
Google : py-odftools - Python library for handling ...files (project search) : .../py-odftools/trunk/odftools/components/styles.py

setup.py
setup(name="PDIS-XPath",
    version="0.3",
    description="Pure-Python XPath evaluator based on ElementTree",
    author="Ken Rimey",
    author_email="rimey@hiit.fi",
Language: Python
LOC: 23
Spider_20090121_inc : PDIS XPath (project search) : .../007/pdis-xpath/PDIS-XPath-0.3/setup.py

bloggerImport.py
from turbogears.database import PackageHub
import re
from elementtree import ElementTree
from sqlobject.sqlbuilder import AND
def run_blogger():
Language: Python
LOC: 27
Google : mxbg - Another turbogears blog system (project search) : .../m/mxbg/trunk/MxBlog/bloggerImport.py

test-crypt.py
import sys, copy, urllib, re, string
try:
    import cElementTree as ElementTree  #non-standard
except:
    from elementtree.ElementTree import ElementTree #non-standard
Language: Python
LOC: 66
Spider_20090227_inc : monmaster (project search) : .../009/monmaster/monmaster/MonMaster/test-crypt.py

xmlwrapper.py
#!/usr/bin/env python
from elementtree import XMLTreeBuilder
from elementtree import ElementTree
def splitnamespace(fulltag):
Language: Python
LOC: 73
Spider_20090529_inc : Asaph - pyasaph (project search) : .../pyasaph-0.3-1.src.rpm/pyasaph-0.3/asaph/misc/xmlwrapper.py

xmlwrapper.py
#!/usr/bin/env python
from elementtree import XMLTreeBuilder
from elementtree import ElementTree
def splitnamespace(fulltag):
Language: Python
LOC: 73
Spider_20090529_inc : Asaph - pyasaph (project search) : .../asaph/pyasaph-0.3/asaph/misc/xmlwrapper.py

xmlwrapper.py
#!/usr/bin/env python
from elementtree import XMLTreeBuilder
from elementtree import ElementTree
def splitnamespace(fulltag):
Language: Python
LOC: 73
Spider_20090529_inc : Asaph - pyasaph (project search) : .../python2.3/site-packages/asaph/misc/xmlwrapper.py

settings.py
import os, sys
try:
    import xml.etree.cElementTree as ET
except ImportError:
    from elementtree.cElementTree import ElementTree as ET
Language: Python
LOC: 15
Google : py-odftools - Python library for handling ...files (project search) : .../py-odftools/trunk/odftools/components/settings.py

import.py
from pprint import pprint
import recipes
import elementtree.ElementTree as ET
f = 'c:\\temp\\recipes.xml'
data = ET.parse(f)
Language: Python
LOC: 20
Google : thedodsworthinstitute - The Dodsworth Institute (project search) : .../t/thedodsworthinstitute/trunk/recipes/import.py

 1 2345678910...

Project Matches

OOoPy - OOoPy is a library in Python for inspecting,...

PDIS XPath - This is a pure-Python XPath evaluator based on...








About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us