Pyparsing documentation shows how to use setResultsName(...) method to set a resulting dictionary key. However, I saw a few times that this method is omitted and just (...) is used. What I mean is:
Instead of:
exp1 = pp.Word(pp.alphas).setResultsName('word1')
exp1.parseString( "Hello" ).asDict()
... one can do:
exp1 = pp.Word(pp.alphas)('word1')
exp1.parseString( "Hello" ).asDict()
... and the result is going to be exactly the same.
So 2 questions:
Where can I find the document confirming that omitting setResultsName can be done?
How does that work? Is pp.Word(pp.alphas), being a pyparsing object, a function? How is it implemented then?
Thanks
You can find the pyparsing documentation online.
The documentation for setResultsName says:
The information for
__call__
confirms this behavior.Since the ParserElement class implements
__call__
, that makes instances of that class callable, like a function. In this case, calling a ParserElement instance with a string argument is equivalent to callingsetResultsName
.