Author: | Dave Kuhlman |
---|---|
Contact: | dkuhlman (at) reifywork (dot) com |
Address: | http://www.reifywork.com |
revision: | 2.44.3 |
---|
date: | October 25, 2024 |
---|
copyright: | Copyright (c) 2004 Dave Kuhlman. This documentation and the software it describes is covered by The MIT License: http://www.opensource.org/licenses/mit-license.php. |
---|---|
abstract: | generateDS.py generates Python data structures (for example, class definitions) from an XML Schema document. These data structures represent the elements in an XML document described by the XML Schema. It also generates parsers that load an XML document into those data structures. In addition, a separate file containing subclasses (stubs) is optionally generated. The user can add methods to the subclasses in order to process the contents of an XML document. |
generateDS is moving to a new repository host.
The new repository location is here: https://sourceforge.net/projects/generateds/
You can clone the repository with the following:
hg clone http://hg.code.sf.net/p/generateds/code generateds
I thank Bitbucket for their excellent support. However, Bitbucket is discontinuing support for Mercurial, and I'd like to continue using Mercurial for our distributed revision-control tool.
generateDS.py generates Python data structures (for example, class definitions) from an XML Schema document. These data structures represent the elements in an XML document described by the XML Schema. It also generates parsers that load an XML document into those data structures. In addition, a separate file containing subclasses (stubs) is optionally generated. The user can add methods to the subclasses in order to process the contents of an XML document.
The generated Python code contains:
The generated classes contain the following:
The generated subclass file contains one (sub-)class definition for each data representation class. If the subclass file is used, then the parser creates instances of the subclasses (instead of creating instances of the superclasses). This enables the user to extend the subclasses with "tree walk" methods, for example, that process the contents of the XML file. The user can also generate and extend multiple subclass files which use a single, common superclass file, thus implementing a number of different processes on the same XML document type.
generateDS.py can be run under either Python 2 or Python 3. The generated Python code (both superclass and subclass modules) can be run under either Python 2 or Python 3.
This document explains (1) how to use generateDS.py; (2) how to use the Python code and data structures that it generates; and (3) how to modify the generated code for special purposes.
There is also support for packaging the code you generate with generateDS.py. See Packaging your code.
You can find the source distribution here:
Python Package Index -- http://pypi.python.org/pypi/generateDS/
Source Forge -- http://sourceforge.net/projects/generateds/. Use Mercurial to clone the repository. Do the following, but possibly change "generateds-code" to the directory of your choice:
hg clone http://hg.code.sf.net/p/generateds/code generateds-code
Bitbucket -- Bitbucket is discontinuing support for mercurial. The new host for the ``generateDS` repository is SourceForge.net see above), but I'll keep the Bitbucket repository updated until it's removed. See: https://bitbucket.org/dkuhlman/generateds <https://bitbucket.org/dkuhlman/generateds>`_
There is a mailing list at SourceForge: generateds-discuss -- https://sourceforge.net/p/generateds/mailman/generateds-discuss/.
There is a tutorial in the distribution: tutorial/tutorial.html and at generateDS -- Introduction and Tutorial -- http://www.reifywork.com/generateds_tutorial.html.
Lxml is used both by generateDS.py and by the code it generates. Lxml is available at the Python Package Index https://pypi.python.org/pypi/lxml/ and at the Lxml project home site http://lxml.de/.
Older versions of Python XML support can sometimes cause problems. If you receive a traceback that includes "_xmlplus", then you will need to remove that _xmlplus package.
De-compress the generateDS distribution file. Use something like the following:
tar xzvf generateDS-x.xx.tar.gz
Then, the regular Distutils commands should work:
$ cd generateDS-x.xx $ python setup.py build $ python setup.py install # probably as root
There is some support for packaging the code you generate with generateDS.py. This support helps you to produce a directory structure with places to put sample code, sample XML instance documents, and utility code for use with your generated module. It also assists you in using Sphinx to generate documentation for your module. The Sphinx support is especially useful when the schema used to generate code contains "annotation" elements that document complexType definitions.
Instructions on how to use it are here: How to package a generateDS.py generated library -- librarytemplate_howto.html
And the package building support itself is here: LibraryTemplate -- http://www.reifywork.com/librarytemplate-1.0a.zip. It is also included in the generateDS distribution package.
Run generateDS.py with a single argument, the XML Schema file that defines the data structures. For example, the following will generate Python source code for data structures described in people.xsd and will write it to the file people.py. In addition, it will write subclass stubs to the file peoplesubs.py:
python generateDS.py -o people.py -s peoplesubs.py people.xsd
Here is the usage message displayed by generateDS.py:
Synopsis: Generate Python classes from XML schema definition. Input is read from in_xsd_file or, if "-" (dash) arg, from stdin. Output is written to files named in "-o" and "-s" options. Usage: python generateDS.py [ options ] <xsd_file> python generateDS.py [ options ] - Options: -h, --help Display this help information. -o <outfilename> Output file name for data representation classes -s <subclassfilename> Output file name for subclasses -p <prefix> Prefix string to be pre-pended to the class names -f Force creation of output files. Do not ask. -a <namespaceabbrev> Namespace abbreviation, e.g. "xsd:". Default = 'xs:'. -b <behaviorfilename> Input file name for behaviors added to subclasses -m Generate properties for member variables -c <xmlcatalogfilename> Input file name to load an XML catalog --one-file-per-xsd Create a python module for each XSD processed. --output-directory="XXX" Used in conjunction with --one-file-per-xsd. The directory where the modules will be created. --module-suffix="XXX" To be used in conjunction with --one-file-per-xsd. Append XXX to the end of each file created. --subclass-suffix="XXX" Append XXX to the generated subclass names. Default="Sub". --root-element="XX" When parsing, assume XX is root element of --root-element="XX|YY" instance docs. Default is first element defined in schema. If YY is added, then YY is used as the top level class; if YY omitted XX is the default. class. Also see section "Recognizing the top level element" in the documentation. --super="XXX" Super module name in generated subclass module. Default="???" --validator-bodies=path Path to a directory containing files that provide bodies (implementations) of validator methods. --use-old-simpletype-validators Use the old style simpleType validator functions stored in a specified directory, instead of the new style validators generated directly from the XML schema. See option --validator-bodies. --use-getter-setter Generate getter and setter methods. Values: "old" - Name getters/setters getVar()/setVar(). "new" - Name getters/setters get_var()/set_var(). "none" - Do not generate getter/setter methods. Default is "new". --use-source-file-as-module-name Used in conjunction with --one-file-per-xsd to use the source XSD file names to determine the module name of the generated classes. --use-regex-module Generated modules should import module "regex", not "re". Default is False. --user-methods= <file_path>, -u <file_path> Optional module containing user methods. See section "User Methods" in the documentation. --custom-imports-template=<file_path> Optional file with custom imports directives which can be used via the --user-methods option. --no-dates Do not include the current date in the generated files. This is useful if you want to minimize the amount of (no-operation) changes to the generated python code. --no-versions Do not include the current version in the generated files. This is useful if you want to minimize the amount of (no-operation) changes to the generated python code. --no-process-includes Do not use process_includes.py to pre-process included XML schema files. By default, generateDS.py will insert content from files referenced by xs:include and xs:import elements into the XML schema to be processed and perform several other pre-procesing tasks. You likely do not want to use this option; its use has been reported to result in errors in generated modules. Consider using --no-collect-includes and/or --no-redefine-groups instead. --no-collect-includes Do not (recursively) collect and insert schemas referenced by xs:include and xs:import elements. --no-redefine-groups Do not pre-process and redefine group definitions. --silence Normally, the code generated with generateDS echoes the information being parsed. To prevent the echo from occurring, use the --silence switch. Also note optional "silence" parameter on generated functions, e.g. parse, parseString, etc. --namespacedef='xmlns:abc="http://www.abc.com"' Namespace definition to be passed in as the value for the namespacedef_ parameter of the export() method by the generated parse() and parseString() functions. Default=''. --no-namespace-defs Do not pass namespace definitions as the value for the namespacedef_ parameter of the export method, even if it can be extraced from the schema. --external-encoding=<encoding> Encode output written by the generated export methods using this encoding. Default, if omitted, is the value returned by sys.getdefaultencoding(). Example: --external-encoding='utf-8'. --member-specs=list|dict Generate member (type) specifications in each class: a dictionary of instances of class MemberSpec_ containing member name, type, and array or not. Allowed values are "list" or "dict". Default: do not generate. --export=<export-list> Specifies export functions to be generated. Value is a whitespace separated list of any of the following: write -- write XML to file literal -- write out python code etree -- build element tree (can serialize to XML) django -- load XML to django database sqlalchemy -- load XML to sqlalchemy database validate -- call all validators for object generator -- recursive generator method Example: "write etree" Default: "write" --always-export-default Always export elements and attributes that a default value even when the current value is equal to the default. Default: False. --disable-generatedssuper-lookup Disables the generatetion of the lookup logic for presence of an external module from which to load a custom `GeneratedsSuper` base-class definition. --disable-xml Disables generation of all XML build/export methods and command line interface --enable-slots Enables the use of slots for generated class members. Requires --member-specs=dict. --preserve-cdata-tags Preserve CDATA tags. Default: False --cleanup-name-list=<replacement-map> Specifies list of 2-tuples used for cleaning names. First element is a regular expression search pattern and second is a replacement. Example: "[('[-:.]', '_'), ('^__', 'Special')]" Default: "[('[-:.]', '_')]" --mixed-case-enums If used, do not uppercase simpleType enums names. Default is to make enum names uppercase. --create-mandatory-children If a child is defined with minOccurs="1" and maxOccurs="1" and the child is xs:complexType and the child is not defined with xs:simpleContent, then in the element's constructor generate code that automatically creates an instance of the child. The default is False, i.e. do not automatically create child. --import-path="string" This value will be pre-pended to the name of files to be imported by the generated module. The default value is the empty string (""). This enables the user to produce relative import statements in the generated module that restrict the import to some module in a specific package in a package directory structure containing the generated module. -q, --no-questions Do not ask questions, for example, force overwrite. --no-warnings Do not print warning messages. --session=mysession.session Load and use options from session file. You can create session file in generateds_gui.py. Or, copy and edit sample.session from the distribution. --fix-type-names="oldname1:newname1;oldname2:newname2;..." Fix up (replace) complex type names. -g rootelement:rootclass, --graphql=rootelement:rootclass Generate methods, functions, query, classes, and schema for GraphQL. Specify the root element (tag) and root class for XML instance docs. --version Print version and exit. Usage example: $ python generateDS.py -f -o sample_lib.py sample_api.xsd creates (with force over-write) sample_lib.py from sample_api.xsd. $ python generateDS.py -o sample_lib.py -s sample_app1.py \ --member-specs=dict sample_api.xsd creates sample_lib.py superclass and sample_app1.py subclass modules; also generates member specifications in each class (in a dictionary).
The following command line options are recognized by generateDS.py:
Namespace abbreviation, for example "xsd:". The default is 'xs:'. If the <schema> element in your XML Schema, specifies something other than "xmlns:xs=", then you need to use this option. So, suppose you have the following at the beginning of your XSchema file:
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
Then you can the following command line option:
-a "xsd:"
But, note that generateDS.py also tries to pick-up the namespace prefix used in the XMLSchema file automatically. If the <schema> element has an attribute "xmlns:xxx" whose value is "http://www.w3.org/2001/XMLSchema", then generateDS.py will use "xxx:" as the alias for the XMLSchema namespace in the XMLSchema document.
Append suffix to the name of classes generated in the subclass file. The default, if omitted, is "Sub". For example, the following will append "_Action" to each generated subclass name:
generateDS.py --subclass-suffix="_Action" -s actions.py mydef.xsd
And the following will append nothing, making the superclass and subclass names the same:
generateDS.py --subclass-suffix="" -s actions.py mydef.xsd
Make module_name the name of the superclass module imported by the subclass module. If this flag is omitted, the following is generated near the top of the subclass file:
import ??? as supermod
and you will need to hand edit this so the correct superclass module is imported.
generateDS.py is capable of generating validator bodies -- the code that validates data content in an XML instance docuement and writes out warning messages if that data does not satisfy the facets in the xs:restriction in the xs:simpleType defintion in the XML schema. Use this option if you want to use your own validation bodies/code defined in a specified directory . See option --validator-bodies for information on that. Without this option (--use-old-simpletype-validators), the validator code will be generated directly from the XML schema, which is the default.
This option can also be used to generate code that does no validation. See simpleType and validators and Turning off validation of simpleType data for more information.
generateDS.py now generates getter and setter methods (for variable "abc", for example) with the names get_abc() and set_abc(), which I believe is a more Pythonic style, instead of getAbc() and setAbc(), which was the old behavior. Use this flag to generate getters and setters in the old style (getAbc() and setAbc()) or the newer style(get_abc() and set_abc()) which is the default or to omit generation of getter and setter methods. Possible values are:
The default is "new".
Specify which of the export related member methods are to be generated. The value is a whitespace separated list of any of the following:
For example: --export="write etree" and --export="write". The default is: --export="write".
Specifies replacement pairs to be used when cleaning up names. Must be a string representation of a Python list of 2-tuples. The values of each pair (2-tuple) must be strings. The first item of each pair is a pattern and must be a valid Python regular expression (see https://docs.python.org/2/library/re.html#module-re) The second item of each pair is a string that will replace anything matched by the pattern. Also see Cleaning up names with special characters etc.
The intension is to enable us to replace special characters in names that would cause the generation of invalid Python names, for example the names of generated classes. However, since a string replacement is performed, you can replace any single character or sequence of characters by any other single character or sequence of characters. Example: [(':', 'colon'), ('-', 'dash'), ('.', 'dot')].
The default when omitted is [('[-:.]', '_')].
Fix up (replace) complex type names. Using this option will replace the following: (1) the 'name' attribute of a complexType; (2) the 'type' attribute of each element that refers to the type; and (3) the 'base' attribute of each extension that refers to the type. These fixups happen before information is collected from the schema for code generation. Therefore, using this option is effectively equivalent to copying your schema, then editing it with your text editor, then generating code from the modified schema. If a new name is not specified, the default is to replace the old name with the old name plus an added "xx" suffix. Examples:
$ generateDS.py --fix-type-names="type1:type1Aux" $ generateDS.py --fix-type-names="type1;type2:type2Repl"
In some cases the element and attribute names in an XML document will conflict with Python keywords. There are two solutions to fixing and avoiding name conflicts:
In an attempt to avoid these clashes, generateDS.py contains a table that maps names that might clash to acceptable names. This table is a Python dictionary named NameTable. The user can modify existing entries in this table within generateDS.py itself and add additional name-replacement pairs to this table, for example, if new conflicts occur.
Or, you can fix additional conflicts by following these steps:
Create a module named generateds_config.py.
Define a dictionary in that module named NameTable.
Place additional name mappings in that dictionary. Here is a sample:
NameTable = { 'range': 'rangeType', }
generateDS.py will attempt to import that module (generateds_config.py) and will add the name mappings in it to the default set of mappings in NameTable in generateDS.py itself.
In some cases the name of a child element and the name of an attribute will be the same. (I believe, but am not sure, that this is allowed by XML Schema.) Since generateDS.py treats both child elements and attributes as members of the generated class, this is a name conflict. Therefore, where such conflicts exist, generateDS.py modifies the name of the attribute by adding "_attr" to its name.
generateDS.py attempts to clean up names that contain special characters. For example, a complexType whose name contains a dash would generate a Python class with an invalid name. But, you can use this facility to make other changes to names as well.
The command line option --cleanup-name-list specifies replacement pairs to be used when cleaning up (and modifying) names. The value of this option must be a string representation of a Python list of 2-tuples. The values of each pair (2-tuple) must be strings. The first item of each pair is a pattern and must be a valid Python regular expression (see https://docs.python.org/2/library/re.html#module-re) The second item of each pair is a string that will replace anything matched by the pattern. The intension is to enable us to replace special characters in names that would cause the generation of invalid Python names, for example the names of generated classes. However, since a string replacement is performed, you can replace any single character or sequence of characters by any other single character or sequence of characters.
For example, the following option, in addition to performing the default replacements of "-", ":", and "." by an underscore, would also replace the string "Type" when it occurs at the end of a name, by "Class":
--cleanup-name-list="[('[-:.]', '_'), ('Type$', 'Class')]"
This would cause the name "big-data-Type" to become "big_data_Class".
The default when this option is omitted is [('[-:.]', '_')].
The order of replacements performed is the same as the order of the tuples in the list. So, replacements performed by pattern replacement pairs (2-tuples) later in the list (to the right) will be performed after those earlier (to the left), and may overwrite earlier replacements.
See the notes on the command line option --cleanup-name-list for more on this. Or, run $ generateDS.py --help.
Note: The graphical user interface is no longer supported.
Here are a few notes on how to use the GUI front-end.
generateds_gui.py is installed when you do the standard installation:
$ python setup.py install
Run it by typing the following at the command line:
$ generateds_gui.py
For help with command line options, run:
$ generateds_gui.py --help
For a description of the values and flags that you can set, see section Running generateDS.py. There are also tool tips on the various widgets in the graphical user interface.
Generate the python bindings modules by using the Tools/Generate menu item or the Generate button at the bottom of the window.
Capture the command line generated by using the Tools/Capture command line menu item. You might consider copying and pasting that command line into a shell script or batch file for repeated reuse.
You can also save and later reload your values and flags in a session file. See the Save session, Save session as, and Load session items under the File menu. By default, a session file has the extension ".session".
You can load a session on start-up with the "-s" or "--session" comand line options. For example:
$ generateds_gui.py --session=mybindingsjob.session
Or, use the "session" option in a configuration file.
If the command to be run when generating bindings is not standard, you can specify that command with the "--exec-path" command line option or with the "exec-path" option configuration file. The default is "generateDS.py".
Command line options can also be specified in a configuration file. generateds_gui.py checks for that configuration file in the following locations in this order:
Here is a sample configuration file:
[general] exec-path: /usr/bin/python ~/bin/generateDS.py impl-path: generateds_gui.glade session: a1.session
Options on the command line override options in configuration files.
generateDS.py is not very intelligent about detecting what prefix is used in the schema file for the XML Schema namespace. When this problem occurs, you may see the following when running generateDS.py:
AttributeError: 'NoneType' object has no attribute 'annotate'
generateDS.py assumes that the XML Schema namespace prefix in your schema is "xs:".
So, if the XML Schema namespace prefix in your schema is not "xs:", you will need to use the "-a" command line option when you run generateDS.py. Here is an example:
generateDS.py -a "xsd:" --super=mylib -o mylib.py -s myapp.py someschema.xsd
Suppose that from a single XML schema, you have generated a superclass module and a subclass module (using the "-o" and "-s" command line options). Now you make a copy of the subclass module. Next you add special and different code to each of the subclass modules. You can run these two subclass modules separately and (after a bit of debugging) each works fine. And, you can import each subclass module in separate applications, and things are still good. However, if you import both subclass modules into a single application, you find that one of them is "ignored" by the superclass module when it parses XML instance documents and builds classes. Effectively, each subclass module, when it is imported, sets a class variable (subclass) in each superclass to the subclass to be used by the superclass, and the last subclass imported module wins.
There are two alternative solutions to this problem:
Use the script/function provided by the distribution in file fix_subclass_refs.py. The doc string in that module explains how to use it and gives an example of its use.
Each generated superclass module (starting with generateDS.py version 2-19a) contains a global variable CurrentSubclassModule_. The value of this variable, if it is not None, overrides the value of the class variable subclass in each generated superclass. You can change the value of this variable before parsing an XML document and building instances of the generated classes to determine which subclass module is to be used during the "build" phase.
Here is an example of the use of this feature:
#!/usr/bin/env python import lib01suba import lib01subb def test(): lib01suba.supermod.CurrentSubclassModule_ = lib01suba roota = lib01suba.parse('test01.xml', silence=True) lib01subb.supermod.CurrentSubclassModule_ = lib01subb rootb = lib01subb.parse('test01.xml', silence=True) roota.show() print '-' * 50 rootb.show() test()
The second alternative (above) is likely to be a more convenient solution in most cases. But, there are possibly use cases where the use of fix_subclass_refs.py or a modified version of it will be helpful.
The following constructs, among others, in XML Schema are supported:
See file people.xsd for examples of the definition of data types and structures. Also see the section on The XML Schema Input to generateDS.
Element definitions that contain attributes but no nested child elements provide access to their data content through getter and setter methods getValueOf_ and setValueOf_ and member variable valueOf_.
Elements that are defined to contain both text and nested child elements have "mixed content". generateDS.py provides access to mixed content, but the generated data structures (classes) are fundamentally different from that generated for other elements. See section Mixed content for more details.
Note that elements defined with attributes but with no nested sub-elements do not need to be declared as "mixed". For these elements, character data is captured in a member variable valueOf_, and can be accessed with member methods getValueOf_ and setValueOf_.
generateDS.py supports anyAttribute. For example, if an element is defined as follows:
<xs:element name="Tool"> <xs:complexType> <xs:attribute name="PartNumber" type="xs:string" /> <xs:anyAttribute processContents="skip" /> </xs:complexType> </xs:element>
Then generateDS.py will generate a class with a member variable anyAttributes_ containing a dictionary. Any attributes found in the instance XML document that are not explicitly defined for this element will be stored in this dictionary. generateDS.py also generates getters and setters as well as code for parsing and export. generateDS.py ignores processContents. See section anyAttribute for more details.
generateDS.py now generates subclasses for extensions, that is when an element definition contains something like this:
<xs:extension base="sometag">
Limitation -- There is an important limitation, however: member names duplicated (overridden ?) in an extension generate erroneous code. Sigh. I guess I needed something more to do.
Several of the generated methods have been refactored so that subclasses can reuse the code in their superclasses. Take a look at the generated code to learn how to use it.
The Python compiler/interpreter requires that it has seen a superclass before it sees the subclass that uses it. Because of this, generateDS.py delays generating a subclass until after its superclass has been generated. Therefore, the order in which classes are generated may be different from what you expect.
generateDS.py now handles definition and use of attribute groups. For example: the use of something like the following:
<xs:attributeGroup name="favorites"> <xs:attribute name="fruit" /> <xs:attribute name="vegetable" /> </xs:attributeGroup>
And, a reference or use like the following:
<xs:element name="person" type="personType"/> <xs:complexType name="personType" mixed="0"> <xs:attributeGroup ref="favorites" /> </xs:complexType>
Results in generation of class personType that contains members fruit and vegetable.
Multiple levels of attributeGroups are supported, that is, attribute groups themselves can contain references to other attribute groups.
generateDS.py now handles a limited range of substitution groups, but, there is an important limitation, in particular generateDS.py handles substitution groups that involve complex types, but does not handle those that involve (substitute for) simple types (for example, xs:string, xs:integer, etc). This is because the code generated for members defined as simple types does not provide the needed information to handle substitution groups.
generateDS.py supports some, but not all, simple types defined in "XML Schema Part 0: Primer Second Edition" ( http://www.w3.org/TR/xmlschema-0/. See section "Simple Types" and appendix B). Validation is performed for some simple types. When performed, validation is done while the XML document is being read and instances are created.
Here is a list of supported simple types:
generateDS.py generates minimal support for members defined as simpleType. However, the code generated by generateDS.py does not enforce restrictions. For notes on how to enforce restrictions, see section simpleType and validators.
A simpleType can be a restriction on a primitive type or on a defined element type. So, for example, the following will generate valid code:
<xs:element name="percent"> <xs:simpleType> <xs:restriction base="xs:integer"> <xs:minInclusive value="1"/> <xs:maxInclusive value="100"/> </xs:restriction> </xs:simpleType> </xs:element>
And, the following will also generate valid code:
<xs:simpleType name="emptyString"> <xs:restriction base="xs:string"> <xs:whiteSpace value="collapse"/> </xs:restriction> </xs:simpleType> <xs:element name="merge"> <xs:complexType> <xs:simpleContent> <xs:extension base="emptyString"> <xs:attribute name="fromTag" type="xs:string"/> <xs:attribute name="toTag" type="xs:string"/> </xs:extension> </xs:simpleContent> </xs:complexType> </xs:element>
For elements defined with maxOccurs="unbounded", generateDS.py generates code that processes a list of elements.
For elements defined with minOccurs="0" and maxOccurs="1", generateDS.py generates code that exports an element only if that element has a (non-None) value.
If you do not use the --use-old-simpletype-validators command line option, then generateDS.py will generate validation code directly from the restrictions specified inside the simpleType definitions in your XML schema.
Here is a bit of explanation of what that generated code will do.
This is the older, more manual method. In order to generate code that uses this method, use command line option --use-old-simpletype-validators.
Here are a few notes that should help you write your own validator methods to enforce restrictions.
Default behavior -- The generated code, by default, treats the value of a member whose type is a simpleType as if it were declared as type xs:string.
Validator method stubs -- For a member variable name declared as a simpleType named X, a validator method validate_X is generated. Example -- from:
<xs:simpleType name="tAnyName"> <xs:restriction base="xs:string"/> </xs:simpleType>
The class generated by generateDS.py will contain the following method definition:
def validate_tAnyName(self, value): # Validate type tAnyName, a restriction on xs:string. pass
Calls to validator methods -- For a member variable declared as a simpleType X, a call to validate X is added to the build method. Example -- from:
<xs:element name="person"> <xs:complexType mixed="0"> <xs:sequence> <xs:element name="test2" type="tAnyName"/> </xs:sequence> </xs:complexType> </xs:element>
generateDS.py produces the following call:
self.validate_tAnyName(self.test2) # validate type tAnyName
Code bodies for validator methods can be added either (1) manually or (2) automatically from an external source. See command line option "--validator-bodies" and see below.
You can add code to the validator method stub to enforce the restriction for the base type and further restrictions imposed on that base type. This can be done in the following ways:
The support for simpleType in generateDS.py has the following limitations (among others, I'm sure):
It only works for simpleType defined with and referenced through a name. It does not work for "in-line" definitions. So, for example, the following works:
<xs:element name="person"> <xs:complexType> <xs:sequence> <xs:element name="test3" type="tAnyName"/> </xs:sequence> </xs:complexType> </xs:element> <xs:simpleType name="tAnyName"> <xs:restriction base="xs:string"/> </xs:simpleType>
But, the following does not work:
<xs:element name="person"> <xs:complexType> <xs:sequence> <xs:element name="test3"> <xs:simpleType name="tAnyName"> <xs:restriction base="xs:string"/> </xs:simpleType> </xs:element> </xs:sequence> </xs:complexType> </xs:element>
Attributes defined as a simple type are not supported.
If you do not want validation performed on simpleType data, you have these options:
Don't forget that xmllint can also be used to perform validation against the XML scheme. This validation includes checking against simpleType restrictions. See http://xmlsoft.org/ for more information on xmllint.
By default, generateDS.py will insert content from files referenced by include elements into the XML Schema to be processed. This behavior can be turned off by using the "--no-process-includes" command line option.
include elements are processed and the referenced content is inserted in the XML Schema by importing and using process_includes.py, which is included in the generateDS.py distribution.
The include file processing is capable of retrieve included files via FTP and HTTP internet protocols as well as from the local file system.
generateDS.py has support for abstract types. For more on this, see: XML Schema Part 0: Primer Second Edition: Abstract Elements and Types -- http://www.w3.org/TR/xmlschema-0/#abstract.
This section describes some of the support for types derived by extension and also how to use the data bindings generated for those types in Python.
For example, suppose you have an XML schema that looks like this (example.xsd):
<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0"> <xs:element name="animalCollection"> <xs:complexType> <xs:sequence> <xs:element name="animal" type="animal" maxOccurs="unbounded"/> </xs:sequence> </xs:complexType> </xs:element> <xs:complexType name="animal" abstract="true"></xs:complexType> <xs:complexType name="dog"> <xs:complexContent> <xs:extension base="animal"> <xs:sequence> <xs:element name="name" type="xs:string"/> </xs:sequence> </xs:extension> </xs:complexContent> </xs:complexType> </xs:schema>
An XML instance document for this document type might be the following:
<?xml version="1.0"?> <animalCollection xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <animal xsi:type="dog"> <name>fido</name> </animal> </animalCollection>
Question: How would you, in Python, using bindings generated by generateDS.py, create an instance of type dog that is derived from type animal and when exported to XML, appears as an animal with attribute xsi:type="dog"?
First, we need to generate our bindings:
$ generateDS.py -o example01.py example.xsd
And, now, here is Python some code that creates those instances and exports them:
# sample01.py import sys import example01 def test(): animal_collection = example01.animalCollection() animal = example01.dog(name='milicent') # # must set original_tagname_ and extensiontype_ for # type derived by extension. See: # https://www.w3.org/TR/2004/REC-xmlschema-0-20041028/#DerivExt animal.original_tagname_ = 'animal' animal.extensiontype_ = 'dog' animal_collection.add_animal(animal) animal_collection.export(sys.stdout, 0) return animal_collection, animal test()
Notes:
When we run it, we'll see:
$ python sample01.py <animalCollection> <animal xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="dog"> <name>milicent</name> </animal> </animalCollection>
For more information on types derived by extension, see "XML Schema Part 0: Primer Second Edition", specifically:
generateDS.py can handle schemas that define the same unqualified name in separate name spaces, although the solution is not, perhaps, ideal. This is done by renaming the duplicate name. Doing so is necessary because all definitions must be generated in a single module, and we cannot, for example, generate multiple classes with the same name.
A dictionary RenameMappings_ in the generated module contains the mapping of original qualified name to new name. Here is an example:
RenameMappings_ = { "{http://www.example.com/IPO_US}Address": "Address2", "{http://www.example.com/IPO_US}BaseAddress": "BaseAddress1", "{http://www.example.com/IPO_US}Postcode": "Postcode4", "{http://www.example.com/IPO_US}ProvinceState": "ProvinceState3", }
If you need look-up in the reverse direction, you can try (under Python 3) using something like the following:
[ins] In [11]: {k: v for (v, k) in my_module.RenameMappings_.items()} Out[11]: {'Address2': '{http://www.example.com/IPO_US}Address', 'BaseAddress1': '{http://www.example.com/IPO_US}BaseAddress', 'Postcode4': '{http://www.example.com/IPO_US}Postcode', 'ProvinceState3': '{http://www.example.com/IPO_US}ProvinceState'}
Near the bottom of modules generated by generateDS.py (using "-o") is a generated global variable NamespaceToDefMappings_. This variable contains a mapping (a Python dictionary) from name space URIs to a list of the xs:complexType and xs:simpleType types defined under that name space. Actually, for each type there is a 3-tuple containing (1) the type name (for a xs:complexType this corresponds to the name of the Python class generated for that type), (2) the name of the XML schema file in which the type is defined, and (3) "CT" for a xs:complexType or "ST" for a xs:simpleType.
Note: Quite a bit of work has been done on generateDS.py since this section was written. So, it accepts and processes more of features in XML Schema than earlier. The best advice is to give it a try on your schema. If it works, great. If it does not, post a message to the list: generateds-discuss -- https://sourceforge.net/p/generateds/mailman/generateds-discuss/.
generateDS.py actually accepts a subset of XML Schema. The sample XML Schema file should give you a picture of how to describe an XML file and the Python classes that you will generate. And here are some notes that should help:
Specify the tag in the XML file and the name of the generated Python class in the name attribute on the xs:element. For example, to generate a Python class named "person", which will be populated from an XML element/tag "person", use the following XML Schema snippet:
<xs:element name="person" ...
To specify a data member for a generated Python class that will be propogated from an attribute in an element in an XML file, use the XML Schema xs:attribute. For attributes, generateDS recognizes the following types: "xs:string", "xs:integer", and "xs:float". For example, the following adds member data items "hobby" and "category" with types "xs:string" and "xs:integer":
<xs:element name="person"> <complexType> <xs:attribute name="hobby" type="xs:string" /> <xs:attribute name="category" type="xs:integer" /> </complexType> </xs:element>
To specify a data member for a generated Python class whose value is a string, integer, or float and which will be populated from a nested (simple) element, specify a nested XML Schema element whose type is "xs:string", "xs:integer", or "xs:float". Here is an example which defines a Python class "person" with a data member "description" which is a string and which is populated from a (simple) nested element:
<xs:element name="person"> <complexType> <sequence> <xs:element name="description" type="xs:string" /> <sequence> </complexType> </xs:element>
To specify a data member of a generated Python class that will be populated from a nested XML element, refer to the nested object in the "type" attribute and then define another element/type whose name is that type. For example, the following specifies that the person class will have a data member named "transportation" that will be populated from a nested XML element "bicycle" and whose value will be an instance of the generated class "bicycle":
<xs:element name="person"> <complexType> <sequence> <xs:element name="transportation" type="bicycle" /> <sequence> </complexType> </xs:element> <xs:element name="bicycle"> o o o </xs:element>
To specify a data member of a generated Python class that will contain a list of instances of a generated classes and populated from nested XML elements, add the "maxOccurs" attribute with value "unbounded". Here is an example:
<xs:element name="person"> <complexType> <sequence> <xs:element name="transportation" type="bicycle" maxOccurs="unbounded" /> <xs:element name="description" type="xs:string" maxOccurs="unbounded" /> <sequence> </complexType> </xs:element> <xs:element name="bicycle"> o o o </xs:element>
Here are a few additional rules that will help you to write XML Schema files for generateDS.py:
Here are a few additional constructions that generateDS.py understands.
You can use the <complexType> element at top level (instead of <element>) to define an element. So, for example, instead of:
<xs:element name="server-type"> <xs:complexType> <xs:sequence> <xs:element name="server-name" type="xs:string"/> <xs:element name="server-description" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element>
you can use the following, which is equivalent:
<xs:complexType name="server-type"> <xs:sequence> <xs:element name="server-name" type="xs:string"/> <xs:element name="server-description" type="xs:string"/> </xs:sequence> </xs:complexType>
You can use the "ref" attribute to refer to another element definition, instead of using the "name" and "type" attributes. So, for example, you can use the following:
<xs:element name="server-info"> <xs:complexType> <xs:sequence> <xs:element name="server-comment" type="xs:string"/> <xs:element ref="server-type" /> </xs:sequence> </xs:complexType> </xs:element> in place of this: <xs:element name="server-info"> <xs:complexType> <xs:sequence> <xs:element name="server-comment" type="xs:string"/> <xs:element name="server-type" type="server-type"/> </xs:sequence> </xs:complexType> </xs:element>
generateDS.py generates a subclass for each element that that is defined as the extension of a base element. So, for the following:
<xs:complexType name="BType"> <xs:complexContent> <xs:extension base="AType"> <xs:sequence> o o o
generateDS.py will generate something like the following:
class BType(AType): o o o
generateDS.py generates special code to handle elements defined as containing mixed content, that is elements defined with attribute mixed="true". See section Mixed content for more details.
With the use of the "-b" command line option, generateDS.py will also accept as input an XML document instance that describes behaviors to be added to subclasses when the subclass file is generated with the "-s" command line option.
An example is provided in the Demos/Xmlbehavior sub-directory of the distribution.
The XMLBehaviors capability in generateDS.py was inspired and, for the most part, designed by gian paolo ciceri (gp.ciceri@suddenthinks.com). This work is part of our work on our application development project for Quixote.
This section describes the XMLBehavior XML document that is used as input to generateDS.py. The XMLBehavior XML document is an XML instance document (given as an argument to the "-b" command line flag) that describes behaviors (methods) to be added to class definitions in the subclass file (generated with the "-s" command line flag).
See file xmlbehavior_po.xml in the Demos/Xmlbehavior directory in the distribution for an example that you can use as a model.
The elements in the XMLBehavior document type are the following:
generateDS.py contains a function get_impl_body() that implements the ability to retrieve implementation bodies. The current implementation retrieves implementation bodies from an Internet Web URL. Other sources for implementation bodies can be implemented by modifying get_impl_body().
As an example, the version that follows first tries to retrieve an implementation body from a Web address and, if that fails, attempts to obtain the implementation body from a file in the local file system using the <xb:base-impl-url> as a path to a directory containing files, each of which contains one implementation body and <xb:impl-url> as the file name. This implementation of get_impl_body was provided by Colin Dembovsky of Systemsfusion Inc. Thanks, Colin. (I've included it in the generateDS.py script, but commented out, for those who want to use and possibly extend it.):
import requests def get_impl_body(classBehavior, baseImplUrl, implUrl): impl = ' pass\n' if implUrl: trylocal = 0 if baseImplUrl: implUrl = '%s%s' % (baseImplUrl, implUrl) try: impl = requests.get(implUrl).content except: trylocal = 1 if trylocal: try: implFile = file(implUrl) impl = implFile.read() implFile.close() except: print '*** Implementation at %s not found.' % implUrl return impl
Here are additional features. Note that some of this support was contributed by users such as Chris Allan. Many thanks.
You can generate modules that contain code to support GraphQL queries into the data contained in XML instance documents described by the XML schema from which you generated your module. For information about GraphQL see -- https://graphql.org/.
The generated code uses the Strawberry GraphQL Python module. See https://pypi.org/project/strawberry-graphql/ and https://strawberry.rocks.
In order to use this facility, you must install Strawberry. See the Strawberry getting started guide at https://strawberry.rocks/docs.
This facility supports GraphQL queries. There is no support for mutations.
There is a demo in the Demo/People directory of the source code repository. See README.txt and the scripts run-gen-graphql.sh and run-test-graphql.sh in that directory. The source code repository can be downloaded from https://sourceforge.net/p/generateds/ or can be cloned with the following:
$ hg clone http://hg.code.sf.net/p/generateds/code generateds-code
There is more information along with some examples of usage here -- http://reifywork.com/generateds-graphql.html.
In order to run the Strawberry GraphQL server for your data, you must first generate a generateDS.py module that contains Strawberry GraphQL support code. Such a module cannot be used as a normal generateDS.py module.
A module that contains this support code, is generated with the "--graphql=" (or "-g") command line option when you run generateDS.py. For example:
$ generateDS.py -o my_module.py --graphql="tagname:typename" my_xml_schema.xsd
Where:
You have now generated a GraphQL API against which you can apply GraphQL queries. These queries follow the nested structure of your XML instance document. At each level, you have access to the child nodes and the attributes of the nodes at that level.
After generating your module, you can run the Strawberry server that the module implements with something like the following:
$ strawberry server my_module
Important -- Before running the Strawberry server on your module, you must set the environment variable GRAPHQL_ARGS to specify the path/name of an XML instance document that contains the data to which you want to apply GraphQL queries. This XML document must be an instance of the document type of the schema used to generate your module and should validate against that schema.
I'm on Linux, and so I can do that with, for example, either of the following, assuming that "my_module.py" is the name of the module generated by generateDS.py:
$ export GRAPHQL_ARGS=my_input_data.xml $ strawberry server my_module
Or, on a single line:
$ GRAPHQL_ARGS=my_input_data.xml strawberry server my_module
For help, run the following:
$ strawberry --help $ strawberry server --help
After starting Strawberry, you can interact with your Strawberry server in the following ways (among others):
Visit http://0.0.0.0:8000/graphql in your Web browser and use the Strawberry interactive REPL (read–eval–print loop). Note that interactive Strawberry supports tab completion (use the Tab key and Ctrl-spacebar) and provides visual hints to guide you through your generated GraphQL API. And near the upper left of the screen (in your Web browser) are buttons that will display (1) a Documentation Explorer and (2) a GraphQL Explorer, which, among other things, will describe your GraphQL API and enable you to interactively point and click to generate queries for your API.
Use cUrl to make requests (see https://curl.se/) and receive JSON data. For example, here is a bash shell script that I can run from the Linux command line:
#!/usr/bin/bash -x curl 'http://0.0.0.0:8000/graphql' \ -X POST \ -H 'content-type: application/json' \ --data '{ "query": "{ container { author { name book { author title date genre rating }}}}" }'
Use a Python script and the Python requests module (see https://pypi.org/project/requests/ and https://requests.readthedocs.io/en/latest/). For example:
#!/usr/bin/env python """ synopsis: Demonstration of Python requests to a Strawberry GraphQL server. usage: python request01.py """ import requests import pprint Query01 = """ { "query": "{ people { person { name interest promoter { firstname lastname clientHandler { fullname } } } programmer { name interest category fruit vegetable value range_ elparam { name semantic } } } }" } """ def test(): headers = { 'content-type': 'application/json', } url = "http://0.0.0.0:8000/graphql" query = Query01 query = query.replace('\n', ' ') response = requests.post(url, query, headers=headers) jsonobj = response.json() data = jsonobj["data"] print('-' * 40) pprint.pprint(data) print('-' * 40) def main(): test() if __name__ == "__main__": main()
xsd:list elements can be used with a child xsd:simpleType which confuses the XschemaHandler stack unrolling. xsd:list element support should allow the following XML Schema definition to be supported in generateDS.py:
<xsd:attribute name="Foo"> <xsd:simpleType> <xsd:list> <xsd:simpleType> ... </xsd:simpleType> </xsd:list> </xsd:simpleType> </xsd:attribute>
The enumerated values for the parent element are resolved and made available through the instance attribute values.
In order to properly resolve and query types which are unions in an XML Schema, an element's membership in an xsd:union is available through the instance attribute unionOf.
When a parent xsd:choice is exists, an element's "maxOccurs" and "minOccurs" values can be inherited from the xsd:choice rather than the element itself. xsd:choice elements have been added to the child element via the choice instance attribute and are now used in the "maxOccurs" and "minOccurs" attribute resolution. This should allow the following XML Schema definition to be supported in generateDS.py:
<xsd:element name="Foo"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element ref="Bar"/> <xsd:element ref="Baz"/> </xsd:choice> </xsd:complexType> </xsd:element>
Some applications require information about the "minOccurs" and "maxOccurs" attributes in the XML Schema. Some of that information can be obtained by using the --member-specs= (list|dict) command line option, then looking at the member_data_items_ class variable that it generates in each data representation class. In particular, look at the get_container method (from class MemberSpec_).
The previous content type and base type resolution is insufficient for some needs. Basically it was unable to handle more complex and shared element and simpleType definitions. This support has been extended to more correctly resolve the base type and properly indicate the content type of the element. This should provide the ability to handle more complex XML Schema definitions in generateDS.py. Documentation on the algorithm for how this is achieved is available as comments in the source code of generateDS.py -- see comments in method resolve_type in class XschemaElement.
Some developers working to extend the analysis and code generation in generateDS.py may be helped by additional information collected during the parsing of the XML Schema file.
Some applications need all the top level simpleTypes to be available for further queries after the SAX parser has completed its work and after all types have been resolved. These types are available as an instance attribute topLevelSimpleTypes inside XschemaHandler.
In some cases, the document produced by a call to an export method will contain elements that have namespace prefixes. For example, the following snippet contains namespace prefix "abc":
<abc:people > <abc:person> o o o </abc:person> </abc:people>
A way is needed to insert a namespace prefix definition into the generated document. Here is how generateDS.py fills that need.
Each generated export method takes an optional argument namespacedef_. If provided, the value of that parameter is inserted in the exported element. So, for example, the following call:
people.export(sys.stdout, 0, namespacedef_='xmlns:abc="http://www.abc.com/namespace"')
might produce:
<abc:people xmlns:abc="http://www.abc.com/namespace"> <abc:person> o o o </abc:person> </abc:people>
If this is an issue for you, then you may also want to consider using the "--namespacedef" command line option when you run generateDS.py. The value of this option will be passed in to the export function in the generated parse functions. So, for example, running generateDS.py as follows:
generateDS.py --namespacedef='xmlns:abc="http://www.abc.com/namespace.xsd"' -o mylib.py -s myapp.py myschema.xsd
will generate parse methods that automatically add the namespacedef_ argument to the call to export.
There is minimal support for the xs:any wild card declaration. Effectively, an element defined by an xs:complexType containing xs:any can contain any element type as a child element. Because generateDS.py does not know how to generate code to handle specific element types during the parsing and building of an XML instance document, it generates a call to a method gds_build_any in the GeneratedsSuper class. This method has a default implementation in the generated code. If your XML schema uses xs:any, you may need to add some code to that default implementation of gds_build_any. See section Overridable methods -- generatedssuper.py for guidance on how to provide an implementation of that method.
For more help with this, look at the code generated from an XML schema that uses xs:any. In particular, look at the code generated in the Python class corresponding to the xs:complexType containing xs:any and look at the default implementation of method gds_build_any in class GeneratedsSuper. Reading the code in the buildChildren and exportChildren methods of a class containing a child declared with xs:any should help you understand what is going on.
When you starting developing your implementation of gds_build_any, look at the code generated in several buildChildren methods. It's likely that you will be able to copy, paste, and edit code from there.
Once you have build the tree of objects that are instances of the classes generated by generateDS.py, you can use this to produce a tree of instances of the Lxml Element instances. See http://lxml.de/ for more about Lxml. And, see the function parseEtree in the generated code for an example of how to produce the Lxml Element tree:
def parseEtree(inFileName): doc = parsexml_(inFileName) rootNode = doc.getroot() rootTag, rootClass = get_root_tag(rootNode) if rootClass is None: rootTag = 'test' rootClass = Test rootObj = rootClass.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None mapping = {} rootElement = rootObj.to_etree(None, name_=rootTag, mapping_=mapping) reverse_mapping = rootObj.gds_reverse_node_mapping(mapping) content = etree_.tostring( rootElement, pretty_print=True, xml_declaration=True, encoding="utf-8") sys.stdout.write(content) sys.stdout.write('\n') return rootObj, rootElement, mapping, reverse_mapping
Now suppose that you have produced the tree of instances of the generated classes, and suppose that you have used that to produce a tree of instances of the Element class from Lxml. It may be useful to have a dictionary that maps instances in one tree to the corresponding instances in the other. You can create that dictionary by passing an empty dictionary as the value of the optional parameter mapping_ in the call to the to_tree method. And, you can produce the reverse mapping by calling the convenience method gds_reverse_node_mapping from superclass GeneratedsSuper. Again, see the code above for an example.
generateDS.py automatically assigns names for types (and the classes generated from them), when that type definition (for example, xs:complexType) does not have a name and it is nested inside another type definition. However, these assigned names, in part because of the need to make them unique, can be difficult to predict.
Therefore, generateDS.py provides a way to specify the names of the Python classes generated from these anonymous, nested types. To do so, follow these steps:
Create a module named gds_inner_name_map (gds_inner_name_map.py).
Place that module where Python can import it when you run generateDS.py. You can do this either by adding an additional directory to the environment variable PYTHONPATH or by placing gds_inner_name_map.py in a directory that is already on Python's search path for modules. You can check this by running the following Python code snippet:
import sys print sys.path
Also see: https://docs.python.org/2/library/sys.html#sys.path
In module gds_inner_name_map, define a global variable Inner_name_map. The value of this variable should be a dictionary that maps 2-tuples containing (a) the name of the grandparent type and (b) the name of the parent type onto the new name.
If generateDS.py cannot import Inner_name_map from gds_inner_name_map, then it will, by default, generate unique names. In particular, it automatically generates names for anonymous, nested types when the following Python statement fails:
from gds_inner_name_map import Inner_name_map
Here is an example of module gds_inner_name_map.py:
Inner_name_map = { ("classAType", "inner"): "inner_001", ("classBType", "inner"): "inner_002", }
Usage hints:
Simple types that are defined with restrictions are validated: their restrictions are checked.
See any of the generated methods whose names are of the form validate_xxx_ and their calls in the build method in order to learn how these methods are used and how you can use them.
You can turn this checking off by setting the global variable Validate_simpletypes_ in your generated module to False.
Warning messages that are produced when the value of a simple type fails to validate against its restrictions are collected in an instance of class GdsCollector_. This class is defined in your generated module. See the parse* methods in your generated module for help with using a collector.
generateDS.py generates a validator method in a complex type class for each use of a simple type that contains restrictions on a simple type. During the build process, the generated code calls these methods to ensure that input data (from an XML instance document) validates against those restrictions. Note that this is done only if the global variable Validate_simpletypes_ is True, which is the default.
You can, of course, call any of these validator methods manually and programmatically.
generateDS.py also supports a feature that enables you to generate a validator method that calls all the specific validator methods on each attribute and child in the class for which that specific validator method is relevant.
To instruct generateDS to do this, add the word "validate" to the "--export" command line option. For example:
generateDS.py -o mylib.py --export="write validate" myschema.xsd
To learn how to perform validation, take a look at a generated validate_ method in your generated module.
A few usage hints:
The simplest use is to call one of the parsing functions in the generated source file. You may be able to use one of these functions without change, or can modify one to fit your needs. generateDS.py generates the following parsing functions:
These parsing functions are generated in both the superclass and the subclass files. Note the call to the export method. You may need to comment out or un-comment this call to export according to your needs.
For example, if the generated source is in people.py, then, from the command line, run something like the following:
python people.py people.xml
Or, from within other Python code, use something like the following:
import people rootObject = people.parse('people.xml')
It might be that the generated module, when parsing an XML instance document, does not, by default, recognize the top level (root) element in an instance document. This might happen because generateDS.py does not detect the correct top level element from the XML schema or because you need to use the generated module to parse instance documents that have different top level elements. If this is the case, you might pick and use one of the following strategies:
In your schema, move the definition of the element type that defines the top level element in your instance documents to the top of the schema. By default, generateDS.py uses the first definition in the schema as the when constructing the generated parse function.
Use the "--root-element" command line option to specify top level element. But, be aware that this only works if the tag name and type name of the top level element are the same.
Modify the parse function in your generated module, replacing the class whose factory is called and the tag name passed in to the export method. For example, change:
def parse(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = type1.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('<?xml version="1.0" ?>\n') rootObj.export(sys.stdout, 0, name_="type1", namespacedef_='') return rootObj
to:
def parse(inFileName): doc = minidom.parse(inFileName) rootNode = doc.documentElement rootObj = type2.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('<?xml version="1.0" ?>\n') rootObj.export(sys.stdout, 0, name_="type2", namespacedef_='') return rootObj
Notice that we've changed the two occurrences of "type1" to "type2".
Using the generated parse function as a model, create a separate module that imports your generated module. In the parse function in your module, make a change similar to that suggested above. And, of course, add any additional code needed by your application.
Write a separate module containing your own parse function that inspects the top level element of an input XML instance document and automatically determines which generated class should be used to parse it. Here is an example:
#!/usr/bin/env python import sys from optparse import OptionParser from xml.dom import minidom import mygeneratedmodule as gendsmod def get_root_tag(node): tag = node.tagName tags = tag.split(':') if len(tags) > 1: tag = tags[-1] rootClass = None if hasattr(gendsmod, tag): rootClass = getattr(gendsmod, tag) return tag, rootClass def parse(inFilename, options): doc = minidom.parse(inFilename) rootNode = doc.documentElement rootTag, rootClass = get_root_tag(rootNode) rootObj = rootClass.factory() rootObj.build(rootNode) # Enable Python to collect the space used by the DOM. doc = None sys.stdout.write('<?xml version="1.0" ?>\n') rootObj.export(sys.stdout, 0, name_=rootTag, namespacedef_='') doc = None return rootObj USAGE_TEXT = """ python %prog [options] <somefile.xml>""" def usage(parser): parser.print_help() sys.exit(1) def main(): parser = OptionParser(USAGE_TEXT) (options, args) = parser.parse_args() if len(args) == 1: infilename = args[0] parse(infilename, options) else: usage(parser) if __name__ == "__main__": main()
Notice the call to get_root_tag, which attempts to recognize the top level tag in the input XML document so that the parse function can parse and export it.
The generated classes contain methods export and exportLiteral which can be called to export classes to several text formats, in particular to an XML instance document and a Python module containing Python literals. See the generated parse functions for examples showing how to call the export methods.
The export method in generated classes writes out an XML document that represents the instance that contains it and its child elements. So, for example, if your instance tree was created by one of the parsing functions described above, then calling export on the root element should reproduce the input XML document, differing only with respect to ignorable white space.
Arguments to the generated export method:
outfile -- A file like object open for writing.
level -- the indentation level. If the pretty_print argument is True, the (generated) function showIndent is used to prefix each exported line with 4 spaces for each level of indent.
namespace_ -- An empty string or an XML namespace prefix plus a colon, example "abc:". This value is printed immediately in front of the tag name.
name_ -- The element tag name. Note that the tag name can be overridden by the original_tagname_, which can be set by the class constructor.
namespacedef_ -- Zero or more namespace prefix definitions. Actually, its value can be any attribute-value pairs. Examples:
'' 'xmlns:abc="http://www.abc.com"http://www.def.com" 'xmlns:abc="http://www.abc.com xmlns:def="http://www.def.com"
or, because it is printed where the attributes occur, even:
'size="25" color="blue"'
For more on namespacedef_, see: Namespaces -- inserting namespace definition in exported documents
pretty_print -- If True, exported output is printed with indentation and newlines. If False, indentation and newlines are omitted, which produces a more compact representation.
Also see the comments on generatedsnamespaces and GenerateDSNamespaceDefs near the top of each generated module.
generateDS.py generates Python classes that represent the elements in an XML document, given an Xschema definition of the XML document type. The exportLiteral method will export a Python literal representation of the Python instances of the classes that represent an XML document.
When generateDS.py generates the Python source code for your classes, this new feature also generates an exportLiteral method in each class. If you call this method on the root (top-most) object, it will write out a literal representation of your class instances as Python code.
generateDS.py also generates a function at top level (parseLiteral) that parses an XML document and calls the "exportLiteral" method on the root object to write the data structure (instances of your generated classes) as a Python module that you can import to (re-)create instances of the classes that represent your XML document.
generateDS.py was designed and built with the assumption that we are not interested in marking up text content at all. What we really want is a way to represent structured and nested date in text. It takes the statement, "I want to represent nested data structures in text.", entirely seriously. Given that assumption, there may be times when you want a more "Pythonic" textual representation of the Python data structures for which generateDS.py has generated code. exportLiteral enables you to produce that representation.
This feature means that the classes that you generate from an XML schema support the interchangeability of XML and Python literals. This means that, given classes generated by generateDS.py for your XML document type, you can perform the following transformations:
This capability enables you to:
See the generated function parseLiteral for an example of how to use exportLiteral.
You can also export "compact" XML documents. A compact document is one that is exported without the ignorable whitespace that is used to produce pretty printed documents. In contrast, a pretty printed document will have leading white space on most lines to show indentation.
To produce compact documents, pass the optional argument pretty_print=False to the export function. Check the "parse" functions generated near the bottom of modules generated by generateDS.py, where pretty_print=True is passed in by default.
If you have an instance of a minidom node that represents an element in an XML document, you can also use the 'build' member function to populate an instance of the corresponding class. Here is an example:
from xml.dom import minidom from xml.dom import Node doc = minidom.parse(inFileName) rootNode = doc.childNodes[0] people = [] for child in rootNode.childNodes: if child.nodeType == Node.ELEMENT_NODE and child.nodeName == 'person': obj = person() obj.build(child) people.append(obj)
If you choose to use the generated subclass module, and I encourage you to do so, you may need to edit and modify that file. Here are some of the things that you must do (look for "???"):
You can also (and most likely will want to) add methods to the generated classes. See the section How to Modify the Generated Code for more on this.
The classes generated from each element definition provide getter and setter methods to access its attributes and child elements.
Elements that are referenced but not defined (i.e. that are simple, for example strings, integers, floats, and booleans) are accessed through getter and setter methods in the class in which they are referenced.
Element definitions that contain attributes but no nested child elements provide access to their data content through getter and setter methods getValueOf_ and setValueOf_ and member variable valueOf_.
The goal of generateDS.py is to support data structures represented in XML as opposed to text mark-up. However, it does provides some support for mixed content. But, for mixed content, the data structures and code generated by generateDS.py are fundamentally different from those for elements that do not contain mixed content.
There are limitations, of course. A known limitation is related to extension elements. Specifically, if an element contains mixed content, and this element extends a base class, then the base class and any classes it extends must be defined to contain mixed content. This is due to the fact that generateDS.py generates a data structure (class) for elements containing mixed content that is fundamentally different from that generated for other elements.
Here is an example of mixed content:
<note>This is a <bold>nice</bold> comment.</note>
When an element is defined with something like the following:
<xs:complexType mixed="true"> <xs:sequence> o o o
then, instead of generating a class whose named members refer to nested elements, a class containing a list of instances of class MixedContainer is generated. In order to process the content of a mixed content element, the code you write will need to walk this list of instances of MixedContainer and check the type of each item in that list. Basically, the structure becomes more DOM-like in the sense that it has a list of children, rather than named fields.
Instances of MixedContainer have the following methods:
Note that elements defined with attributes but with no nested sub-elements do not need to be declared as "mixed". For these elements, character data is captured in a member variable valueOf_, and can be accessed with member methods getValueOf_ and setValueOf_.
For elements that specify anyAttributes, generateDS.py produces a class containing the following:
Note: Attributes that are explicitly defined for an element are not stored in the dictionary anyAttributes_.
generateDS.py ignores the processContents attribute on the anyAttribute element in the XML Schema
generateDS.py provides a mechanism that enables you to attach user defined methods to specific generated classes. In order to do so, create a Python module containing specifications of those methods and indicate that module on the command line with the "--user-methods" option. Example:
python generateDS.py -f --super=people_sup -o people_sup.py -s people_sub.py --user-methods=/path/to/gends_user_methods.py people.xsd
The argument to the "--user-methods" (or "-u") command line option is a path to a Python module. It should include ".py" at the end. Examples:
-u gends_user_methods.py -u path/to/methods_module.py
The module specified with the "--user-methods" flag should define a variable METHOD_SPECS which contains a list of instances of a class that implements methods match_name and get_interpolated_source.
See file gends_user_methods.py for an example of this specification file and the definition of class MethodSpec. Read the comments in that file for more guidance.
The member_data_items_ class variable -- User methods, especially those attached to more than one class, are likely to need a list of the members in the current class. Each generated class has a class variable containing a list of specifications of the members in the class. Each item in this list is an instance of class MemberSpec_, which is defined near the top of your generated (super-class) file. Use the following to access the information in each member specification:
m.get_name() -- Returns the name of the member variable (a string).
m.get_data_type() -- Returns the data type of the member variable (a string). If the data type is a list, returns the terminal type, which is that last string in the list. (Also see get_data_type_chain().)
m.get_data_type_chain() -- Returns the data type of the member variable (a string or list). When the data type is a simpleType that has another simpleType as it's base or is a complexType that extends a simpleType, then the data type is a list of strings, for example:
['RelationType', 'xs:string']
The last string in the list is the terminal type, usually a built-in simple type. Note that m.get_data_type() returns the terminal (last) type.
m.get_container() -- (an integer) Indicates whether the member variable is a single item or a list/container (i.e. generated from maxOccurs > 0): 0 indicates a single item; 1 indicates a list.
m.get_optional() -- (an integer) Returns 0 (zero) if the item is optional (defined with minOccurs="0"), else returns 1.
There are a number of things of interest in this sample file (gends_user_methods.py):
Although, the MethodSpec class must be included in your user methods specification module, you can modify this class. For example, for special situations, it might be useful to modify either of the methods MethodSpec.match_name or MethodSpec.get_interpolated_source. These methods are called by generateDS.py. See comments on the definitions of these methods in gends_user_methods.py.
A method set_up is attached to the root class. (This user method specification module is intended to be used with people.xsd/people.xml in the Demos/People directory.) It performs initialization, before the walk method is called. In particular, set_up initializes a counter and imports the types module (which saves us from having to modify the generated code).
The walk_and_update and walk_and_show methods provide an example showing how to walk the entire document object tree.
The method walk_and_update uses the member_data_items_ class variable to obtain a list of members of the class. It's a list of instances of class MemberSpec_, which support the m.get_name(), m.get_data_type(), and m.get_container() methods described above.
In method walk_and_show, note the use of getattr to retrieve the value of a member variable and the use of setattr to set the value of a member variable.
The expression "%(class_name)s" is used to insert the class name into the generated source code.
Notice how the types module is used to determine whether a member variable contains a simple type or an instance of a class. Example:
obj1 = getattr(self, member[0]) if type(obj1) == types.InstanceType: ...
In string formatting operations, you will need to use double percent signs in order to "pass through" a single percent sign, for example:
print '%%d. class: %(class_name)s depth: %%d' %% (counter, depth, )
where the single percent signs are interpolated ("%(class_name)s" is replace by the class name), and double percent signs are replace by single percent signs ("%%d" becomes "%d").
Suggestion -- How to begin:
generateDS.py generates calls to several methods that each have a default implementation in a superclass. The default superclass with default implementations is included in the generated code. The user can replace this default superclass by implementing a module named generatedssuper.py containing a class named GeneratedsSuper.
What to look for in the generated code:
To view the default implementation of class GeneratedsSuper, look in a generated superclass module (one generated by the "-o" command line option with generateDS.py). The default definition of class GeneratedsSuper is near the top of a generated module.
If you wish to modify the behavior of any of these methods, see below for instructions on how to do so.
Caution: Overriding any of the *_format_*() methods enables you to export invalid XML. So, use at your own risk, test before using, etc.
How to modify the behavior of the default methods:
Where to put (implement) methods that override the default methods -- You can place the implementations of methods that override the default methods in the following places:
In a class named GeneratedsSuper in a separate module named generatedssuper. Since this class would replace the default implementations, you should provide implementations of all the default methods listed above in that class. To create your own version, copy and paste the default implementation of class GeneratedsSuper from your generated module into a file named generatedssuper.py, then modify that.
In individual generated (super) classes (the ones generated with the "-o" command line option) using the User Methods feature.
In individual classes in a subclass module generated with the "-s" command line option.
If you want to use the same method in more than one generated subclass, then you might consider putting that method in a "mix-in" class and inherited that method in the generated subclass. With this approach, you must put the mix-in class containing your methods before the regular superclass, so that Python will find your custom methods before the default ones. That is, you must use:
class clientSub(MySpecialMethods, supermod.client):
not:
class clientSub(supermod.client, MySpecialMethods):
If you choose to implement module generatedssuper, here are a few instructions and suggestions:
Implement a module generatedssuper.py containing definition of a class GeneratedsSuper. You can copy and paste the default implementation from a superclass module generated with the -o command line option for generateDS.py.
Put this module in a location where it can be imported when your generated code is run. Note the try:except: block in your generated superclass module that attempts to import it and that uses the default implementation of GeneratedsSuper when it cannot.
An easy way to begin is to copy the default definition of the class GeneratedsSuper from a superclass module generated with the "-o" command line option into a module named generatedssuper.py. Then modify your (copied) implementation.
To implement a method that does a task specific to particular class or a particular member of a class, do something like the following:
def gds_format_string(self, input_data, input_name=''): if self.__class__.__name__ == 'person': return '[[%s]]' % input_data else: return input_data
or:
def gds_format_string(self, input_data, input_name=''): if self.__class__.__name__ == 'booster' and input_name == 'lastname': return '[[%s]]' % input_data else: return input_data
Alternatively, to attach a method to a specific class, use the User Methods or a generated subclass module (command line option "-s"), as described above.
You can also add additional, new methods that you call (for example, in subclasses that you generate with the -s command line option for generateDS.py.
generateDS.py automatically generates a dictionary that maps element/complexType names to the names of the class generated for that complexType definition. This dictionary is named GDSClassesMapping. You will find it in the module generated with the "-o" option.
You can add additional attributes to exported XML content by (1) providing a module named generatedsnamespaces.py; (2) placing that module somewhere so that it can be imported when you "run" your generated module; and (3) including in generatedsnamespaces.py a global variable named GenerateDSNamespaceDefs whose value is a Python dictionary. The keys in this dictionary should be element type names in the generated module. And the values should be text strings that are attributes to be added to exported elements of that type.
Here is an example:
# file: generatedsnamespaces.py GenerateDSNamespaceDefs = { "A1ElementType": 'xmlns:abc="http://www.abc.com/namespace_a1"', "A2ElementType": 'xmlns:abc="http://www.abc.com/namespace_a2"', }
Notes:
In some cases where an instance of a type derived from an abstract type is exported and the type of the instance is specified with the attribute "xsi:type", you may need to specify the prefix for the type. Here are notes and an example on how to do that from the comments in a module generated by generateDS.py:
# Additionally, the generatedsnamespaces module can contain a python # dictionary named GenerateDSNamespaceTypePrefixes that associates element # types with the namespace prefixes that are to be added to the # "xsi:type" attribute value. See the exportAttributes method of # any generated element type and the generation of "xsi:type" for an # example of the use of this table. # An example table: # # # File: generatedsnamespaces.py # # GenerateDSNamespaceTypePrefixes = { # "ElementtypeC": "aaa:", # "ElementtypeD": "bbb:", # }
The generateDS.py project provides support for two approaches to this task:
The --one-file-per-xsd command line option enables you to generate a separate Python module for each XML schema that is imported or included (using <xs:import> or <xs:include>) by a "master" schema. Then, in your Python application, these modules can then be imported separately. Alternatively, these modules can be placed in a Python package (a directory containing a file named "__init__.py"). See http://docs.python.org/2/tutorial/modules.html#packages for more on Python packages.
Here is a sample use:
$ ../generateDS.py --one-file-per-xsd --output-directory="OnePer" --module-suffix="One" one_per.xsd
The above command does the following:
Here are a few hints, guidelines, and suggestions:
At least one element definition in an included/imported module must be a root element definition in order to cause a module to be generated for that schema. In other words, the module must contain an element definition of the form:
<xs:element name="Sample" type="sampleType" />
You may want to write a separate "master" schema that includes each of the schemas for which you want to generate a separate Python module.
Use the --output-directory=<directory> command line option to tell generateDS.py to generate the Python modules in a specific directory. The directory must already exist.
Use the --module-suffix=<suffix> command line option to add a specifc suffix to each module name (the part immediately before the extension). For example, the option --module-suffix=Abc causes generateDS.py to generate a file named "schema1Abc.py" instead of "schema1.py".
If you want to import files from the output directory and it is not in sys.path, add a file named "__init__.py" to that directory. The existence of the file __init__.py turns the directory into a Python package.
The generateds/utils subdirectory contains two utility scripts that may help with this task. The procedure is as follows:
Each of these modules gives a reasonable amount of usage information in response to the --help command line option.
A few hints and suggestions:
This section attempts to explain how to modify and add features to the generated code.
You can add new member definitions to a generated class. Look at the 'export' and 'exportLiteral' member functions for examples of how to access member variables and how to walk nested sub-elements.
Here are interesting places to look in each class definition:
And, if you need methods that are common to and shared by several of the generated subclasses, you can put them in a new class and add that class to the superclass list for each of your subclasses.
Although you can add your own methods to the generated superclasses, I'm recommeding that you add methods to the generated subclasses in the subclass module generated with the "-s" command line option, and then edit the subclass module in order to build your application. Why?
Here are some alternatives to using the subclass file:
Under the directory Demos are several examples:
Suggested uses:
generateDS.py can be used to generate Django models and Django forms that represent the data structures defined in an XML Schema.
Note: In order to use this capability, you must obtain the "source" distribution of generateDS.py. You can do this either (1) by downloading generateDS-x.xxy.tar.gz from the Python Package Index or (2) by downloading the distribution from Bitbucket at https://bitbucket.org/dkuhlman/generateds. In particular, installing generateDS.py using pip does not give you all the files you need in order to use this capability.
Note: You only need to obtain the source distribution (so that you can copy the files in the django/ directory, for example); you do not necessarily need to install from it. If you have already installed generateDS.py using pip or easy_install, you do not need to re-install from the source tree.
There are support files in the django directory in the source distribution (but not in the version install using pip or easy_install).
Here is an overview of the process:
The script gends_run_gen_django.py performs these three steps.
In order to use the script gends_run_gen_django.py, you may need to tell it where the generateDS.py script is located. If so, use the "-p" command line option. For more information, do:
python gends_run_gen_django.py --help
Warning: Running this script attempts to over-write the following files in the current directory:
To over-write these files, use the -f (or --force) command line option.
So, it's a good idea to create a separate, new directory in which to do the following work.
Now, follow these steps:
Create an empty directory:
$ mkdir WorkDir $ cd WorkDir
Copy the files in from the sub directory django/ in the of the source distribution of generateDS.py to the current directory:
$ cp /my_sources/generateDS-n.nn/django/* .
Copy the file process_includes.py in the distribution to the current directory:
$ cp /my_sources/generateDS-n.nn/process_includes.py .
Run the following:
$ ./gends_run_gen_django.py myschema.xsd
There are additional command line options for gends_run_gen_django.py. For help, run $ python gends_run_gen_django.py --help.
Copy the generated files models.py and forms.py to your Django application.
Here are a few notes that might be helpful if and when you need to do some debugging or extend the current capabilities or write a new "meta-app" that uses the same approach but does something new and even entirely different.
gends_run_gen_django.py uses Popen to run other scripts, specifically, it runs generateDS.py, gends_extract_simple_types.py, and gends_generate_django.py.
gends_extract_simple_types.py scans the XML schema doc and extracts simpleType definitions. It writes descriptors of those definitions to the file generateds_definedsimpletypes.py.
gends_generate_django.py generates the models.py and forms.py files by calling the class method generate_model_ for each class in the list of classes in the variable __all__ in the generated bindings. __all__ is defined at the bottom of the generated bindings module.
The class method generate_model_ (along with some tables for predefined simple types etc) is defined in generatedssuper.py, which is imported by the generated bindings module. We are overriding the default version of that class. generate_model_ is defined in the class GeneratedsSuper, which is used as the root super class of all generated data representation classes.
The following extension employs a user method (see User Methods) in order to capture elements defined as xs:date as date objects.
Thanks to Lars Ericson for this code and explanation.
By default, generateDS.py treats elements declared as type xs:date as though they are strings.
To get xs:dates stored as dates, in your local copy, add the following user method (User Methods), a slight modification of the sample (in gends_user_methods.py):
method1 = MethodSpec(name='walk_and_update', source='''\ def walk_and_update(self): members = %(class_name)s.member_data_items_ for member in members: obj1 = getattr(self, member.get_name()) if member.get_data_type() == 'xs:date': newvalue = date_calcs.date_from_string(obj1) setattr(self, member.get_name(), newvalue) elif member.get_container(): for child in obj1: if type(child) == types.InstanceType: child.walk_and_update() else: obj1 = getattr(self, member.get_name()) if type(obj1) == types.InstanceType: obj1.walk_and_update() ''', class_names=r'^.*$', )
Then, define date_calcs.py as:
#!/usr/bin/env python # -*- mode: pymode; coding: latin1; -*- import datetime # 2007-09-01 # test="2007-09-01" # print test # print date_from_string(test) def date_from_string(str): year = int(str[:4]) month = int(str[5:7]) day = int(str[8:10]) dt = datetime.date(year, month, day) return dt
And, add a "str" here in generateDS.py:
def quote_xml(inStr): s1 = str(inStr) s1 = s1.replace('&', '&') s1 = s1.replace('<', '<') s1 = s1.replace('"', '"') return s1
Also, add these imports to TEMPLATE_HEADER in generateDS.py:
import date_calcs import types
There are things in Xschema that are not supported. You will have to use a restricted sub-set of Xschema to define your data structures. See above for supported features. See people.xsd and people.xml for examples.
And, then, try it on your XML Schema, and let me know about what does not work.
While generateDS.py itself does not process XML Schema include elements, the distribution provides a script process_includes.py that can be used as a preprocessor. process_includes.py is called automatically and by default by generateDS.py. This behavior can be turned off with the --no-process-includes command line option. However, doing so is not advised, because unexpected and undesirable behavior has been detected this is done. Instead consider using the --no-collect-includes and --no-redefine-groups command line options to selectively turn of specific processing done in process_includes.py.
The process_includes.py script scans your XML Schema document and, recursively, documents that are included looking for include elements; it inserts all content into a single document, which it writes out.
Here are samples of how you might use process_includes.py, if your schema contains include elements.
Example 1:
$ python process_includes.py definitions1.xsd | \ $ python generateDS.py -f --super=task1sup -o task1sup.py -s task1sub.py -
Example 2:
$ python process_includes.py definitions1.xsd tmp.xsd $ python generateDS.py -f --super=task1sup -o task1sup.py -s task1sub.py tmp.xsd
For help and usage information, run the following:
$ python process_includes.py --help
RelaxNG is a schema definition language and is an alternative to XML Schema. For more information on RelaxNG, see: http://relaxng.org/.
generateDS.py does not understand or process RelaxNG schemas. However, the trang application is able to convert RelaxNG into XML Schemas. I've tried it, and was able to convert a relatively small RelaxNG schema into an XML Schema, and then use generateDS.py to generate a bindings module from that. I have not done any serious testing to determine how complete or accurate this conversion is. trang is written in Java, so you will need Java and the JDK installed in order to compile and use it. For what it's worth, here are the steps I followed in order to use trang:
Clone trang from https://github.com/relaxng/jing-trang.git, and, then built it with:
$ git clone https://github.com/relaxng/jing-trang.git $ cd jing-trang # set JAVA_HOME to location of JDK $ export JAVA_HOME=/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt $ ./ant
Run trang with the following:
$ cd jing-trang/build $ java -jar trang.jar -I rng -O xsd test01.rng test01.xsd
The above command produced test01.xsd.
Run the resulting XML Schema (test01.xsd, in the above case) through generateDS.py:
$ generateDS.py -o test01sup.py -s test01sub.py test01.xsd
You can learn more about trang at the RelaxNG web site and here: https://github.com/relaxng/jing-trang
Many thanks to those who have used generateDS.py and have contributed their comments and suggestions. These comments have been valuable both in teaching me about things I needed to know in order to continue work and in motivating me to do the work in the first place.
And, a special thanks to those of you who have contributed patches for fixes and new features. Recent help has been provided by the following among others:
Python: The Python home page.
Dave's Page: My home page, which contains more Python stuff.