Class for reading and processing standard format marker files and
strings.
|
|
__init__(self,
filename=None,
encoding=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
open(self,
sfm_file)
Open a standard format marker file for sequential reading. |
source code
|
|
|
|
|
iterator over (marker, value) tuples
|
|
iterator over (marker, value) tuples
|
fields(self,
strip=True,
unwrap=True,
encoding=None,
errors='strict',
unicode_fields=None)
Return an iterator for the fields in the standard format marker file. |
source code
|
|
|
|
close(self)
Close a previously opened standard format marker file or string. |
source code
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|