Module dds
source code
DDS parser.
This module implements a DDS parser based on ``shlex.shlex``.
|
DDSParser
A parser for Dataset Descriptor Structure.
|
|
__author__ = 'Roberto De Almeida <rob@pydap.org>'
|
|
WORDCHARS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNO...
|
|
atomic_types = ('byte', 'int', 'uint', 'int16', 'uint16', 'int32', ...
|
|
constructors = ('grid', 'sequence', 'structure')
|
Imports:
shlex.shlex,
dtypes.Float16,
dtypes.ArrayType,
dtypes.Float32,
dtypes.GridType,
dtypes.Int32,
dtypes.Int16,
dtypes.String,
dtypes.BaseType,
dtypes.UInt16,
dtypes.Int0,
dtypes.Byte,
dtypes.DatasetType,
dtypes.Int8,
dtypes.StructureType,
dtypes.Float64,
dtypes.Url,
dtypes.SequenceType,
dtypes.Int64,
dtypes.UInt64,
dtypes.Int,
dtypes.Float,
dtypes.UInt32,
dtypes.Float8,
dtypes.Float0,
proxy,
BaseParser
__author__
None
-
- Value:
'Roberto De Almeida <rob@pydap.org>'
|
|
WORDCHARS
None
-
- Value:
"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!#$%&'(
)*+-./<>?@\\^_`|~"
|
|
atomic_types
None
-
- Value:
('byte',
'int',
'uint',
'int16',
'uint16',
'int32',
'uint32',
'float32',
...
|
|
constructors
None
-
- Value:
('grid', 'sequence', 'structure')
|
|