File: __init__.py

package info (click to toggle)
python-xml 0.8.4-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,016 kB
  • ctags: 10,628
  • sloc: python: 46,730; ansic: 14,351; xml: 968; makefile: 171; sh: 20
file content (36 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"""Extended XML support for Python

The full PyXML package, available from http://pyxml.sf.net, is installed.

This package contains seven sub-packages:

dom -- The W3C Document Object Model.  This supports DOM Level 1 +
       Namespaces.

marshal -- Converts Python objects to XML and back again.

ns -- Contains namespace URIs for various standards.

parsers -- Python wrappers for XML parsers.

sax -- The Simple API for XML, developed by XML-Dev, led by David
       Megginson and ported to Python by Lars Marius Garshol.  This
       supports the SAX 2 API.

schema -- Support for XML schema languages.  Currently TREX is the only
          supported language.

utils -- Various small utility modules.

xpath -- XPath parsing and evaluation.  Implemented by Fourthought, Inc.
"""


# xml.unicode is not listed because it is for internal use and backwards
# compatibility only.
__all__ = ['dom', 'marshal', 'parsers', 'sax', 'schema', 'utils', 'xpath', 'xslt']

# Needs to synchronize with setup.py
# Never drop digits from the end.
version_info = (0,8,4)
__version__ = "0.8.4"