-
Notifications
You must be signed in to change notification settings - Fork 0
PrologReader
A class for reading input in prolog text format and converting it into transducer(s).
The easiest way to create transducers from prolog files are probably the functions hfst.read_prolog_transducer(f, linecount) and hfst.read_prolog_transducer(f).
An example that reads prolog input from file 'testfile.prolog' and creates the corresponding transducers and prints them. If the input cannot be parsed, a message showing the invalid line in prolog input is printed and reading is stopped.
with open('testfile.prolog', 'r') as f:
try:
r = hfst.PrologReader(f)
for tr in r:
print(tr)
except hfst.exceptions.NotValidPrologFormatException as e:
print(e.what())
Create a PrologReader that reads input from file f
.
-
f
A python file.
Read next transducer.
Read next transducer description in prolog format and return a corresponding transducer.
An iterator to the reader.
Needed for 'for ... in' statement.
for transducer in prolog_reader:
print(transducer)
Deprecated: Return next element (for python version 2).
Needed for 'for ... in' statement.
for transducer in prolog_reader:
print(transducer)
- StopIteration
Return next element (for python version 3).
Needed for 'for ... in' statement.
for transducer in prolog_reader:
print(transducer)
- StopIteration
Package hfst
- AttReader
- PrologReader
- HfstIterableTransducer
- HfstTransition
- HfstTransducer
- HfstInputStream
- HfstOutputStream
- MultiCharSymbolTrie
- HfstTokenizer
- LexcCompiler
- XreCompiler
- PmatchContainer
- ImplementationType