Y@sdZdZdZdZddlZddlmZddlZddl Z ddl Z ddl Z ddl Z ddl Z ddlZddlZddlZddlmZyddlmZWn"ek rddlmZYnXydd l mZWnAek r@ydd lmZWnek r;dZYnXYnXd d d d ddddddddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;d<d=d>d?d@dAdBdCdDdEdFdGdHdIdJdKdLdMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhdidjdkdldmdndodpdqdrgiZee jddsZeddskZere jZe Z!e"Z#e Z$e%e&e'e(e)ee*e+e,e-e.g Z/nve j0Ze1Z2dtduZ$gZ/ddl3Z3xFdvj4D]8Z5ye/j6e7e3e5Wne8k rgw0YnXq0We9dwdxe2dyDZ:dzd{Z;Gd|d}d}e<Z=ej>ej?Z@d~ZAeAdZBe@eAZCe"dZDdjEddxejFDZGGdd!d!eHZIGdd#d#eIZJGdd%d%eIZKGdd'd'eKZLGdd*d*eHZMGddde<ZNGdd&d&e<ZOe jPjQeOdd=ZRddNZSddKZTddZUddZVddZWddUZXdddZYGdd(d(e<ZZGdd0d0eZZ[Gddde[Z\Gddde[Z]Gddde[Z^e^Z_e^eZ_`Gddde[ZaGdd d e^ZbGdd d eaZcGddpdpe[ZdGdd3d3e[ZeGdd+d+e[ZfGdd)d)e[ZgGdd d e[ZhGdd2d2e[ZiGddde[ZjGdddejZkGdddejZlGdddejZmGdd.d.ejZnGdd-d-ejZoGdd5d5ejZpGdd4d4ejZqGdd$d$eZZrGdd d erZsGdd d erZtGddderZuGddderZvGdd"d"eZZwGdddewZxGdddewZyGdddewZzGdddezZ{Gdd6d6ezZ|Gddde<Z}e}Z~GdddewZGdd,d,ewZGdddewZGdddeZGdd1d1ewZGdddeZGdddeZGdddeZGdd/d/eZGddde<ZddfZddddDZddd@ZddZddSZddRZddZddddWZddEZdddkZddlZddnZe\jdGZeljdMZemjdLZenjdeZeojddZeeeDdddjddZefdjddZefdjddZeeBeBeeeGddddyBefde jBZeeedeZe^dedjdee{eeBjddZddcZddQZdd`Zdd^ZddqZeddZeddZddZddOZddPZddiZe<e_dddoZe=Ze<e_e<e_ededddmZeZeefddjdZeefddjdZeefddefddBjdZee_dejjdZdddejddTZdddjZedZedZeeee@eCdjd\ZZeed j4d Zefd d jEejd jdZdd_ZeefddjdZefdjdZefdjjdZefdjdZeefddeBjdZeZefdjdZee{eeeGddeeede^demjjdZeeejeBddjd>ZGddrdrZed krebd!Zebd"Zeee@eCd#Zeed$d%djeZeeejd&Zd'eBZeed$d%djeZeeejd(Zed)ed&eed(Zejd*ejjd+ejjd+ejjd,ddlZejjeejejjd-dS(.aS pyparsing module - Classes and methods to define and execute parsing grammars The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. With pyparsing, you don't need to learn a new syntax for defining grammars or matching expressions - the parsing module provides a library of classes that you use to construct the grammar directly in Python. Here is a program to parse "Hello, World!" (or any greeting of the form C{", !"}), built up using L{Word}, L{Literal}, and L{And} elements (L{'+'} operator gives L{And} expressions, strings are auto-converted to L{Literal} expressions):: from pyparsing import Word, alphas # define grammar of a greeting greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print (hello, "->", greet.parseString(hello)) The program outputs the following:: Hello, World! -> ['Hello', ',', 'World', '!'] The Python representation of the grammar is quite readable, owing to the self-explanatory class names, and the use of '+', '|' and '^' operators. The L{ParseResults} object returned from L{ParserElement.parseString} can be accessed as a nested list, a dictionary, or an object with named attributes. The pyparsing module handles some of the problems that are typically vexing when writing text parsers: - extra or missing whitespace (the above program will also handle "Hello,World!", "Hello , World !", etc.) - quoted strings - embedded comments z2.2.0z06 Mar 2017 02:06 UTCz*Paul McGuire N)ref)datetime)RLock) OrderedDictAndCaselessKeywordCaselessLiteral CharsNotInCombineDictEachEmpty FollowedByForward GoToColumnGroupKeywordLineEnd LineStartLiteral MatchFirstNoMatchNotAny OneOrMoreOnlyOnceOptionalOrParseBaseExceptionParseElementEnhanceParseExceptionParseExpressionParseFatalException ParseResultsParseSyntaxException ParserElement QuotedStringRecursiveGrammarExceptionRegexSkipTo StringEnd StringStartSuppressTokenTokenConverterWhiteWordWordEnd WordStart ZeroOrMore alphanumsalphas alphas8bit anyCloseTag anyOpenTag cStyleCommentcolcommaSeparatedListcommonHTMLEntity countedArraycppStyleCommentdblQuotedStringdblSlashComment delimitedListdictOfdowncaseTokensemptyhexnums htmlCommentjavaStyleCommentlinelineEnd lineStartlineno makeHTMLTags makeXMLTagsmatchOnlyAtColmatchPreviousExprmatchPreviousLiteral nestedExprnullDebugActionnumsoneOfopAssocoperatorPrecedence printablespunc8bitpythonStyleComment quotedString removeQuotesreplaceHTMLEntity replaceWith restOfLinesglQuotedStringsrange stringEnd stringStarttraceParseAction unicodeString upcaseTokens withAttribute indentedBlockoriginalTextForungroup infixNotation locatedExpr withClass CloseMatchtokenMappyparsing_commonc Cst|tr|Syt|SWn\tk rt|jtjd}td}|jdd|j |SYnXdS)aDrop-in replacement for str(obj) that tries to be Unicode friendly. It first tries str(obj). If that fails with a UnicodeEncodeError, then it tries unicode(obj). It then < returns the unicode object | encodes it with the default encoding | ... >. xmlcharrefreplacez&#\d+;cSs,dtt|dddddS)Nz\ur)hexint)trw./tmp/pip-build-3puug3g5/pyparsing/pyparsing.pysz_ustr..N) isinstanceunicodestrUnicodeEncodeErrorencodesysgetdefaultencodingr'setParseActiontransformString)objretZ xmlcharrefrwrwrx_ustrs  rz6sum len sorted reversed list tuple set any all min maxccs|] }|VqdS)Nrw).0yrwrwrx srrrcCsUd}dddjD}x/t||D]\}}|j||}q/W|S)z/Escape &, <, >, ", ', etc. in a string of data.z&><"'css|]}d|dVqdS)&;Nrw)rsrwrwrxrsz_xml_escape..zamp gt lt quot apos)splitzipreplace)data from_symbols to_symbolsfrom_to_rwrwrx _xml_escapes rc@seZdZdS) _ConstantsN)__name__ __module__ __qualname__rwrwrwrxrs r 0123456789Z ABCDEFabcdef\ccs$|]}|tjkr|VqdS)N)string whitespace)rcrwrwrxrsc@s|eZdZdZdddddZeddZdd Zd d Zd d Z dddZ ddZ dS)rz7base exception class for all parsing runtime exceptionsrNcCs[||_|dkr*||_d|_n||_||_||_|||f|_dS)Nr)locmsgpstr parserElementargs)selfrrrelemrwrwrx__init__s       zParseBaseException.__init__cCs||j|j|j|jS)z internal factory method to simplify creating one type of ParseException from another - avoids having __init__ signature conflicts among subclasses )rrrr)clsperwrwrx_from_exceptionsz"ParseBaseException._from_exceptioncCsm|dkrt|j|jS|dkr>t|j|jS|dkr]t|j|jSt|dS)zsupported attributes by name are: - lineno - returns the line number of the exception text - col - returns the column number of the exception text - line - returns the line containing the exception text rJr9columnrGN)zcolzcolumn)rJrrr9rGAttributeError)ranamerwrwrx __getattr__s   zParseBaseException.__getattr__cCs d|j|j|j|jfS)Nz"%s (at char %d), (line:%d, col:%d))rrrJr)rrwrwrx__str__szParseBaseException.__str__cCs t|S)N)r)rrwrwrx__repr__szParseBaseException.__repr__z>!} ('-' operator) indicates that parsing is to stop immediately because an unbacktrackable syntax error has been foundN)rrrrrwrwrwrxr#s c@s.eZdZdZddZddZdS)r&zZexception thrown by L{ParserElement.validate} if the grammar could be improperly recursivecCs ||_dS)N)parseElementTrace)rparseElementListrwrwrxrsz"RecursiveGrammarException.__init__cCs d|jS)NzRecursiveGrammarException: %s)r)rrwrwrxr sz!RecursiveGrammarException.__str__N)rrrrrrrwrwrwrxr&s  c@s@eZdZddZddZddZddZd S) _ParseResultsWithOffsetcCs||f|_dS)N)tup)rp1p2rwrwrxr$sz _ParseResultsWithOffset.__init__cCs |j|S)N)r)rirwrwrx __getitem__&sz#_ParseResultsWithOffset.__getitem__cCst|jdS)Nr)reprr)rrwrwrxr(sz _ParseResultsWithOffset.__repr__cCs|jd|f|_dS)Nr)r)rrrwrwrx setOffset*sz!_ParseResultsWithOffset.setOffsetN)rrrrrrrrwrwrwrxr#s    rc@szeZdZdZddddddZddddeddZdd Zed d Zd d Z ddZ ddZ ddZ e Z ddZddZddZddZddZereZeZeZn6eZeZeZddZd d!Zd"d#Zd$d%Zd&d'Zdd(d)Zd*d+Zd,d-Zd.d/Zd0d1Z d2d3Z!d4d5Z"d6d7Z#d8d9Z$d:d;Z%d<d=Z&d>d?d@Z'dAdBZ(dCdDZ)dEdFZ*ddGd>ddHdIZ+dJdKZ,dLdMZ-d>dNddOdPZ.dQdRZ/dSdTZ0dUdVZ1dWdXZ2dYdZZ3dS)[r"aI Structured parse results, to provide multiple means of access to the parsed data: - as a list (C{len(results)}) - by list index (C{results[0], results[1]}, etc.) - by attribute (C{results.} - see L{ParserElement.setResultsName}) Example:: integer = Word(nums) date_str = (integer.setResultsName("year") + '/' + integer.setResultsName("month") + '/' + integer.setResultsName("day")) # equivalent form: # date_str = integer("year") + '/' + integer("month") + '/' + integer("day") # parseString returns a ParseResults object result = date_str.parseString("1999/12/31") def test(s, fn=repr): print("%s -> %s" % (s, fn(eval(s)))) test("list(result)") test("result[0]") test("result['month']") test("result.day") test("'month' in result") test("'minutes' in result") test("result.dump()", str) prints:: list(result) -> ['1999', '/', '12', '/', '31'] result[0] -> '1999' result['month'] -> '12' result.day -> '31' 'month' in result -> True 'minutes' in result -> False result.dump() -> ['1999', '/', '12', '/', '31'] - day: 31 - month: 12 - year: 1999 NTcCs/t||r|Stj|}d|_|S)NT)rzobject__new___ParseResults__doinit)rtoklistnameasListmodalretobjrwrwrxrTs  zParseResults.__new__c Cs|jrd|_d|_d|_i|_||_||_|dkrQg}||trv|dd|_n-||trt||_n |g|_t |_ |dk r|r|sd|j|<||t rt |}||_||t dttfo(|ddgfks||trC|g}|r||trtt|jd||s z,ParseResults.__getitem__..rs)rzruslicerrrr")rrrwrwrxrs  zParseResults.__getitem__cCs||trB|jj|t|g|j|<|d}n`||ttfrm||j|<|}n5|jj|tt|dg|j|<|}||trt||_ dS)Nr) rrgetrrurrr"wkrefr)rkrrzsubrwrwrx __setitem__s&   /zParseResults.__setitem__c Cs t|ttfrt|j}|j|=t|trf|dkrS||7}t||d}tt|j|}|jx{|j j D]]\}}xN|D]F}x=t |D]/\}\}} t || | |k||.)r)rrw)rrx _itervaluesszParseResults._itervaluescsfddjDS)Nc3s|]}||fVqdS)Nrw)rr)rrwrxrsz*ParseResults._iteritems..)r)rrw)rrx _iteritemsszParseResults._iteritemscCst|jS)zVReturns all named result keys (as a list in Python 2.x, as an iterator in Python 3.x).)rr)rrwrwrxkeysszParseResults.keyscCst|jS)zXReturns all named result values (as a list in Python 2.x, as an iterator in Python 3.x).)r itervalues)rrwrwrxvaluesszParseResults.valuescCst|jS)zfReturns all named result key-values (as a list of tuples in Python 2.x, as an iterator in Python 3.x).)r iteritems)rrwrwrxrszParseResults.itemscCs t|jS)zSince keys() returns an iterator, this method is helpful in bypassing code that looks for the existence of any defined results names.)boolr)rrwrwrxhaskeysszParseResults.haskeyscOs|sdg}xI|jD];\}}|dkrG|d|f}qtd|qWt|dtst|dks|d|kr|d}||}||=|S|d}|SdS)a Removes and returns item at specified index (default=C{last}). Supports both C{list} and C{dict} semantics for C{pop()}. If passed no argument or an integer argument, it will use C{list} semantics and pop tokens from the list of parsed tokens. If passed a non-integer argument (most likely a string), it will use C{dict} semantics and pop the corresponding value from any defined results names. A second default return value argument is supported, just as in C{dict.pop()}. Example:: def remove_first(tokens): tokens.pop(0) print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321'] print(OneOrMore(Word(nums)).addParseAction(remove_first).parseString("0 123 321")) # -> ['123', '321'] label = Word(alphas) patt = label("LABEL") + OneOrMore(Word(nums)) print(patt.parseString("AAB 123 321").dump()) # Use pop() in a parse action to remove named result (note that corresponding value is not # removed from list form of results) def remove_LABEL(tokens): tokens.pop("LABEL") return tokens patt.addParseAction(remove_LABEL) print(patt.parseString("AAB 123 321").dump()) prints:: ['AAB', '123', '321'] - LABEL: AAB ['AAB', '123', '321'] rrdefaultrz-pop() got an unexpected keyword argument '%s'Nrs)rrrzrur)rrkwargsrrindexr defaultvaluerwrwrxpops"     zParseResults.popcCs||kr||S|SdS)ai Returns named result matching the given key, or if there is no such name, then returns the given C{defaultValue} or C{None} if no C{defaultValue} is specified. Similar to C{dict.get()}. Example:: integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") result = date_str.parseString("1999/12/31") print(result.get("year")) # -> '1999' print(result.get("hour", "not specified")) # -> 'not specified' print(result.get("hour")) # -> None Nrw)rkey defaultValuerwrwrxrs zParseResults.getcCsw|jj||x]|jjD]L\}}x=t|D]/\}\}}t||||k|| ['0', '123', '321'] # use a parse action to insert the parse location in the front of the parsed results def insert_locn(locn, tokens): tokens.insert(0, locn) print(OneOrMore(Word(nums)).addParseAction(insert_locn).parseString("0 123 321")) # -> [0, '0', '123', '321'] N)rinsertrrrr)rrinsStrrrrrrrwrwrxr 2szParseResults.insertcCs|jj|dS)a Add single element to end of ParseResults list of elements. Example:: print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['0', '123', '321'] # use a parse action to compute the sum of the parsed integers, and add it to the end def append_sum(tokens): tokens.append(sum(map(int, tokens))) print(OneOrMore(Word(nums)).addParseAction(append_sum).parseString("0 123 321")) # -> ['0', '123', '321', 444] N)rappend)ritemrwrwrxr Fs zParseResults.appendcCs0t|tr||7}n|jj|dS)a Add sequence of elements to end of ParseResults list of elements. Example:: patt = OneOrMore(Word(alphas)) # use a parse action to append the reverse of the matched strings, to make a palindrome def make_palindrome(tokens): tokens.extend(reversed([t[::-1] for t in tokens])) return ''.join(tokens) print(patt.addParseAction(make_palindrome).parseString("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl' N)rzr"rextend)ritemseqrwrwrxr Ts  zParseResults.extendcCs!|jdd=|jjdS)z7 Clear all elements and results names. N)rrclear)rrwrwrxrfszParseResults.clearc Csy ||SWntk r$dSYnX||jkrw||jkrV|j|ddStdd|j|DSndSdS)NrrrrcSsg|]}|dqS)rrw)rrrwrwrxrws z,ParseResults.__getattr__..rs)rrrr")rrrwrwrxrms   !zParseResults.__getattr__cCs|j}||7}|S)N)r)rotherrrwrwrx__add__{s  zParseResults.__add__cs|jrt|jfdd|jj}fdd|D}xD|D]<\}}|||.c sFg|]<\}}|D])}|t|d|dfqqS)rrr)r)rrvlistr) addoffsetrwrxrs z)ParseResults.__iadd__..r) rrrrrzr"rrrupdate)rr otheritemsotherdictitemsrrrw)rrrx__iadd__s   zParseResults.__iadd__cCs1t|tr%|dkr%|jS||SdS)Nr)rzrur)rrrwrwrx__radd__s zParseResults.__radd__cCs dt|jt|jfS)Nz(%s, %s))rrr)rrwrwrxrszParseResults.__repr__cCs%ddjdd|jDdS)N[z, css6|],}t|tr$t|n t|VqdS)N)rzr"rr)rrrwrwrxrsz'ParseResults.__str__..])rr)rrwrwrxrszParseResults.__str__rcCslg}x_|jD]T}|r/|r/|j|t|trQ||j7}q|jt|qW|S)N)rr rzr" _asStringListr)rsepoutr rwrwrxrs  zParseResults._asStringListcCsdd|jDS)a Returns the parse results as a nested list of matching tokens, all converted to strings. Example:: patt = OneOrMore(Word(alphas)) result = patt.parseString("sldkj lsdkj sldkj") # even though the result prints in string-like form, it is actually a pyparsing ParseResults print(type(result), result) # -> ['sldkj', 'lsdkj', 'sldkj'] # Use asList() to create an actual list result_list = result.asList() print(type(result_list), result_list) # -> ['sldkj', 'lsdkj', 'sldkj'] cSs1g|]'}t|tr'|jn|qSrw)rzr"r)rresrwrwrxrs z'ParseResults.asList..)r)rrwrwrxrszParseResults.asListcsMtr|j}n |j}fddtfdd|DS)a Returns the named parse results as a nested dictionary. Example:: integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") result = date_str.parseString('12/31/1999') print(type(result), repr(result)) # -> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]}) result_dict = result.asDict() print(type(result_dict), repr(result_dict)) # -> {'day': '1999', 'year': '12', 'month': '31'} # even though a ParseResults supports dict-like access, sometime you just need to have a dict import json print(json.dumps(result)) # -> Exception: TypeError: ... is not JSON serializable print(json.dumps(result.asDict())) # -> {"month": "31", "day": "1999", "year": "12"} csGt|tr?|jr%|jSfdd|DSn|SdS)Ncsg|]}|qSrwrw)rr)toItemrwrxrs z7ParseResults.asDict..toItem..)rzr"rasDict)r)r!rwrxr!s   z#ParseResults.asDict..toItemc3s'|]\}}||fVqdS)Nrw)rrr)r!rwrxrsz&ParseResults.asDict..)PY_3rrr)ritem_fnrw)r!rxr"s    zParseResults.asDictcCsPt|j}|jj|_|j|_|jj|j|j|_|S)zA Returns a new copy of a C{ParseResults} object. )r"rrrrrrr)rrrwrwrxrs   zParseResults.copyFc Csd}g}tdd|jjD}|d}|sPd}d}d}d} |dk rk|} n|jr}|j} | s|rdSd} |||d| d g7}xt|jD]\} } t| trC| |kr|| j|| |o|dk||g7}q|| jd|o0|dk||g7}qd} | |kr_|| } | sw|rqqnd} t t | } |||d| d | d | d g 7}qW|||d | d g7}dj |S) z (Deprecated) Returns the parse results as XML. Tags are created for tokens and lists that have defined results names.  css2|](\}}|D]}|d|fVqqdS)rrNrw)rrrrrwrwrxrs z%ParseResults.asXML..z rNITEM<>z.z %s%s- %s: z rrcss|]}t|tVqdS)N)rzr")rvvrwrwrxrssz %s%s[%d]: %s%s%sr) r rrrsortedrrzr"dumpranyrr) rr,depthfullrNLrrrrr9rwrwrxr;Ps,   B9zParseResults.dumpcOstj|j||dS)a Pretty-printer for parsed results as a list, using the C{pprint} module. Accepts additional positional or keyword args as defined for the C{pprint.pprint} method. (U{http://docs.python.org/3/library/pprint.html#pprint.pprint}) Example:: ident = Word(alphas, alphanums) num = Word(nums) func = Forward() term = ident | num | Group('(' + func + ')') func <<= ident + Group(Optional(delimitedList(term))) result = func.parseString("fna a,b,(fnb c,d,200),100") result.pprint(width=40) prints:: ['fna', ['a', 'b', ['(', 'fnb', ['c', 'd', '200'], ')'], '100']] N)pprintr)rrrrwrwrxr@}szParseResults.pprintcCsC|j|jj|jdk r-|jp0d|j|jffS)N)rrrrrr)rrwrwrx __getstate__s  zParseResults.__getstate__cCsm|d|_|d\|_}}|_i|_|jj||dk r`t||_n d|_dS)Nrrr)rrrrrrr)rstater7 inAccumNamesrwrwrx __setstate__s   zParseResults.__setstate__cCs|j|j|j|jfS)N)rrrr)rrwrwrx__getnewargs__szParseResults.__getnewargs__cCs tt|t|jS)N)rrrr)rrwrwrxrszParseResults.__dir__)4rrrrrrzrrrrrrr __nonzero__rrrrrr#rrrrrrrrrr r r rrrrrrrrrr"rr)r5r8r;r@rArDrErrwrwrwrxr"-sh & '               4            # =  %-   cCsW|}d|ko#t|knr@||ddkr@dS||jdd|S)aReturns current column within a string, counting newlines as line separators. The first column is number 1. Note: the default parsing behavior is to expand tabs in the input string before starting the parsing process. See L{I{ParserElement.parseString}} for more information on parsing strings containing C{}s, and suggested methods to maintain a consistent view of the parsed string, the parse location, and line and column positions within the parsed string. rrrr%)rrfind)rstrgrrwrwrxr9s cCs|jdd|dS)aReturns current line number within a string, counting newlines as line separators. The first line is number 1. Note: the default parsing behavior is to expand tabs in the input string before starting the parsing process. See L{I{ParserElement.parseString}} for more information on parsing strings containing C{}s, and suggested methods to maintain a consistent view of the parsed string, the parse location, and line and column positions within the parsed string. r%rrr)count)rrHrwrwrxrJs cCs[|jdd|}|jd|}|dkrE||d|S||ddSdS)zfReturns the line of text containing loc within a string, counting newlines as line separators. r%rrrN)rGfind)rrHlastCRnextCRrwrwrxrGs  cCsFtdt|dt|dt||t||fdS)NzMatch z at loc z(%d,%d))printrrJr9)instringrexprrwrwrx_defaultStartDebugActionsrPcCs,tdt|dt|jdS)NzMatched z -> )rMrr|r)rNstartlocendlocrOtoksrwrwrx_defaultSuccessDebugActionsrTcCstdt|dS)NzException raised:)rMr)rNrrOexcrwrwrx_defaultExceptionDebugActionsrVcGsdS)zG'Do-nothing' debug action, to suppress debugging output during parsing.Nrw)rrwrwrxrQsrqc stkrfddSdgdgtdddkreddd }dd d ntj}tjd }|d dd}|d|d|ffdd}d}y"tdtdj}Wntk rt}YnX||_|S)Ncs |S)Nrw)rlrv)funcrwrxrysz_trim_arity..rFrqrocSsJtdkrdnd }tjd| |d|}|j|jfgS) NrorYrrqlimitrr)rorYr)system_version traceback extract_stackfilenamerJ)rZr frame_summaryrwrwrxr_sz"_trim_arity..extract_stackcSs2tj|d|}|d}|j|jfgS)NrZrrrs)r^ extract_tbr`rJ)tbrZframesrarwrwrxrbs z_trim_arity..extract_tbrZrrcsxy,|dd}dd<|SWqtk rdrOnDz=tjd}|dddddksWd~Xdkrdd7.wrapperzr __class__)rorYrs) singleArgBuiltinsr]r^r_rbgetattrr Exceptionr|)rXrhr_ LINE_DIFF this_linerj func_namerw)rbrgrXrZrhrirx _trim_aritys*     !   rrcseZdZdZdZdZeddZeddZddd Z d d Z d d Z dddZ dddZ ddZddZddZddZddZddZddd Zd!d"Zddd#d$Zd%d&Zd'd(ZGd)d*d*eZed+k rOGd,d-d-eZnGd.d-d-eZiZeZd/d/gZ ddd0d1Z!eZ"ed2d3Z#dZ$ed4d5d6Z%dd7d8Z&e'dd9d:Z(d;d<Z)e'd=d>Z*e'dd?d@Z+dAdBZ,dCdDZ-dEdFZ.dGdHZ/dIdJZ0dKdLZ1dMdNZ2dOdPZ3dQdRZ4dSdTZ5dUdVZ6dWdXZ7dYdZZ8d+d[d\Z9d]d^Z:d_d`Z;dadbZ<dcddZ=dedfZ>dgdhZ?ddidjZ@dkdlZAdmdnZBdodpZCdqdrZDgdsdtZEddudvZFfdwdxZGdydzZHd{d|ZId}d~ZJddZKdddZLdddddddZMS)r$z)Abstract base level parser element class.z FcCs |t_dS)a Overrides the default whitespace chars Example:: # default whitespace chars are space, and newline OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def', 'ghi', 'jkl'] # change to just treat newline as significant ParserElement.setDefaultWhitespaceChars(" \t") OneOrMore(Word(alphas)).parseString("abc def\nghi jkl") # -> ['abc', 'def'] N)r$DEFAULT_WHITE_CHARS)charsrwrwrxsetDefaultWhitespaceChars=s z'ParserElement.setDefaultWhitespaceCharscCs |t_dS)a Set class to be used for inclusion of string literals into a parser. Example:: # default literal class used is Literal integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31'] # change to Suppress ParserElement.inlineLiteralsUsing(Suppress) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") date_str.parseString("1999/12/31") # -> ['1999', '12', '31'] N)r$_literalStringClass)rrwrwrxinlineLiteralsUsingLsz!ParserElement.inlineLiteralsUsingcCst|_d|_d|_d|_||_d|_tj|_ d|_ d|_ d|_ t|_ d|_d|_d|_d|_d|_d|_d|_d|_d|_dS)NTFr)NNN)r parseAction failActionstrRepr resultsName saveAsListskipWhitespacer$rs whiteCharscopyDefaultWhiteCharsmayReturnEmptykeepTabs ignoreExprsdebug streamlined mayIndexErrorerrmsg modalResults debugActionsre callPreparse callDuringTry)rsavelistrwrwrxras(                   zParserElement.__init__cCsTtj|}|jdd|_|jdd|_|jrPtj|_|S)a$ Make a copy of this C{ParserElement}. Useful for defining different parse actions for the same parsing pattern, using copies of the original parse element. Example:: integer = Word(nums).setParseAction(lambda toks: int(toks[0])) integerK = integer.copy().addParseAction(lambda toks: toks[0]*1024) + Suppress("K") integerM = integer.copy().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M") print(OneOrMore(integerK | integerM | integer).parseString("5K 100 640K 256M")) prints:: [5120, 100, 655360, 268435456] Equivalent form of C{expr.copy()} is just C{expr()}:: integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M") N)rrxrrr$rsr~)rcpyrwrwrxrxs   zParserElement.copycCs;||_d|j|_t|dr7|j|j_|S)af Define name for this expression, makes debugging and exception messages clearer. Example:: Word(nums).parseString("ABC") # -> Exception: Expected W:(0123...) (at char 0), (line:1, col:1) Word(nums).setName("integer").parseString("ABC") # -> Exception: Expected integer (at char 0), (line:1, col:1) z Expected exception)rrrrr)rrrwrwrxsetNames  zParserElement.setNamecCsH|j}|jdr1|dd}d}||_| |_|S)aP Define name for referencing matching tokens as a nested attribute of the returned parse results. NOTE: this returns a *copy* of the original C{ParserElement} object; this is so that the client can define a basic element, such as an integer, and reference it in multiple places with different names. You can also set results names using the abbreviated syntax, C{expr("name")} in place of C{expr.setResultsName("name")} - see L{I{__call__}<__call__>}. Example:: date_str = (integer.setResultsName("year") + '/' + integer.setResultsName("month") + '/' + integer.setResultsName("day")) # equivalent form: date_str = integer("year") + '/' + integer("month") + '/' + integer("day") *NrrTrs)rendswithr{r)rrlistAllMatchesnewselfrwrwrxsetResultsNames   zParserElement.setResultsNameTcsa|r<|jddfdd}|_||_n!t|jdr]|jj|_|S)zMethod to invoke the Python pdb debugger when this element is about to be parsed. Set C{breakFlag} to True to enable, False to disable. Tcs)ddl}|j||||S)Nr)pdb set_trace)rNr doActions callPreParser) _parseMethodrwrxbreakers  z'ParserElement.setBreak..breaker_originalParseMethod)_parserr)r breakFlagrrw)rrxsetBreaks   zParserElement.setBreakcOs7tttt||_|jdd|_|S)a Define one or more actions to perform when successfully matching parse element definition. Parse action fn is a callable method with 0-3 arguments, called as C{fn(s,loc,toks)}, C{fn(loc,toks)}, C{fn(toks)}, or just C{fn()}, where: - s = the original string being parsed (see note below) - loc = the location of the matching substring - toks = a list of the matched tokens, packaged as a C{L{ParseResults}} object If the functions in fns modify the tokens, they can return them as the return value from fn, and the modified list of tokens will replace the original. Otherwise, fn does not need to return any value. Optional keyword arguments: - callDuringTry = (default=C{False}) indicate if parse action should be run during lookaheads and alternate testing Note: the default parsing behavior is to expand tabs in the input string before starting the parsing process. See L{I{parseString}} for more information on parsing strings containing C{}s, and suggested methods to maintain a consistent view of the parsed string, the parse location, and line and column positions within the parsed string. Example:: integer = Word(nums) date_str = integer + '/' + integer + '/' + integer date_str.parseString("1999/12/31") # -> ['1999', '/', '12', '/', '31'] # use parse action to convert to ints at parse time integer = Word(nums).setParseAction(lambda toks: int(toks[0])) date_str = integer + '/' + integer + '/' + integer # note that integer fields are now ints, not strings date_str.parseString("1999/12/31") # -> [1999, '/', 12, '/', 31] rF)rmaprrrxrr)rfnsrrwrwrxrs"zParserElement.setParseActioncOsF|jtttt|7_|jp<|jdd|_|S)z Add one or more parse actions to expression's list of parse actions. See L{I{setParseAction}}. See examples in L{I{copy}}. rF)rxrrrrrr)rrrrwrwrxaddParseActions$zParserElement.addParseActioncs|jdd|jddr*tntx6|D].fdd}|jj|q7W|jp|jdd|_|S)aAdd a boolean predicate function to expression's list of parse actions. See L{I{setParseAction}} for function call signatures. Unlike C{setParseAction}, functions passed to C{addCondition} need to return boolean success/fail of the condition. Optional keyword arguments: - message = define a custom message to be used in the raised exception - fatal = if True, will raise ParseFatalException to stop parsing immediately; otherwise will raise ParseException Example:: integer = Word(nums).setParseAction(lambda toks: int(toks[0])) year_int = integer.copy() year_int.addCondition(lambda toks: toks[0] >= 2000, message="Only support years 2000 and later") date_str = year_int + '/' + integer + '/' + integer result = date_str.parseString("1999/12/31") # -> Exception: Only support years 2000 and later (at char 0), (line:1, col:1) messagezfailed user-defined conditionfatalFcs4tt|||s0||dS)N)rrr)rrWrv)exc_typefnrrwrxpasz&ParserElement.addCondition..par)rr!rrxr r)rrrrrw)rrrrx addConditions zParserElement.addConditioncCs ||_|S)a Define action to perform if parsing fails at this expression. Fail acton fn is a callable function that takes the arguments C{fn(s,loc,expr,err)} where: - s = string being parsed - loc = location where expression match was attempted and failed - expr = the parse expression that failed - err = the exception thrown The function returns no value. It may throw C{L{ParseFatalException}} if it is desired to stop parsing immediately.)ry)rrrwrwrx setFailActions zParserElement.setFailActionc Csod}xb|rjd}xO|jD]D}y)x"|j||\}}d}q+WWqtk rbYqXqWq W|S)NTF)rrr)rrNr exprsFoundedummyrwrwrx_skipIgnorables#s   zParserElement._skipIgnorablescCsj|jr|j||}|jrf|j}t|}x*||kre|||kre|d7}q<W|S)Nrr)rrr}r~r)rrNrwtinstrlenrwrwrxpreParse0s    zParserElement.preParsecCs |gfS)Nrw)rrNrrrwrwrx parseImpl<szParserElement.parseImplcCs|S)Nrw)rrNr tokenlistrwrwrx postParse?szParserElement.postParsec "Cs|j}|s|jr6|jdr<|jd||||r`|jr`|j||}n|}|}yVy|j|||\}}Wn0tk rt|t||j |YnXWqt k r2} zN|jdr|jd|||| |jr|j|||| WYdd} ~ XqXn|rZ|jrZ|j||}n|}|}|j s|t|kry|j|||\}}Wqtk rt|t||j |YqXn|j|||\}}|j |||}t ||jd|jd|j} |jrw|sB|jrw|r yoxh|jD]]} | ||| }|dk rUt ||jd|jot|t tfd|j} qUWWqwt k r} z/|jdr|jd|||| WYdd} ~ XqwXnkxh|jD]]} | ||| }|dk rt ||jd|jodt|t tfd|j} qW|r|jdr|jd||||| || fS)Nrrqrrrr)rryrrrrrrrrrrrr"r{r|rrxrrzr) rrNrrr debuggingpreloc tokensStarttokenserr retTokensrrwrwrx _parseNoCacheCsp   '   &$      zParserElement._parseNoCachec CsOy|j||dddSWn*tk rJt|||j|YnXdS)NrFr)rr!rr)rrNrrwrwrxtryParses zParserElement.tryParsec Cs;y|j||Wnttfk r2dSYnXdSdS)NFT)rrr)rrNrrwrwrx canParseNexts  zParserElement.canParseNextc@seZdZddZdS)zParserElement._UnboundedCachecsit|_fdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_dS) Ncsj|S)N)r)rr)cache not_in_cacherwrxrsz3ParserElement._UnboundedCache.__init__..getcs||.setcsjdS)N)r)r)rrwrxrsz5ParserElement._UnboundedCache.__init__..clearcs tS)N)r)r)rrwrx cache_lensz9ParserElement._UnboundedCache.__init__..cache_len)rrtypes MethodTyperrrr)rrrrrrw)rrrxrsz&ParserElement._UnboundedCache.__init__N)rrrrrwrwrwrx_UnboundedCaches rNc@seZdZddZdS)zParserElement._FifoCachecst|_tfdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_dS) Ncsj|S)N)r)rr)rrrwrxrsz.ParserElement._FifoCache.__init__..getc sM||.setcsjdS)N)r)r)rrwrxrsz0ParserElement._FifoCache.__init__..clearcs tS)N)r)r)rrwrxrsz4ParserElement._FifoCache.__init__..cache_len) rr _OrderedDictrrrrrr)rrrrrrrw)rrrrxrs z!ParserElement._FifoCache.__init__N)rrrrrwrwrwrx _FifoCaches rc@seZdZddZdS)zParserElement._FifoCachecst|_itjgfdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_ dS) Ncsj|S)N)r)rr)rrrwrxrsz.ParserElement._FifoCache.__init__..getcsJ||.setcsjjdS)N)r)r)rrrwrxrs z0ParserElement._FifoCache.__init__..clearcs tS)N)r)r)rrwrxrsz4ParserElement._FifoCache.__init__..cache_len) rr collectionsdequerrrrrr)rrrrrrrw)rrrrrxrsz!ParserElement._FifoCache.__init__N)rrrrrwrwrwrxrs rc Cs:d\}}|||||f}tj tj}|j|} | |jkrtj|d7tj|d7}) - define your parse action using the full C{(s,loc,toks)} signature, and reference the input string using the parse action's C{s} argument - explictly expand the tabs in your input string before calling C{parseString} Example:: Word('a').parseString('aaaaabaaa') # -> ['aaaaa'] Word('a').parseString('aaaaabaaa', parseAll=True) # -> Exception: Expected end of text rN) r$rr streamlinerr expandtabsrrr r)rverbose_stacktrace)rrNparseAllrrrserUrwrwrx parseString2s$      zParserElement.parseStringccs|js|jx|jD]}|jqW|jsLt|j}t|}d}|j}|j}t j d} yx||kr\| |kr\y.|||} ||| dd\} } Wnt k r| d}YqX| |krO| d7} | | | fV|rF|||} | |kr9| }qL|d7}qY| }q| d}qWWn:t k r}zt j rn|WYdd}~XnXdS)a Scan the input string for expression matches. Each match will return the matching tokens, start location, and end location. May be called with optional C{maxMatches} argument, to clip scanning after 'n' matches are found. If C{overlap} is specified, then overlapping matches will be reported. Note that the start and end locations are reported relative to the string being parsed. See L{I{parseString}} for more information on parsing strings with embedded tabs. Example:: source = "sldjf123lsdjjkf345sldkjf879lkjsfd987" print(source) for tokens,start,end in Word(alphas).scanString(source): print(' '*start + '^'*(end-start)) print(' '*start + tokens[0]) prints:: sldjf123lsdjjkf345sldkjf879lkjsfd987 ^^^^^ sldjf ^^^^^^^ lsdjjkf ^^^^^^ sldkjf ^^^^^^ lkjsfd rrFrrN)rrrrrrrrrr$rrrr)rrN maxMatchesoverlaprrr preparseFnparseFnmatchesrnextLocrnextlocrUrwrwrx scanStringdsB               zParserElement.scanStringcCs1g}d}d|_yx|j|D]}\}}}|j||||rt|trv||j7}n)t|tr||7}n |j||}q(W|j||ddd|D}djtt t |SWn:t k r,}zt j rn|WYdd}~XnXdS)af Extension to C{L{scanString}}, to modify matching text with modified tokens that may be returned from a parse action. To use C{transformString}, define a grammar and attach a parse action to it that modifies the returned token list. Invoking C{transformString()} on a target string will then scan for matches, and replace the matched text patterns according to the logic in the parse action. C{transformString()} returns the resulting transformed string. Example:: wd = Word(alphas) wd.setParseAction(lambda toks: toks[0].title()) print(wd.transformString("now is the winter of our discontent made glorious summer by this sun of york.")) Prints:: Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York. rTNcSsg|]}|r|qSrwrw)rorwrwrxrs z1ParserElement.transformString..r)rrr rzr"rrrrr_flattenrr$r)rrNrlastErvrrrUrwrwrxrs(      zParserElement.transformStringcCshy'tdd|j||DSWn:tk rc}ztjrKn|WYdd}~XnXdS)a Another extension to C{L{scanString}}, simplifying the access to the tokens found to match the given parse expression. May be called with optional C{maxMatches} argument, to clip searching after 'n' matches are found. Example:: # a capitalized word starts with an uppercase letter, followed by zero or more lowercase letters cap_word = Word(alphas.upper(), alphas.lower()) print(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity")) # the sum() builtin can be used to merge results into a single ParseResults object print(sum(cap_word.searchString("More than Iron, more than Lead, more than Gold I need Electricity"))) prints:: [['More'], ['Iron'], ['Lead'], ['Gold'], ['I'], ['Electricity']] ['More', 'Iron', 'Lead', 'Gold', 'I', 'Electricity'] cSsg|]\}}}|qSrwrw)rrvrrrwrwrxrs z.ParserElement.searchString..N)r"rrr$r)rrNrrUrwrwrx searchStrings ' zParserElement.searchStringc csld}d}xJ|j|d|D]3\}}}|||V|rO|dV|}q"W||dVdS)a[ Generator method to split a string using the given expression as a separator. May be called with optional C{maxsplit} argument, to limit the number of splits; and the optional C{includeSeparators} argument (default=C{False}), if the separating matching text should be included in the split results. Example:: punc = oneOf(list(".,;:/-!?")) print(list(punc.split("This, this?, this sentence, is badly punctuated!"))) prints:: ['This', ' this', '', ' this sentence', ' is badly punctuated', ''] rrN)r) rrNmaxsplitincludeSeparatorssplitslastrvrrrwrwrxrs %  zParserElement.splitcCsat|trtj|}t|tsQtjdt|tdddSt||gS)a Implementation of + operator - returns C{L{And}}. Adding strings to a ParserElement converts them to L{Literal}s by default. Example:: greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print (hello, "->", greet.parseString(hello)) Prints:: Hello, World! -> ['Hello', ',', 'World', '!'] z4Cannot combine element of type %s with ParserElement stacklevelrqN) rzrr$rvwarningswarnr SyntaxWarningr)rrrwrwrxrs  zParserElement.__add__cCsYt|trtj|}t|tsQtjdt|tdddS||S)z] Implementation of + operator when left operand is not a C{L{ParserElement}} z4Cannot combine element of type %s with ParserElementrrqN)rzrr$rvrrrr)rrrwrwrxrs zParserElement.__radd__cCsct|trtj|}t|tsQtjdt|tdddS|tj |S)zQ Implementation of - operator, returns C{L{And}} with error stop z4Cannot combine element of type %s with ParserElementrrqN) rzrr$rvrrrrr _ErrorStop)rrrwrwrx__sub__'s zParserElement.__sub__cCsYt|trtj|}t|tsQtjdt|tdddS||S)z] Implementation of - operator when left operand is not a C{L{ParserElement}} z4Cannot combine element of type %s with ParserElementrrqN)rzrr$rvrrrr)rrrwrwrx__rsub__3s zParserElement.__rsub__csBt|tr|d}}n0t|tr:|d dd}|ddkrbd|df}t|dtr|ddkr|ddkrtS|ddkrtS|dtSqOt|dtrt|dtr|\}}||8}qOtdt|dt|dntdt||dkrgtd|dkrtd||kodknrtd |rfd d |r|dkr|}qtg||}q>|}n(|dkr+}ntg|}|S) a Implementation of * operator, allows use of C{expr * 3} in place of C{expr + expr + expr}. Expressions may also me multiplied by a 2-integer tuple, similar to C{{min,max}} multipliers in regular expressions. Tuples may also include C{None} as in: - C{expr*(n,None)} or C{expr*(n,)} is equivalent to C{expr*n + L{ZeroOrMore}(expr)} (read as "at least n instances of C{expr}") - C{expr*(None,n)} is equivalent to C{expr*(0,n)} (read as "0 to n instances of C{expr}") - C{expr*(None,None)} is equivalent to C{L{ZeroOrMore}(expr)} - C{expr*(1,None)} is equivalent to C{L{OneOrMore}(expr)} Note that C{expr*(None,n)} does not raise an exception if more than n exprs exist in the input stream; that is, C{expr*(None,n)} does not enforce a maximum number of expr occurrences. If this behavior is desired, then write C{expr*(None,n) + ~expr} rNrqrrz7cannot multiply 'ParserElement' and ('%s','%s') objectsz0cannot multiply 'ParserElement' and '%s' objectsz/cannot multiply ParserElement by negative valuez@second tuple value must be greater or equal to first tuple valuez+cannot multiply ParserElement by 0 or (0,0)cs2|dkr$t|dStSdS)Nrr)r)n)makeOptionalListrrwrxrps z/ParserElement.__mul__..makeOptionalList)NN) rzrutupler2rrr ValueErrorr)rr minElements optElementsrrw)rrrx__mul__?sD#  &  )         zParserElement.__mul__cCs |j|S)N)r)rrrwrwrx__rmul__szParserElement.__rmul__cCsat|trtj|}t|tsQtjdt|tdddSt||gS)zI Implementation of | operator - returns C{L{MatchFirst}} z4Cannot combine element of type %s with ParserElementrrqN) rzrr$rvrrrrr)rrrwrwrx__or__s zParserElement.__or__cCsYt|trtj|}t|tsQtjdt|tdddS||BS)z] Implementation of | operator when left operand is not a C{L{ParserElement}} z4Cannot combine element of type %s with ParserElementrrqN)rzrr$rvrrrr)rrrwrwrx__ror__s zParserElement.__ror__cCsat|trtj|}t|tsQtjdt|tdddSt||gS)zA Implementation of ^ operator - returns C{L{Or}} z4Cannot combine element of type %s with ParserElementrrqN) rzrr$rvrrrrr)rrrwrwrx__xor__s zParserElement.__xor__cCsYt|trtj|}t|tsQtjdt|tdddS||AS)z] Implementation of ^ operator when left operand is not a C{L{ParserElement}} z4Cannot combine element of type %s with ParserElementrrqN)rzrr$rvrrrr)rrrwrwrx__rxor__s zParserElement.__rxor__cCsat|trtj|}t|tsQtjdt|tdddSt||gS)zC Implementation of & operator - returns C{L{Each}} z4Cannot combine element of type %s with ParserElementrrqN) rzrr$rvrrrrr )rrrwrwrx__and__s zParserElement.__and__cCsYt|trtj|}t|tsQtjdt|tdddS||@S)z] Implementation of & operator when left operand is not a C{L{ParserElement}} z4Cannot combine element of type %s with ParserElementrrqN)rzrr$rvrrrr)rrrwrwrx__rand__s zParserElement.__rand__cCs t|S)zE Implementation of ~ operator - returns C{L{NotAny}} )r)rrwrwrx __invert__szParserElement.__invert__cCs'|dk r|j|S|jSdS)a  Shortcut for C{L{setResultsName}}, with C{listAllMatches=False}. If C{name} is given with a trailing C{'*'} character, then C{listAllMatches} will be passed as C{True}. If C{name} is omitted, same as calling C{L{copy}}. Example:: # these are equivalent userdata = Word(alphas).setResultsName("name") + Word(nums+"-").setResultsName("socsecno") userdata = Word(alphas)("name") + Word(nums+"-")("socsecno") N)rr)rrrwrwrx__call__s  zParserElement.__call__cCs t|S)z Suppresses the output of this C{ParserElement}; useful to keep punctuation from cluttering up returned output. )r+)rrwrwrxsuppressszParserElement.suppresscCs d|_|S)a Disables the skipping of whitespace before matching the characters in the C{ParserElement}'s defined pattern. This is normally only used internally by the pyparsing module, but may be needed in some whitespace-sensitive grammars. F)r})rrwrwrxleaveWhitespaces zParserElement.leaveWhitespacecCsd|_||_d|_|S)z8 Overrides the default whitespace chars TF)r}r~r)rrtrwrwrxsetWhitespaceCharss   z ParserElement.setWhitespaceCharscCs d|_|S)z Overrides default behavior to expand C{}s to spaces before parsing the input string. Must be called before C{parseString} when the input grammar contains elements that match C{} characters. T)r)rrwrwrx parseWithTabss zParserElement.parseWithTabscCslt|trt|}t|trL||jkrh|jj|n|jjt|j|S)a Define expression to be ignored (e.g., comments) while doing pattern matching; may be called repeatedly, to define multiple comment or other ignorable patterns. Example:: patt = OneOrMore(Word(alphas)) patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(cStyleComment) patt.parseString('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd'] )rzrr+rr r)rrrwrwrxignore s  zParserElement.ignorecCs1|p t|pt|ptf|_d|_|S)zT Enable display of debugging messages while doing pattern matching. T)rPrTrVrr)r startAction successActionexceptionActionrwrwrxsetDebugActions s    zParserElement.setDebugActionscCs)|r|jtttn d|_|S)a Enable display of debugging messages while doing pattern matching. Set C{flag} to True to enable, False to disable. Example:: wd = Word(alphas).setName("alphaword") integer = Word(nums).setName("numword") term = wd | integer # turn on debugging for wd wd.setDebug() OneOrMore(term).parseString("abc 123 xyz 890") prints:: Match alphaword at loc 0(1,1) Matched alphaword -> ['abc'] Match alphaword at loc 3(1,4) Exception raised:Expected alphaword (at char 4), (line:1, col:5) Match alphaword at loc 7(1,8) Matched alphaword -> ['xyz'] Match alphaword at loc 11(1,12) Exception raised:Expected alphaword (at char 12), (line:1, col:13) Match alphaword at loc 15(1,16) Exception raised:Expected alphaword (at char 15), (line:1, col:16) The output shown is that produced by the default debug actions - custom debug actions can be specified using L{setDebugActions}. Prior to attempting to match the C{wd} expression, the debugging message C{"Match at loc (,)"} is shown. Then if the parse succeeds, a C{"Matched"} message is shown, or an C{"Exception raised"} message is shown. Also note the use of L{setName} to assign a human-readable name to the expression, which makes debugging and exception messages easier to understand - for instance, the default name created for the C{Word} expression without calling C{setName} is C{"W:(ABCD...)"}. F)r rPrTrVr)rflagrwrwrxsetDebug*s# zParserElement.setDebugcCs|jS)N)r)rrwrwrxrSszParserElement.__str__cCs t|S)N)r)rrwrwrxrVszParserElement.__repr__cCsd|_d|_|S)NT)rrz)rrwrwrxrYs  zParserElement.streamlinecCsdS)Nrw)rrrwrwrxcheckRecursion^szParserElement.checkRecursioncCs|jgdS)zj Check defined expressions for valid structure, check for infinite recursive definitions. N)r)r validateTracerwrwrxvalidateaszParserElement.validatecCsy|j}Wn7tk rIt|d}|j}WdQRXYnXy|j||SWn:tk r}ztjrn|WYdd}~XnXdS)z Execute the parse expression on the given file or filename. If a filename is specified (instead of a file object), the entire file is opened, read, and closed before parsing. rN)readropenrrr$r)rfile_or_filenamer file_contentsfrUrwrwrx parseFilegs  zParserElement.parseFilecsdt|tr1||kp0t|t|kSt|trM|j|Stt||kSdS)N)rzr$varsrrsuper)rr)rkrwrx__eq__{s " zParserElement.__eq__cCs ||k S)Nrw)rrrwrwrx__ne__szParserElement.__ne__cCstt|S)N)hashid)rrwrwrx__hash__szParserElement.__hash__cCs ||kS)Nrw)rrrwrwrx__req__szParserElement.__req__cCs ||k S)Nrw)rrrwrwrx__rne__szParserElement.__rne__c Cs>y!|jt|d|dSWntk r9dSYnXdS)a Method for quick testing of a parser against a test string. Good for simple inline microtests of sub expressions while building up larger parser. Parameters: - testString - to test against this expression for a match - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests Example:: expr = Word(nums) assert expr.matches("100") rTFN)rrr)r testStringrrwrwrxrs  zParserElement.matches#cCst|tr3tttj|jj}t|trNt|}g}g}d} x#|D]} |dk r|j | ds|r| r|j | qg| sqgdj || g} g}yQ| j dd} |j | d|} | j | jd|| o| } Wn#tk r} zt| trGdnd }d| kr| j t| j| | j d t| j| d d |n| j d | jd || j d t| | o|} | } WYdd} ~ XnNtk rB}z.| j dt|| o'|} |} WYdd}~XnX|ro|r\| j d tdj | |j | | fqgW| |fS)a3 Execute the parse expression on a series of test strings, showing each test, the parsed results or where the parse failed. Quick and easy way to run a parse expression against a list of sample strings. Parameters: - tests - a list of separate test strings, or a multiline string of test strings - parseAll - (default=C{True}) - flag to pass to C{L{parseString}} when running tests - comment - (default=C{'#'}) - expression for indicating embedded comments in the test string; pass None to disable comment filtering - fullDump - (default=C{True}) - dump results as list followed by results names in nested outline; if False, only dump nested list - printResults - (default=C{True}) prints test output to stdout - failureTests - (default=C{False}) indicates if these tests are expected to fail parsing Returns: a (success, results) tuple, where success indicates that all tests succeeded (or failed if C{failureTests} is True), and the results contain a list of lines of each test's output Example:: number_expr = pyparsing_common.number.copy() result = number_expr.runTests(''' # unsigned integer 100 # negative integer -100 # float with scientific notation 6.02e23 # integer with scientific notation 1e-12 ''') print("Success" if result[0] else "Failed!") result = number_expr.runTests(''' # stray character 100Z # missing leading digit before '.' -.100 # too many '.' 3.14.159 ''', failureTests=True) print("Success" if result[0] else "Failed!") prints:: # unsigned integer 100 [100] # negative integer -100 [-100] # float with scientific notation 6.02e23 [6.02e+23] # integer with scientific notation 1e-12 [1e-12] Success # stray character 100Z ^ FAIL: Expected end of text (at char 3), (line:1, col:4) # missing leading digit before '.' -.100 ^ FAIL: Expected {real number with scientific notation | real number | signed integer} (at char 0), (line:1, col:1) # too many '.' 3.14.159 ^ FAIL: Expected end of text (at char 4), (line:1, col:5) Success Each test string must be on a single line. If you want to test a string that spans multiple lines, create a test like this:: expr.runTest(r"this is a test\n of strings that spans \n 3 lines") (Note that this is a raw string literal, you must include the leading 'r'.) TNFr%z\nrr>z(FATAL)r rr^zFAIL: zFAIL-EXCEPTION: )rzrrrr|rrstrip splitlinesrrr rrrr;rr!rGrr9rnrM)rtestsrcommentfullDump printResults failureTests allResultscommentssuccessrvrresultrrrUrwrwrxrunTestssNW$  +  ,   zParserElement.runTests)Nrrrrrsr staticmethodrurwrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr_MAX_INTrrrrrrrrrrrrrrrrrrrrrrrr rrrrrrrrrrr r!rr1rwrw)rkrxr$8s    &   H     "2G +  D     )        cs(eZdZdZfddZS)r,zT Abstract C{ParserElement} subclass, for defining atomic matching patterns. cstt|jdddS)NrF)rr,r)r)rkrwrxr* szToken.__init__)rrrrrrwrw)rkrxr,& s cs(eZdZdZfddZS)r z, An empty token, will always match. cs2tt|jd|_d|_d|_dS)Nr TF)rr rrrr)r)rkrwrxr2 s  zEmpty.__init__)rrrrrrwrw)rkrxr . s cs7eZdZdZfddZdddZS)rz( A token that will never match. cs;tt|jd|_d|_d|_d|_dS)NrTFzUnmatchable token)rrrrrrr)r)rkrwrxr= s    zNoMatch.__init__TcCst|||j|dS)N)rr)rrNrrrwrwrxrD szNoMatch.parseImpl)rrrrrrrwrw)rkrxr9 s cs7eZdZdZfddZdddZS)ra Token to exactly match a specified string. Example:: Literal('blah').parseString('blah') # -> ['blah'] Literal('blah').parseString('blahfooblah') # -> ['blah'] Literal('blah').parseString('bla') # -> Exception: Expected "blah" For case-insensitive matching, use L{CaselessLiteral}. For keyword matching (force word break before and after the matched string), use L{Keyword} or L{CaselessKeyword}. c stt|j||_t||_y|d|_Wn1tk rotj dt ddt |_ YnXdt |j|_d|j|_d|_d|_dS)Nrz2null string passed to Literal; use Empty() insteadrrqz"%s"z Expected F)rrrmatchrmatchLenfirstMatchCharrrrrr rkrrrrr)r matchString)rkrwrxrV s     zLiteral.__init__TcCsg|||jkrK|jdks7|j|j|rK||j|jfSt|||j|dS)Nrr)r6r5 startswithr4rr)rrNrrrwrwrxri s$zLiteral.parseImpl)rrrrrrrwrw)rkrxrH s cskeZdZdZedZddfddZddd Zfd d Ze d d Z S)ra\ Token to exactly match a specified string as a keyword, that is, it must be immediately followed by a non-keyword character. Compare with C{L{Literal}}: - C{Literal("if")} will match the leading C{'if'} in C{'ifAndOnlyIf'}. - C{Keyword("if")} will not; it will only match the leading C{'if'} in C{'if x=1'}, or C{'if(y==2)'} Accepts two optional constructor arguments in addition to the keyword string: - C{identChars} is a string of characters that would be valid identifier characters, defaulting to all alphanumerics + "_" and "$" - C{caseless} allows case-insensitive matching, default is C{False}. Example:: Keyword("start").parseString("start") # -> ['start'] Keyword("start").parseString("starting") # -> Exception For case-insensitive matching, use L{CaselessKeyword}. z_$NFc stt|j|dkr(tj}||_t||_y|d|_Wn(tk r{t j dt ddYnXd|j|_ d|j |_ d|_d|_||_|r|j|_|j}t||_dS)Nrz2null string passed to Keyword; use Empty() insteadrrqz"%s"z Expected F)rrrDEFAULT_KEYWORD_CHARSr4rr5r6rrrrrrrrcaselessupper caselessmatchr identChars)rr7r=r:)rkrwrxr s&         zKeyword.__init__TcCse|jr||||jj|jkrI|t||jksh|||jj|jkrI|dks||dj|jkrI||j|jfSn|||jkrI|jdks|j|j|rI|t||jks|||j|jkrI|dks5||d|jkrI||j|jfSt |||j |dS)Nrrr) r:r5r;r<rr=r4r6r8rr)rrNrrrwrwrxr s &9)$3#zKeyword.parseImplcs%tt|j}tj|_|S)N)rrrr9r=)rr)rkrwrxr s z Keyword.copycCs |t_dS)z,Overrides the default Keyword chars N)rr9)rtrwrwrxsetDefaultKeywordChars szKeyword.setDefaultKeywordChars) rrrrr3r9rrrr2r>rwrw)rkrxrq s  cs7eZdZdZfddZdddZS)ral Token to match a specified string, ignoring case of letters. Note: the matched results will always be in the case of the given match string, NOT the case of the input text. Example:: OneOrMore(CaselessLiteral("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD', 'CMD'] (Contrast with example for L{CaselessKeyword}.) csItt|j|j||_d|j|_d|j|_dS)Nz'%s'z Expected )rrrr; returnStringrr)rr7)rkrwrxr s zCaselessLiteral.__init__TcCsV||||jj|jkr:||j|jfSt|||j|dS)N)r5r;r4r?rr)rrNrrrwrwrxr s&zCaselessLiteral.parseImpl)rrrrrrrwrw)rkrxr s cs:eZdZdZdfddZdddZS)rz Caseless version of L{Keyword}. Example:: OneOrMore(CaselessKeyword("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD'] (Contrast with example for L{CaselessLiteral}.) Ncs#tt|j||dddS)Nr:T)rrr)rr7r=)rkrwrxr szCaselessKeyword.__init__TcCs||||jj|jkrs|t||jks_|||jj|jkrs||j|jfSt|||j|dS)N)r5r;r<rr=r4rr)rrNrrrwrwrxr s&9zCaselessKeyword.parseImpl)rrrrrrrwrw)rkrxr s cs:eZdZdZdfddZdddZS)rlax A variation on L{Literal} which matches "close" matches, that is, strings with at most 'n' mismatching characters. C{CloseMatch} takes parameters: - C{match_string} - string to be matched - C{maxMismatches} - (C{default=1}) maximum number of mismatches allowed to count as a match The results from a successful parse will contain the matched text from the input string and the following named results: - C{mismatches} - a list of the positions within the match_string where mismatches were found - C{original} - the original match_string used to compare against the input string If C{mismatches} is an empty list, then the match was an exact match. Example:: patt = CloseMatch("ATCATCGAATGGA") patt.parseString("ATCATCGAAXGGA") # -> (['ATCATCGAAXGGA'], {'mismatches': [[9]], 'original': ['ATCATCGAATGGA']}) patt.parseString("ATCAXCGAAXGGA") # -> Exception: Expected 'ATCATCGAATGGA' (with up to 1 mismatches) (at char 0), (line:1, col:1) # exact match patt.parseString("ATCATCGAATGGA") # -> (['ATCATCGAATGGA'], {'mismatches': [[]], 'original': ['ATCATCGAATGGA']}) # close match allowing up to 2 mismatches patt = CloseMatch("ATCATCGAATGGA", maxMismatches=2) patt.parseString("ATCAXCGAAXGGA") # -> (['ATCAXCGAAXGGA'], {'mismatches': [[4, 9]], 'original': ['ATCATCGAATGGA']}) rrcs]tt|j||_||_||_d|j|jf|_d|_d|_dS)Nz&Expected %r (with up to %d mismatches)F) rrlrr match_string maxMismatchesrrr)rr@rA)rkrwrxr s    zCloseMatch.__init__TcCs|}t|}|t|j}||kr|j}d}g} |j} xtt||||jD]D\}} | \} } | | krr| j|t| | krrPqrW|d}t|||g}|j|d<| |d<||fSt|||j|dS)Nrrroriginal mismatches) rr@rArrr r"rr)rrNrrstartrmaxlocr@match_stringlocrCrAs_msrcmatresultsrwrwrxr s(    /       zCloseMatch.parseImpl)rrrrrrrwrw)rkrxrl s  c s[eZdZdZddddddfddZdd d Zfd d ZS) r/a Token for matching words composed of allowed character sets. Defined with string containing all allowed initial characters, an optional string containing allowed body characters (if omitted, defaults to the initial character set), and an optional minimum, maximum, and/or exact length. The default value for C{min} is 1 (a minimum value < 1 is not valid); the default values for C{max} and C{exact} are 0, meaning no maximum or exact length restriction. An optional C{excludeChars} parameter can list characters that might be found in the input C{bodyChars} string; useful to define a word of all printables except for one or two characters, for instance. L{srange} is useful for defining custom character set strings for defining C{Word} expressions, using range notation from regular expression character sets. A common mistake is to use C{Word} to match a specific literal string, as in C{Word("Address")}. Remember that C{Word} uses the string argument to define I{sets} of matchable characters. This expression would match "Add", "AAA", "dAred", or any other word made up of the characters 'A', 'd', 'r', 'e', and 's'. To match an exact literal string, use L{Literal} or L{Keyword}. pyparsing includes helper strings for building Words: - L{alphas} - L{nums} - L{alphanums} - L{hexnums} - L{alphas8bit} (alphabetic characters in ASCII range 128-255 - accented, tilded, umlauted, etc.) - L{punc8bit} (non-alphabetic characters in ASCII range 128-255 - currency, symbols, superscripts, diacriticals, etc.) - L{printables} (any non-whitespace character) Example:: # a word composed of digits integer = Word(nums) # equivalent to Word("0123456789") or Word(srange("0-9")) # a word with a leading capital, and zero or more lowercase capital_word = Word(alphas.upper(), alphas.lower()) # hostnames are alphanumeric, with leading alpha, and '-' hostname = Word(alphas, alphanums+'-') # roman numeral (not a strict parser, accepts invalid mix of characters) roman = Word("IVXLCDM") # any string of non-whitespace characters, except for ',' csv_value = Word(printables, excludeChars=",") NrrrFc svtt|jrcdjfdd|D}|rcdjfdd|D}||_t||_|r||_t||_n||_t||_|dk|_ |dkrt d||_ |dkr||_ n t |_ |dkr#||_ ||_ t||_d|j|_d |_||_d |j|jkrr|dkrr|dkrr|dkrr|j|jkrd t|j|_net|jdkrd tj|jt|jf|_n%d t|jt|jf|_|jr;d|jd|_ytj|j|_Wntk rqd|_YnXdS)Nrc3s!|]}|kr|VqdS)Nrw)rr) excludeCharsrwrxrJ sz Word.__init__..c3s!|]}|kr|VqdS)Nrw)rr)rKrwrxrL srrrzZcannot specify a minimum length < 1; use Optional(Word()) if zero-length word is permittedz Expected Fr$z[%s]+z%s[%s]*z [%s][%s]*z\b)rr/rr initCharsOrigr initChars bodyCharsOrig bodyChars maxSpecifiedrminLenmaxLenr3rrrr asKeyword_escapeRegexRangeCharsreStringrrescapecompilern)rrMrOminmaxexactrSrK)rk)rKrxrG sT""              :   z Word.__init__Tc Cs|jrX|jj||}|s<t|||j||j}||jfS|||jkrt|||j||}|d7}t|}|j}||j }t ||}x*||kr|||kr|d7}qWd} |||j krd} |j r;||kr;|||kr;d} |j r|dkrd||d|ks||kr|||krd} | rt|||j|||||fS)NrrFTr)rr4rrendgrouprMrrOrRrXrQrPrS) rrNrrr0rDr bodycharsrEthrowExceptionrwrwrxr} s6      % <zWord.parseImplc sytt|jSWntk r+YnX|jdkrdd}|j|jkrd||j||jf|_nd||j|_|jS)NcSs,t|dkr$|dddS|SdS)Nz...)r)rrwrwrx charsAsStr sz Word.__str__..charsAsStrz W:(%s,%s)zW:(%s))rr/rrnrzrLrN)rr`)rkrwrxr s  (z Word.__str__)rrrrrrrrwrw)rkrxr/ s .$6#csaeZdZdZeejdZdfddZdddZ fd d Z S) r'a Token for matching strings that match a given regular expression. Defined with string specifying the regular expression in a form recognized by the inbuilt Python re module. If the given regex contains named groups (defined using C{(?P...)}), these will be preserved as named parse results. Example:: realnum = Regex(r"[+-]?\d+\.\d*") date = Regex(r'(?P\d{4})-(?P\d\d?)-(?P\d\d?)') # ref: http://stackoverflow.com/questions/267399/how-do-you-match-only-valid-roman-numerals-with-a-regular-expression roman = Regex(r"M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})") z[A-Z]rc s1tt|jt|tr|s>tjdtdd||_||_ y+t j |j|j |_ |j|_ Wqt jk rtjd|tddYqXnIt|tjr||_ t||_|_ ||_ n tdt||_d|j|_d|_d|_d S) zThe parameters C{pattern} and C{flags} are passed to the C{re.compile()} function as-is. See the Python C{re} module for an explanation of the acceptable patterns and flags.z0null string passed to Regex; use Empty() insteadrrqz$invalid pattern (%s) passed to RegexzCRegex may only be constructed with a string or a compiled RE objectz Expected FTN)rr'rrzrrrrpatternflagsrrWrU sre_constantserrorcompiledREtyper|rrrrrr)rrarb)rkrwrxr s.           zRegex.__init__TcCs|jj||}|s3t|||j||j}|j}t|j}|rx|D]}|||| same as quoteChar) - convertWhitespaceEscapes - convert escaped whitespace (C{'\t'}, C{'\n'}, etc.) to actual whitespace (default=C{True}) Example:: qs = QuotedString('"') print(qs.searchString('lsjdf "This is the quote" sldjf')) complex_qs = QuotedString('{{', endQuoteChar='}}') print(complex_qs.searchString('lsjdf {{This is the "quote"}} sldjf')) sql_qs = QuotedString('"', escQuote='""') print(sql_qs.searchString('lsjdf "This is the quote with ""embedded"" quotes" sldjf')) prints:: [['This is the quote']] [['This is the "quote"']] [['This is the quote with "embedded" quotes']] NFTc sttj|j}|sDtjdtddt|dkrY|}n1|j}|stjdtddt|_t |_ |d_ |_ t |_ |_|_|_|_|rNtjtjB_dtjjtj d|dk r>t|pAdf_nPd_dtjjtj d|dk rt|pdf_t j d krjd d jfd d tt j d ddDd7_|r!jdtj|7_|r\jdtj|7_tjjd_jdtjj 7_y+tjjj_j_Wn5tjk rtjdjtddYnXt _!dj!_"d_#d_$dS)Nz$quoteChar cannot be the empty stringrrqz'endQuoteChar cannot be the empty stringrz %s(?:[^%s%s]rz%s(?:[^%s\n\r%s]rrz|(?:z)|(?:c3sB|]8}dtjjd|tj|fVqdS)z%s[^%s]N)rrV endQuoteCharrT)rr)rrwrxrB sz(QuotedString.__init__..)z|(?:%s)z|(?:%s.)z(.)z)*%sz$invalid pattern (%s) passed to Regexz Expected FTrs)%rr%rrrrr SyntaxError quoteCharr quoteCharLenfirstQuoteCharrhendQuoteCharLenescCharescQuoteunquoteResultsconvertWhitespaceEscapesr MULTILINEDOTALLrbrVrTrarrescCharReplacePatternrWrUrcrdrrrrr)rrkrorp multilinerqrhrr)rk)rrxr sf             ( %E  zQuotedString.__init__c CsA|||jkr(|jj||p+d}|sLt|||j||j}|j}|jr7||j|j }t |t r7d|kr|j rdddddddd i}x,|j D]\}}|j||}qW|jrtj|jd |}|jr7|j|j|j}||fS) N\z\t z\nr%z\f z\r z\g<1>)rmrr4rrr[r\rqrlrnrzrrrrrrorrurprh) rrNrrr0rws_mapwslitwscharrwrwrxrZ s(.      zQuotedString.parseImplc s[ytt|jSWntk r+YnX|jdkrTd|j|jf|_|jS)Nz.quoted string, starting with %s ending with %s)rr%rrnrzrkrh)r)rkrwrxr} s zQuotedString.__str__)rrrrrrrrwrw)rkrxr% s $A#csReZdZdZdddfddZdddZfd d ZS) r a Token for matching words composed of characters I{not} in a given set (will include whitespace in matched characters if not listed in the provided exclusion set - see example). Defined with string containing all disallowed characters, and an optional minimum, maximum, and/or exact length. The default value for C{min} is 1 (a minimum value < 1 is not valid); the default values for C{max} and C{exact} are 0, meaning no maximum or exact length restriction. Example:: # define a comma-separated-value as anything that is not a ',' csv_value = CharsNotIn(',') print(delimitedList(csv_value).parseString("dkls,lsdkjf,s12 34,@!#,213")) prints:: ['dkls', 'lsdkjf', 's12 34', '@!#', '213'] rrrcstt|jd|_||_|dkr=td||_|dkr^||_n t|_|dkr||_||_t ||_ d|j |_ |jdk|_ d|_ dS)NFrrzfcannot specify a minimum length < 1; use Optional(CharsNotIn()) if zero-length char group is permittedrz Expected )rr rr}notCharsrrQrRr3rrrrr)rr~rXrYrZ)rkrwrxr s            zCharsNotIn.__init__TcCs|||jkr+t|||j||}|d7}|j}t||jt|}x*||kr|||kr|d7}qcW|||jkrt|||j|||||fS)Nrr)r~rrrXrRrrQ)rrNrrrDnotcharsmaxlenrwrwrxr s  zCharsNotIn.parseImplc sytt|jSWntk r+YnX|jdkr}t|jdkrmd|jdd|_nd|j|_|jS)Nr_z !W:(%s...)z!W:(%s))rr rrnrzrr~)r)rkrwrxr s zCharsNotIn.__str__)rrrrrrrrwrw)rkrxr s c sgeZdZdZdddddddd d d iZd d ddfddZdddZS)r.a Special matching class for matching whitespace. Normally, whitespace is ignored by pyparsing grammars. This class is included when some whitespace structures are significant. Define with a string containing the whitespace characters to be matched; default is C{" \t\r\n"}. Also takes optional C{min}, C{max}, and C{exact} arguments, as defined for the C{L{Word}} class. r$zrxzr%zrzzryzz rrrcsttj|_jdjfddjDdjddjD_d_dj_ |_ |dkr|_ n t _ |dkr|_ |_ dS)Nrc3s$|]}|jkr|VqdS)N) matchWhite)rr)rrwrxr sz!White.__init__..css|]}tj|VqdS)N)r. whiteStrs)rrrwrwrxr sTz Expected r) rr.rrrrr~rrrrQrRr3)rwsrXrYrZ)rk)rrxr s ,"       zWhite.__init__TcCs|||jkr+t|||j||}|d7}||j}t|t|}x-||kr|||jkr|d7}q`W|||jkrt|||j|||||fS)Nrr)rrrrRrXrrQ)rrNrrrDrErwrwrxr s  "zWhite.parseImpl)rrrrrrrrwrw)rkrxr. s  cs"eZdZfddZS)_PositionTokencs8tt|j|jj|_d|_d|_dS)NTF)rrrrkrrrr)r)rkrwrxr s z_PositionToken.__init__)rrrrrwrw)rkrxr s rcsCeZdZdZfddZddZdddZS) rzb Token to advance to a specific column of input text; useful for tabular report scraping. cs tt|j||_dS)N)rrrr9)rcolno)rkrwrxr szGoToColumn.__init__cCst|||jkrt|}|jr?|j||}xB||kr||jrt|||jkr|d7}qBW|S)Nrr)r9rrrisspace)rrNrrrwrwrxr s  7zGoToColumn.preParseTcCs^t||}||jkr3t||d|||j|}|||}||fS)NzText not in expected column)r9r)rrNrrthiscolnewlocrrwrwrxr s zGoToColumn.parseImpl)rrrrrrrrwrw)rkrxr s  cs7eZdZdZfddZdddZS)ra Matches if current position is at the beginning of a line within the parse string Example:: test = ''' AAA this line AAA and this line AAA but not this one B AAA and definitely not this one ''' for t in (LineStart() + 'AAA' + restOfLine).searchString(test): print(t) Prints:: ['AAA', ' this line'] ['AAA', ' and this line'] cs tt|jd|_dS)NzExpected start of line)rrrr)r)rkrwrxr9 szLineStart.__init__TcCs;t||dkr|gfSt|||j|dS)Nrr)r9rr)rrNrrrwrwrxr= s zLineStart.parseImpl)rrrrrrrwrw)rkrxr$ s cs7eZdZdZfddZdddZS)rzU Matches if current position is at the end of a line within the parse string cs<tt|j|jtjjddd|_dS)Nr%rzExpected end of line)rrrrr$rsrr)r)rkrwrxrF szLineEnd.__init__TcCs|t|krK||dkr0|ddfSt|||j|n8|t|krk|dgfSt|||j|dS)Nr%rr)rrr)rrNrrrwrwrxrK szLineEnd.parseImpl)rrrrrrrwrw)rkrxrB s cs7eZdZdZfddZdddZS)r*zM Matches if current position is at the beginning of the parse string cs tt|jd|_dS)NzExpected start of text)rr*rr)r)rkrwrxrZ szStringStart.__init__TcCsF|dkr<||j|dkr<t|||j||gfS)Nr)rrr)rrNrrrwrwrxr^ s zStringStart.parseImpl)rrrrrrrwrw)rkrxr*V s cs7eZdZdZfddZdddZS)r)zG Matches if current position is at the end of the parse string cs tt|jd|_dS)NzExpected end of text)rr)rr)r)rkrwrxri szStringEnd.__init__TcCs|t|kr-t|||j|nT|t|krM|dgfS|t|kri|gfSt|||j|dS)Nrr)rrr)rrNrrrwrwrxrm s zStringEnd.parseImpl)rrrrrrrwrw)rkrxr)e s cs:eZdZdZefddZdddZS)r1ap Matches if the current position is at the beginning of a Word, and is not preceded by any character in a given set of C{wordChars} (default=C{printables}). To emulate the C{} behavior of regular expressions, use C{WordStart(alphanums)}. C{WordStart} will also match at the beginning of the string being parsed, or at the beginning of a line. cs/tt|jt||_d|_dS)NzNot at the start of a word)rr1rr wordCharsr)rr)rkrwrxr szWordStart.__init__TcCsX|dkrN||d|jks6|||jkrNt|||j||gfS)Nrrr)rrr)rrNrrrwrwrxr s  zWordStart.parseImpl)rrrrrVrrrwrw)rkrxr1w s cs:eZdZdZefddZdddZS)r0aZ Matches if the current position is at the end of a Word, and is not followed by any character in a given set of C{wordChars} (default=C{printables}). To emulate the C{} behavior of regular expressions, use C{WordEnd(alphanums)}. C{WordEnd} will also match at the end of the string being parsed, or at the end of a line. cs8tt|jt||_d|_d|_dS)NFzNot at the end of a word)rr0rrrr}r)rr)rkrwrxr s zWordEnd.__init__TcCspt|}|dkrf||krf|||jksN||d|jkrft|||j||gfS)Nrrr)rrrr)rrNrrrrwrwrxr s  zWordEnd.parseImpl)rrrrrVrrrwrw)rkrxr0 s cseZdZdZdfddZddZddZd d Zfd d Zfd dZ fddZ dfddZ gddZ fddZ S)r z^ Abstract subclass of ParserElement, for combining and post-processing parsed tokens. Fc stt|j|t|tr1t|}t|trXtj|g|_ nt|t j rt|}t dd|Drt tj|}t||_ n4yt||_ Wntk r|g|_ YnXd|_dS)Ncss|]}t|tVqdS)N)rzr)rrOrwrwrxr sz+ParseExpression.__init__..F)rr rrzrrrr$rvexprsrIterableallrrr)rrr)rkrwrxr s   zParseExpression.__init__cCs |j|S)N)r)rrrwrwrxr szParseExpression.__getitem__cCs|jj|d|_|S)N)rr rz)rrrwrwrxr  s zParseExpression.appendcCsDd|_dd|jD|_x|jD]}|jq,W|S)z~Extends C{leaveWhitespace} defined in base class, and also invokes C{leaveWhitespace} on all contained expressions.FcSsg|]}|jqSrw)r)rrrwrwrxr s z3ParseExpression.leaveWhitespace..)r}rr)rrrwrwrxr s  zParseExpression.leaveWhitespacecst|tr_||jkrtt|j|xf|jD]}|j|jdq>Wn>tt|j|x%|jD]}|j|jdqW|S)Nrrrsrs)rzr+rrr rr)rrr)rkrwrxr szParseExpression.ignorec sdytt|jSWntk r+YnX|jdkr]d|jjt|jf|_|jS)Nz%s:(%s)) rr rrnrzrkrrr)r)rkrwrxr s "zParseExpression.__str__cstt|jx|jD]}|jqWt|jdkro|jd}t||jr|j r|jdkr|j r|jdd|jdg|_d|_ |j |j O_ |j |j O_ |jd}t||jro|j ro|jdkro|j ro|jdd|jdd|_d|_ |j |j O_ |j |j O_ dt ||_|S)Nrqrrrz Expected rsrs)rr rrrrzrkrxr{rrzrrrr)rrr)rkrwrxr s0   $    ' zParseExpression.streamlinecstt|j||}|S)N)rr r)rrrr)rkrwrxr szParseExpression.setResultsNamecCsI|dd|g}x|jD]}|j|q!W|jgdS)N)rrr)rrtmprrwrwrxr szParseExpression.validatecs2tt|j}dd|jD|_|S)NcSsg|]}|jqSrw)r)rrrwrwrxr s z(ParseExpression.copy..)rr rr)rr)rkrwrxr szParseExpression.copy)rrrrrrr rrrrrrrrwrw)rkrxr s      "csteZdZdZGdddeZdfddZdddZd d Zd d Z d dZ S)ra  Requires all given C{ParseExpression}s to be found in the given order. Expressions may be separated by whitespace. May be constructed using the C{'+'} operator. May also be constructed using the C{'-'} operator, which will suppress backtracking. Example:: integer = Word(nums) name_expr = OneOrMore(Word(alphas)) expr = And([integer("id"),name_expr("name"),integer("age")]) # more easily written as: expr = integer("id") + name_expr("name") + integer("age") cs"eZdZfddZS)zAnd._ErrorStopcs3ttj|j||d|_|jdS)N-)rrrrrr)rrr)rkrwrxr# s zAnd._ErrorStop.__init__)rrrrrwrw)rkrxr" s rTcsott|j||tdd|jD|_|j|jdj|jdj|_d|_ dS)Ncss|]}|jVqdS)N)r)rrrwrwrxr* szAnd.__init__..rT) rrrrrrrr~r}r)rrr)rkrwrxr( s z And.__init__c CsS|jdj|||dd\}}d}x|jddD]}t|tjrcd}qB|ry|j|||\}}Wq)tk rYq)tk r}zd|_tj|WYdd}~Xq)t k r t|t ||j |Yq)Xn|j|||\}}|s;|j rB||7}qBW||fS)NrrFrrT) rrrzrrr#r __traceback__rrrrr) rrNrr resultlist errorStopr exprtokensrrwrwrxr/ s((  ! &z And.parseImplcCs+t|trtj|}|j|S)N)rzrr$rvr )rrrwrwrxrH sz And.__iadd__cCsF|dd|g}x(|jD]}|j||js!Pq!WdS)N)rrr)rrsubRecCheckListrrwrwrxrM s   zAnd.checkRecursioncCsVt|dr|jS|jdkrOddjdd|jDd|_|jS)Nr{r$css|]}t|VqdS)N)r)rrrwrwrxrY szAnd.__str__..})rrrzrr)rrwrwrxrT s *z And.__str__) rrrrr rrrrrrrwrw)rkrxr s   cs^eZdZdZdfddZdddZdd Zd d Zd d ZS)ra Requires that at least one C{ParseExpression} is found. If two expressions match, the expression that matches the longest string will be used. May be constructed using the C{'^'} operator. Example:: # construct Or using '^' operator number = Word(nums) ^ Combine(Word(nums) + '.' + Word(nums)) print(number.searchString("123 3.1416 789")) prints:: [['123'], ['3.1416'], ['789']] FcsQtt|j|||jrDtdd|jD|_n d|_dS)Ncss|]}|jVqdS)N)r)rrrwrwrxro szOr.__init__..T)rrrrr<r)rrr)rkrwrxrl s "z Or.__init__Tc Csd}d}g}x|jD]}y|j||}Wntk r} z,d| _| j|krt| }| j}WYdd} ~ Xqtk rt||krt|t||j|}t|}YqX|j||fqW|r|j dddxz|D]r\} }y|j |||SWqtk r} z,d| _| j|krm| }| j}WYdd} ~ XqXqW|dk r|j|_ |nt||d|dS)NrrrcSs |d S)Nrrw)xrwrwrxry szOr.parseImpl..z no defined alternatives to matchrs) rrrrrrrrr sortrr) rrNrr maxExcLoc maxExceptionrrloc2r_rwrwrxrs s<       z Or.parseImplcCs+t|trtj|}|j|S)N)rzrr$rvr )rrrwrwrx__ixor__ sz Or.__ixor__cCsVt|dr|jS|jdkrOddjdd|jDd|_|jS)Nrrz ^ css|]}t|VqdS)N)r)rrrwrwrxr szOr.__str__..r)rrrzrr)rrwrwrxr s *z Or.__str__cCs<|dd|g}x|jD]}|j|q!WdS)N)rr)rrrrrwrwrxr szOr.checkRecursion) rrrrrrrrrrwrw)rkrxr^ s &  cs^eZdZdZdfddZdddZdd Zd d Zd d ZS)ra Requires that at least one C{ParseExpression} is found. If two expressions match, the first one listed is the one that will match. May be constructed using the C{'|'} operator. Example:: # construct MatchFirst using '|' operator # watch the order of expressions to match number = Word(nums) | Combine(Word(nums) + '.' + Word(nums)) print(number.searchString("123 3.1416 789")) # Fail! -> [['123'], ['3'], ['1416'], ['789']] # put more selective expression first number = Combine(Word(nums) + '.' + Word(nums)) | Word(nums) print(number.searchString("123 3.1416 789")) # Better -> [['123'], ['3.1416'], ['789']] FcsQtt|j|||jrDtdd|jD|_n d|_dS)Ncss|]}|jVqdS)N)r)rrrwrwrxr sz&MatchFirst.__init__..T)rrrrr<r)rrr)rkrwrxr s "zMatchFirst.__init__Tc Cs d}d}x|jD]}y|j|||}|SWqtk r~}z#|j|krl|}|j}WYdd}~Xqtk rt||krt|t||j|}t|}YqXqW|dk r|j|_|nt||d|dS)Nrrz no defined alternatives to matchrs)rrrrrrrr) rrNrrrrrrrrwrwrxr s$    zMatchFirst.parseImplcCs+t|trtj|}|j|S)N)rzrr$rvr )rrrwrwrx__ior__ szMatchFirst.__ior__cCsVt|dr|jS|jdkrOddjdd|jDd|_|jS)Nrrz | css|]}t|VqdS)N)r)rrrwrwrxr sz%MatchFirst.__str__..r)rrrzrr)rrwrwrxr s *zMatchFirst.__str__cCs<|dd|g}x|jD]}|j|q!WdS)N)rr)rrrrrwrwrxr szMatchFirst.checkRecursion) rrrrrrrrrrwrw)rkrxr s   csReZdZdZdfddZdddZddZd d ZS) r am Requires all given C{ParseExpression}s to be found, but in any order. Expressions may be separated by whitespace. May be constructed using the C{'&'} operator. Example:: color = oneOf("RED ORANGE YELLOW GREEN BLUE PURPLE BLACK WHITE BROWN") shape_type = oneOf("SQUARE CIRCLE TRIANGLE STAR HEXAGON OCTAGON") integer = Word(nums) shape_attr = "shape:" + shape_type("shape") posn_attr = "posn:" + Group(integer("x") + ',' + integer("y"))("posn") color_attr = "color:" + color("color") size_attr = "size:" + integer("size") # use Each (using operator '&') to accept attributes in any order # (shape and posn are required, color and size are optional) shape_spec = shape_attr & posn_attr & Optional(color_attr) & Optional(size_attr) shape_spec.runTests(''' shape: SQUARE color: BLACK posn: 100, 120 shape: CIRCLE size: 50 color: BLUE posn: 50,80 color:GREEN size:20 shape:TRIANGLE posn:20,40 ''' ) prints:: shape: SQUARE color: BLACK posn: 100, 120 ['shape:', 'SQUARE', 'color:', 'BLACK', 'posn:', ['100', ',', '120']] - color: BLACK - posn: ['100', ',', '120'] - x: 100 - y: 120 - shape: SQUARE shape: CIRCLE size: 50 color: BLUE posn: 50,80 ['shape:', 'CIRCLE', 'size:', '50', 'color:', 'BLUE', 'posn:', ['50', ',', '80']] - color: BLUE - posn: ['50', ',', '80'] - x: 50 - y: 80 - shape: CIRCLE - size: 50 color: GREEN size: 20 shape: TRIANGLE posn: 20,40 ['color:', 'GREEN', 'size:', '20', 'shape:', 'TRIANGLE', 'posn:', ['20', ',', '40']] - color: GREEN - posn: ['20', ',', '40'] - x: 20 - y: 40 - shape: TRIANGLE - size: 20 TcsNtt|j||tdd|jD|_d|_d|_dS)Ncss|]}|jVqdS)N)r)rrrwrwrxr)sz Each.__init__..T)rr rrrrr}initExprGroups)rrr)rkrwrxr's z Each.__init__c s|jrtdd|jD|_dd|jD}dd|jD}|||_dd|jD|_dd|jD|_dd|jD|_|j|j7_d |_|}|jdd}|jddg}d } x| r||j|j} g} x| D]} y| j||}Wnt k rj| j | Yq-X|j |jj t | | | |kr|j | q-| kr-j | q-Wt| t| krd } qW|r d jd d|D} t ||d | |fdd|jD7}g}x6|D].} | j|||\}}|j |qMWt|tg}||fS)Ncss3|])}t|trt|j|fVqdS)N)rzrrrO)rrrwrwrxr/sz!Each.parseImpl..cSs(g|]}t|tr|jqSrw)rzrrO)rrrwrwrxr0s z"Each.parseImpl..cSs/g|]%}|jrt|t r|qSrw)rrzr)rrrwrwrxr1s cSs(g|]}t|tr|jqSrw)rzr2rO)rrrwrwrxr3s cSs(g|]}t|tr|jqSrw)rzrrO)rrrwrwrxr4s cSs.g|]$}t|tttfs|qSrw)rzrr2r)rrrwrwrxr5s FTz, css|]}t|VqdS)N)r)rrrwrwrxrPsz*Missing one or more required elements (%s)cs4g|]*}t|tr|jkr|qSrw)rzrrO)rr)tmpOptrwrxrTs )rrropt1map optionalsmultioptionals multirequiredrequiredrrr rrremoverrrsumr")rrNrropt1opt2tmpLoctmpReqd matchOrder keepMatchingtmpExprsfailedrmissingrrJ finalResultsrw)rrxr-sP      "     zEach.parseImplcCsVt|dr|jS|jdkrOddjdd|jDd|_|jS)Nrrz & css|]}t|VqdS)N)r)rrrwrwrxrcszEach.__str__..r)rrrzrr)rrwrwrxr^s *z Each.__str__cCs<|dd|g}x|jD]}|j|q!WdS)N)rr)rrrrrwrwrxrgszEach.checkRecursion)rrrrrrrrrwrw)rkrxr s 51 cseZdZdZdfddZdddZdd Zfd d Zfd d ZddZ gddZ fddZ S)rza Abstract subclass of C{ParserElement}, for combining and post-processing parsed tokens. Fcstt|j|t|tr^ttjtrItj|}ntjt |}||_ d|_ |dk r|j |_ |j |_ |j|j|j|_|j|_|j|_|jj|jdS)N)rrrrzr issubclassr$rvr,rrOrzrrrr~r}r|rrr )rrOr)rkrwrxrqs        zParseElementEnhance.__init__TcCsG|jdk r+|jj|||ddStd||j|dS)NrFr)rOrrr)rrNrrrwrwrxrszParseElementEnhance.parseImplcCs;d|_|jj|_|jdk r7|jj|S)NF)r}rOrr)rrwrwrxrs   z#ParseElementEnhance.leaveWhitespacecst|tr]||jkrtt|j||jdk r|jj|jdn<tt|j||jdk r|jj|jd|S)Nrrrsrs)rzr+rrrrrO)rr)rkrwrxrszParseElementEnhance.ignorecs3tt|j|jdk r/|jj|S)N)rrrrO)r)rkrwrxrs zParseElementEnhance.streamlinecCsY||krt||g|dd|g}|jdk rU|jj|dS)N)r&rOr)rrrrwrwrxrs  z"ParseElementEnhance.checkRecursioncCsG|dd|g}|jdk r6|jj||jgdS)N)rOrr)rrrrwrwrxrszParseElementEnhance.validatec ssytt|jSWntk r+YnX|jdkrl|jdk rld|jjt|jf|_|jS)Nz%s:(%s)) rrrrnrzrOrkrr)r)rkrwrxrs "zParseElementEnhance.__str__) rrrrrrrrrrrrrwrw)rkrxrms    cs7eZdZdZfddZdddZS)ra Lookahead matching of the given parse expression. C{FollowedBy} does I{not} advance the parsing position within the input string, it only verifies that the specified parse expression matches at the current position. C{FollowedBy} always returns a null token list. Example:: # use FollowedBy to match a label only if it is followed by a ':' data_word = Word(alphas) label = data_word + FollowedBy(':') attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)) OneOrMore(attr_expr).parseString("shape: SQUARE color: BLACK posn: upper left").pprint() prints:: [['shape', 'SQUARE'], ['color', 'BLACK'], ['posn', 'upper left']] cs#tt|j|d|_dS)NT)rrrr)rrO)rkrwrxrszFollowedBy.__init__TcCs|jj|||gfS)N)rOr)rrNrrrwrwrxrszFollowedBy.parseImpl)rrrrrrrwrw)rkrxrs csCeZdZdZfddZdddZddZS) ra Lookahead to disallow matching with the given parse expression. C{NotAny} does I{not} advance the parsing position within the input string, it only verifies that the specified parse expression does I{not} match at the current position. Also, C{NotAny} does I{not} skip over leading whitespace. C{NotAny} always returns a null token list. May be constructed using the '~' operator. Example:: csBtt|j|d|_d|_dt|j|_dS)NFTzFound unwanted token, )rrrr}rrrOr)rrO)rkrwrxrs  zNotAny.__init__TcCs7|jj||r-t|||j||gfS)N)rOrrr)rrNrrrwrwrxrszNotAny.parseImplcCsFt|dr|jS|jdkr?dt|jd|_|jS)Nrz~{r)rrrzrrO)rrwrwrxrs zNotAny.__str__)rrrrrrrrwrw)rkrxrs cs4eZdZdfddZdddZS)_MultipleMatchNcsctt|j|d|_|}t|trCtj|}|dk rV|nd|_dS)NT) rrrr|rzrr$rv not_ender)rrOstopOnender)rkrwrxrs  z_MultipleMatch.__init__Tc Cs|jj}|j}|jdk }|r6|jj}|rI|||||||dd\}}y{|j } xi|r|||| r|||} n|} ||| |\}} | s| jrx|| 7}qxWWnttfk rYnX||fS)NrF) rOrrrrrrrr) rrNrrself_expr_parseself_skip_ignorables check_ender try_not_enderrhasIgnoreExprsr tmptokensrwrwrxrs,      z_MultipleMatch.parseImpl)rrrrrrwrw)rkrxrs rc@s"eZdZdZddZdS)ra Repetition of one or more of the given expression. Parameters: - expr - expression that must match one or more times - stopOn - (default=C{None}) - expression for a terminating sentinel (only required if the sentinel would ordinarily match the repetition expression) Example:: data_word = Word(alphas) label = data_word + FollowedBy(':') attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join)) text = "shape: SQUARE posn: upper left color: BLACK" OneOrMore(attr_expr).parseString(text).pprint() # Fail! read 'color' as data instead of next label -> [['shape', 'SQUARE color']] # use stopOn attribute for OneOrMore to avoid reading label string as part of the data attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)) OneOrMore(attr_expr).parseString(text).pprint() # Better -> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'BLACK']] # could also be written as (attr_expr * (1,)).parseString(text).pprint() cCsFt|dr|jS|jdkr?dt|jd|_|jS)Nrrz}...)rrrzrrO)rrwrwrxr4s zOneOrMore.__str__N)rrrrrrwrwrwrxrs csLeZdZdZdfddZdfddZdd ZS) r2aw Optional repetition of zero or more of the given expression. Parameters: - expr - expression that must match zero or more times - stopOn - (default=C{None}) - expression for a terminating sentinel (only required if the sentinel would ordinarily match the repetition expression) Example: similar to L{OneOrMore} Ncs)tt|j|d|d|_dS)NrT)rr2rr)rrOr)rkrwrxrIszZeroOrMore.__init__Tc sIy tt|j|||SWn"ttfk rD|gfSYnXdS)N)rr2rrr)rrNrr)rkrwrxrMs zZeroOrMore.parseImplcCsFt|dr|jS|jdkr?dt|jd|_|jS)Nrrz]...)rrrzrrO)rrwrwrxrSs zZeroOrMore.__str__)rrrrrrrrwrw)rkrxr2=s c@s.eZdZddZeZddZdS) _NullTokencCsdS)NFrw)rrwrwrxr]sz_NullToken.__bool__cCsdS)Nrrw)rrwrwrxr`sz_NullToken.__str__N)rrrrrFrrwrwrwrxr\s  rcsFeZdZdZefddZdddZddZS) raa Optional matching of the given expression. Parameters: - expr - expression that must match zero or more times - default (optional) - value to be returned if the optional expression is not found. Example:: # US postal code can be a 5-digit zip, plus optional 4-digit qualifier zip = Combine(Word(nums, exact=5) + Optional('-' + Word(nums, exact=4))) zip.runTests(''' # traditional ZIP code 12345 # ZIP+4 form 12101-0001 # invalid ZIP 98765- ''') prints:: # traditional ZIP code 12345 ['12345'] # ZIP+4 form 12101-0001 ['12101-0001'] # invalid ZIP 98765- ^ FAIL: Expected end of text (at char 5), (line:1, col:6) csAtt|j|dd|jj|_||_d|_dS)NrFT)rrrrOr|rr)rrOr)rkrwrxrs zOptional.__init__Tc Csy(|jj|||dd\}}Wnpttfk r|jtk r|jjrt|jg}|j||jj ['3', '.', '1416'] # will also erroneously match the following print(real.parseString('3. 1416')) # -> ['3', '.', '1416'] real = Combine(Word(nums) + '.' + Word(nums)) print(real.parseString('3.1416')) # -> ['3.1416'] # no match when there are internal spaces print(real.parseString('3. 1416')) # -> Exception: Expected W:(0123...) rTcsNtt|j||r&|j||_d|_||_d|_dS)NT)rr rradjacentr} joinStringr)rrOrr)rkrwrxrs    zCombine.__init__cs6|jrtj||ntt|j||S)N)rr$rrr )rr)rkrwrxrs zCombine.ignorecCsn|j}|dd=|tdj|j|jgd|j7}|jrf|jrf|gS|SdS)Nrr)rr"rrrrr{r)rrNrrretToksrwrwrxrs   1zCombine.postParse)rrrrrrrrwrw)rkrxr ts  cs4eZdZdZfddZddZS)ra Converter to return the matched tokens as a list - useful for returning tokens of C{L{ZeroOrMore}} and C{L{OneOrMore}} expressions. Example:: ident = Word(alphas) num = Word(nums) term = ident | num func = ident + Optional(delimitedList(term)) print(func.parseString("fn a,b,100")) # -> ['fn', 'a', 'b', '100'] func = ident + Group(Optional(delimitedList(term))) print(func.parseString("fn a,b,100")) # -> ['fn', ['a', 'b', '100']] cs#tt|j|d|_dS)NT)rrrr|)rrO)rkrwrxrszGroup.__init__cCs|gS)Nrw)rrNrrrwrwrxrszGroup.postParse)rrrrrrrwrw)rkrxrs cs4eZdZdZfddZddZS)r aW Converter to return a repetitive expression as a list, but also as a dictionary. Each element can also be referenced using the first token in the expression as its key. Useful for tabular report scraping when the first column can be used as a item key. Example:: data_word = Word(alphas) label = data_word + FollowedBy(':') attr_expr = Group(label + Suppress(':') + OneOrMore(data_word).setParseAction(' '.join)) text = "shape: SQUARE posn: upper left color: light blue texture: burlap" attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)) # print attributes as plain groups print(OneOrMore(attr_expr).parseString(text).dump()) # instead of OneOrMore(expr), parse using Dict(OneOrMore(Group(expr))) - Dict will auto-assign names result = Dict(OneOrMore(Group(attr_expr))).parseString(text) print(result.dump()) # access named fields as dict entries, or output as dict print(result['shape']) print(result.asDict()) prints:: ['shape', 'SQUARE', 'posn', 'upper left', 'color', 'light blue', 'texture', 'burlap'] [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] - color: light blue - posn: upper left - shape: SQUARE - texture: burlap SQUARE {'color': 'light blue', 'posn': 'upper left', 'texture': 'burlap', 'shape': 'SQUARE'} See more examples at L{ParseResults} of accessing fields by results name. cs#tt|j|d|_dS)NT)rr rr|)rrO)rkrwrxrsz Dict.__init__cCsNx3t|D]%\}}t|dkr.q |d}t|tr]t|dj}t|dkrtd|||> entering I{method-name}(line:I{current_source_line}, I{parse_location}, I{matched_tokens})".} When the parse action completes, the decorator will print C{"<<"} followed by the returned value, or any exception that the parse action raised. Example:: wd = Word(alphas) @traceParseAction def remove_duplicate_chars(tokens): return ''.join(sorted(set(''.join(tokens))) wds = OneOrMore(wd).setParseAction(remove_duplicate_chars) print(wds.parseString("slkdjs sld sldd sdlf sdljf")) prints:: >>entering remove_duplicate_chars(line: 'slkdjs sld sldd sdlf sdljf', 0, (['slkdjs', 'sld', 'sldd', 'sdlf', 'sdljf'], {})) <>entering %s(line: '%s', %d, %r) z<.z)rrrr)rrrw)rrxrb s   ,FcCsxt|dt|dt|d}|rSt|t||j|S|tt||j|SdS)a Helper to define a delimited list of expressions - the delimiter defaults to ','. By default, the list elements and delimiters can have intervening whitespace, and comments, but this can be overridden by passing C{combine=True} in the constructor. If C{combine} is set to C{True}, the matching tokens are returned as a single token string, with the delimiters included; otherwise, the matching tokens are returned as a list of tokens, with the delimiters suppressed. Example:: delimitedList(Word(alphas)).parseString("aa,bb,cc") # -> ['aa', 'bb', 'cc'] delimitedList(Word(hexnums), delim=':', combine=True).parseString("AA:BB:CC:DD:EE") # -> ['AA:BB:CC:DD:EE'] z [r$z]...N)rr r2rr+)rOdelimcombinedlNamerwrwrxr@Ls ,!cstfdd}|dkrHttjdd}n |j}|jd|j|dd|jd td S) a: Helper to define a counted list of expressions. This helper defines a pattern of the form:: integer expr expr expr... where the leading integer tells how many expr expressions follow. The matched tokens returns the array of expr tokens as a list - the leading count token is suppressed. If C{intExpr} is specified, it should be a pyparsing expression that produces an integer value. Example:: countedArray(Word(alphas)).parseString('2 ab cd ef') # -> ['ab', 'cd'] # in this parser, the leading integer value is given in binary, # '10' indicating that 2 values are in the array binaryConstant = Word('01').setParseAction(lambda t: int(t[0], 2)) countedArray(Word(alphas), intExpr=binaryConstant).parseString('10 ab cd ef') # -> ['ab', 'cd'] cs;|d}|r,ttg|p5tt>gS)Nr)rrrC)rrWrvr) arrayExprrOrwrxcountFieldParseActionrs -z+countedArray..countFieldParseActionNcSst|dS)Nr)ru)rvrwrwrxrywszcountedArray..arrayLenrTz(len) z...)rr/rRrrrrr)rOintExprrrw)rrOrxr<_s    cCsMg}x@|D]8}t|tr8|jt|q |j|q W|S)N)rzrr rr )Lrrrwrwrxr~s  rcsItfdd}|j|ddjdt|S)a* Helper to define an expression that is indirectly defined from the tokens matched in a previous expression, that is, it looks for a 'repeat' of a previous expression. For example:: first = Word(nums) second = matchPreviousLiteral(first) matchExpr = first + ":" + second will match C{"1:1"}, but not C{"1:2"}. Because this matches a previous literal, will also match the leading C{"1:1"} in C{"1:10"}. If this is not desired, use C{matchPreviousExpr}. Do I{not} use with packrat parsing enabled. csf|rWt|dkr'|d>qbt|j}tdd|D>n t>dS)Nrrrcss|]}t|VqdS)N)r)rttrwrwrxrszDmatchPreviousLiteral..copyTokenToRepeater..)rrrrr )rrWrvtflat)reprwrxcopyTokenToRepeaters z1matchPreviousLiteral..copyTokenToRepeaterrTz(prev) )rrrr)rOrrw)rrxrOs  cs_t|j}|Kfdd}|j|ddjdt|S)aS Helper to define an expression that is indirectly defined from the tokens matched in a previous expression, that is, it looks for a 'repeat' of a previous expression. For example:: first = Word(nums) second = matchPreviousExpr(first) matchExpr = first + ":" + second will match C{"1:1"}, but not C{"1:2"}. Because this matches by expressions, will I{not} match the leading C{"1:1"} in C{"1:10"}; the expressions are evaluated first, and then compared, so C{"1"} is compared with C{"10"}. Do I{not} use with packrat parsing enabled. cs;t|jfdd}j|dddS)Ncs4t|j}|kr0tddddS)Nrr)rrr)rrWrv theseTokens) matchTokensrwrxmustMatchTheseTokenss zLmatchPreviousExpr..copyTokenToRepeater..mustMatchTheseTokensrT)rrr)rrWrvr)r)rrxrsz.matchPreviousExpr..copyTokenToRepeaterrTz(prev) )rrrrr)rOe2rrw)rrxrNs   cCsUx$dD]}|j|t|}qW|jdd}|jdd}t|S)Nz\^-]r%z\nrxz\t)r_bslashr)rrrwrwrxrTs  rTTc sZ|r'dd}dd}tndd}dd}tg}t|tri|j}n7t|tjrt|}ntj dt dd|st Sd }x|t |d kre||}xt ||d d D]c\}} || |r|||d =Pq||| r|||d =|j|| | }PqW|d 7}qW| r+|r+yt |t d j|krtd d jdd|Djdj|Stdjdd|Djdj|SWn(tk r*tj dt ddYnXtfdd|Djdj|S)a Helper to quickly define a set of alternative Literals, and makes sure to do longest-first testing when there is a conflict, regardless of the input order, but returns a C{L{MatchFirst}} for best performance. Parameters: - strs - a string of space-delimited literals, or a collection of string literals - caseless - (default=C{False}) - treat all literals as caseless - useRegex - (default=C{True}) - as an optimization, will generate a Regex object; otherwise, will generate a C{MatchFirst} object (if C{caseless=True}, or if creating a C{Regex} raises an exception) Example:: comp_oper = oneOf("< = > <= >= !=") var = Word(alphas) number = Word(nums) term = var | number comparison_expr = term + comp_oper + term print(comparison_expr.searchString("B = 12 AA=23 B<=AA AA>12")) prints:: [['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']] cSs|j|jkS)N)r;)rbrwrwrxryszoneOf..cSs|jj|jS)N)r;r8)rrrwrwrxryscSs ||kS)Nrw)rrrwrwrxryscSs |j|S)N)r8)rrrwrwrxrysz6Invalid argument to oneOf, expected string or iterablerrqrrrNrz[%s]css|]}t|VqdS)N)rT)rsymrwrwrxrszoneOf..z | |css|]}tj|VqdS)N)rrV)rrrwrwrxrsz7Exception creating Regex for oneOf, building MatchFirstc3s|]}|VqdS)Nrw)rr)parseElementClassrwrxrs)rrrzrrrrrrrrrrrr rr'rrnr) strsr:useRegexisequalmaskssymbolsrcurrrrw)rrxrSsL        ' !66  cCsttt||S)a Helper to easily and clearly define a dictionary by specifying the respective patterns for the key and value. Takes care of defining the C{L{Dict}}, C{L{ZeroOrMore}}, and C{L{Group}} tokens in the proper order. The key pattern can include delimiting markers or punctuation, as long as they are suppressed, thereby leaving the significant key text. The value pattern can include named results, so that the C{Dict} results can include named token fields. Example:: text = "shape: SQUARE posn: upper left color: light blue texture: burlap" attr_expr = (label + Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join)) print(OneOrMore(attr_expr).parseString(text).dump()) attr_label = label attr_value = Suppress(':') + OneOrMore(data_word, stopOn=label).setParseAction(' '.join) # similar to Dict, but simpler call format result = dictOf(attr_label, attr_value).parseString(text) print(result.dump()) print(result['shape']) print(result.shape) # object attribute access works too print(result.asDict()) prints:: [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'light blue'], ['texture', 'burlap']] - color: light blue - posn: upper left - shape: SQUARE - texture: burlap SQUARE SQUARE {'color': 'light blue', 'shape': 'SQUARE', 'posn': 'upper left', 'texture': 'burlap'} )r r2r)rrrwrwrxrAs!cCstjdd}|j}d|_|d||d}|r\dd}n dd}|j||j|_|S) a Helper to return the original, untokenized text for a given expression. Useful to restore the parsed fields of an HTML start tag into the raw tag text itself, or to revert separate tokens with intervening whitespace back to the original matching input text. By default, returns astring containing the original parsed text. If the optional C{asString} argument is passed as C{False}, then the return value is a C{L{ParseResults}} containing any results names that were originally matched, and a single token containing the original matched text from the input string. So if the expression passed to C{L{originalTextFor}} contains expressions with defined results names, you must set C{asString} to C{False} if you want to preserve those results name values. Example:: src = "this is test bold text normal text " for tag in ("b","i"): opener,closer = makeHTMLTags(tag) patt = originalTextFor(opener + SkipTo(closer) + closer) print(patt.searchString(src)[0]) prints:: [' bold text '] ['text'] cSs|S)Nrw)rrrvrwrwrxryKsz!originalTextFor..F_original_start _original_endcSs||j|jS)N)rr)rrWrvrwrwrxryPscSs3||jd|jdg|dd.extractText)r rrrr)rOasString locMarker endlocMarker matchExprrrwrwrxrg3s     cCst|jddS)zp Helper to undo pyparsing's default grouping of And expressions, even if all but one are non-empty. cSs|dS)Nrrw)rvrwrwrxry]szungroup..)r-r)rOrwrwrxrhXscCsHtjdd}t|d|d|jjdS)a Helper to decorate a returned token with its starting and ending locations in the input string. This helper adds the following results names: - locn_start = location where matched expression begins - locn_end = location where matched expression ends - value = the actual parsed results Be careful if the input text contains C{} characters, you may want to call C{L{ParserElement.parseWithTabs}} Example:: wd = Word(alphas) for match in locatedExpr(wd).searchString("ljsdf123lksdjjf123lkkjj1222"): print(match) prints:: [[0, 'ljsdf', 5]] [[8, 'lksdjjf', 15]] [[18, 'lkkjj', 23]] cSs|S)Nrw)rrWrvrwrwrxrysszlocatedExpr.. locn_startrlocn_end)r rrrr)rOlocatorrwrwrxrj_sz\[]-*.$+^?()~ rZcCs |ddS)Nrrrrw)rrWrvrwrwrxry~sryz\\0?[xX][0-9a-fA-F]+cCs tt|djddS)Nrz\0x)unichrrulstrip)rrWrvrwrwrxrysz \\0[0-7]+cCs!tt|ddddS)Nrrr)rru)rrWrvrwrwrxrysrKz\]z\wrrr%negatebodyrc sYddy0djfddtj|jDSWntk rTdSYnXdS)a Helper to easily define string ranges for use in Word construction. Borrows syntax from regexp '[]' string range definitions:: srange("[0-9]") -> "0123456789" srange("[a-z]") -> "abcdefghijklmnopqrstuvwxyz" srange("[a-z$_]") -> "abcdefghijklmnopqrstuvwxyz$_" The input string must be enclosed in []'s, and the returned string is the expanded character set joined into a single string. The values enclosed in the []'s may be: - a single character - an escaped character with a leading backslash (such as C{\-} or C{\]}) - an escaped hex character with a leading C{'\x'} (C{\x21}, which is a C{'!'} character) (C{\0x##} is also supported for backwards compatibility) - an escaped octal character with a leading C{'\0'} (C{\041}, which is a C{'!'} character) - a range of any of the above, separated by a dash (C{'a-z'}, etc.) - any combination of the above (C{'aeiouy'}, C{'a-zA-Z0-9_$'}, etc.) cSsNt|ts|Sdjddtt|dt|ddDS)Nrcss|]}t|VqdS)N)r)rrrwrwrxrsz+srange....rrr)rzr"rrord)prwrwrxryszsrange..rc3s|]}|VqdS)Nrw)rpart) _expandedrwrxrszsrange..N)r_reBracketExprrr rn)rrw)r rxr_s  0 csfdd}|S)zt Helper method for defining parse actions that require matching at a specific column in the input text. cs/t||kr+t||ddS)Nzmatched token not at column %d)r9r)rHlocnrS)rrwrx verifyColsz!matchOnlyAtCol..verifyColrw)rrrw)rrxrMscsfddS)a Helper method for common parse actions that simply return a literal value. Especially useful when used with C{L{transformString}()}. Example:: num = Word(nums).setParseAction(lambda toks: int(toks[0])) na = oneOf("N/A NA").setParseAction(replaceWith(math.nan)) term = na | num OneOrMore(term).parseString("324 234 N/A 234") # -> [324, 234, nan, 234] csgS)Nrw)rrWrv)replStrrwrxryszreplaceWith..rw)rrw)rrxr\s cCs|dddS)a Helper parse action for removing quotation marks from parsed quoted strings. Example:: # by default, quotation marks are included in parsed results quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["'Now is the Winter of our Discontent'"] # use removeQuotes to strip quotation marks from parsed results quotedString.setParseAction(removeQuotes) quotedString.parseString("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"] rrrrsrw)rrWrvrwrwrxrZs c sefdd}y"tdtdj}Wntk rWt}YnX||_|S)aG Helper to define a parse action by mapping a function to all elements of a ParseResults list.If any additional args are passed, they are forwarded to the given function as additional arguments after the token, as in C{hex_integer = Word(hexnums).setParseAction(tokenMap(int, 16))}, which will convert the parsed data to an integer using base 16. Example (compare the last to example in L{ParserElement.transformString}:: hex_ints = OneOrMore(Word(hexnums)).setParseAction(tokenMap(int, 16)) hex_ints.runTests(''' 00 11 22 aa FF 0a 0d 1a ''') upperword = Word(alphas).setParseAction(tokenMap(str.upper)) OneOrMore(upperword).runTests(''' my kingdom for a horse ''') wd = Word(alphas).setParseAction(tokenMap(str.title)) OneOrMore(wd).setParseAction(' '.join).runTests(''' now is the winter of our discontent made glorious summer by this sun of york ''') prints:: 00 11 22 aa FF 0a 0d 1a [0, 17, 34, 170, 255, 10, 13, 26] my kingdom for a horse ['MY', 'KINGDOM', 'FOR', 'A', 'HORSE'] now is the winter of our discontent made glorious summer by this sun of york ['Now Is The Winter Of Our Discontent Made Glorious Summer By This Sun Of York'] csfdd|DS)Ncsg|]}|qSrwrw)rtokn)rrXrwrxrs z(tokenMap..pa..rw)rrWrv)rrXrwrxrsztokenMap..parrk)rmrrnr|)rXrrrqrw)rrXrxrms    cCst|jS)N)rr;)rvrwrwrxryscCst|jS)N)rlower)rvrwrwrxryscCsEt|tr+|}t|d| }n |j}tttd}|rtjj t }t d|dt t t|t d|tdddgjd j d d t d }nd jddtD}tjj t t|B}t d|dt t t|j ttt d|tdddgjd j dd t d }ttd|d }|jdd j|jddjjjd|}|jdd j|jddjjjd|}||_||_||fS)zRInternal helper to construct opening and closing tag expressions, given a tag namer:z_-:r'tag=/rFrCcSs|ddkS)Nrrrw)rrWrvrwrwrxrysz_makeTags..r(rcss!|]}|dkr|VqdS)r(Nrw)rrrwrwrxrsz_makeTags..cSs|ddkS)Nrrrw)rrWrvrwrwrxry szr[z)rzrrrr/r4r3r>rrrZr+r r2rrrrrVrYrBr _Lrtitlerrr)tagStrxmlresname tagAttrName tagAttrValueopenTagprintablesLessRAbrackcloseTagrwrwrx _makeTagss" r~AA  r"cCs t|dS)a  Helper to construct opening and closing tag expressions for HTML, given a tag name. Matches tags in either upper or lower case, attributes with namespaces and with quoted or unquoted values. Example:: text = 'More info at the pyparsing wiki page' # makeHTMLTags returns pyparsing expressions for the opening and closing tags as a 2-tuple a,a_end = makeHTMLTags("A") link_expr = a + SkipTo(a_end)("link_text") + a_end for link in link_expr.searchString(text): # attributes in the tag (like "href" shown here) are also accessible as named results print(link.link_text, '->', link.href) prints:: pyparsing -> http://pyparsing.wikispaces.com F)r")rrwrwrxrKscCs t|dS)z Helper to construct opening and closing tag expressions for XML, given a tag name. Matches tags only in the given upper/lower case. Example: similar to L{makeHTMLTags} T)r")rrwrwrxrL%scsN|r|ddn |jddDfdd}|S)a< Helper to create a validating parse action to be used with start tags created with C{L{makeXMLTags}} or C{L{makeHTMLTags}}. Use C{withAttribute} to qualify a starting tag with a required attribute value, to avoid false matches on common tags such as C{} or C{
}. Call C{withAttribute} with a series of attribute names and values. Specify the list of filter attributes names and values as: - keyword arguments, as in C{(align="right")}, or - as an explicit dict with C{**} operator, when an attribute name is also a Python reserved word, as in C{**{"class":"Customer", "align":"right"}} - a list of name-value tuples, as in ( ("ns1:class", "Customer"), ("ns2:align","right") ) For attribute names with a namespace prefix, you must use the second form. Attribute names are matched insensitive to upper/lower case. If just testing for C{class} (with or without a namespace), use C{L{withClass}}. To verify that the attribute exists, but without specifying a value, pass C{withAttribute.ANY_VALUE} as the value. Example:: html = '''
Some text
1 4 0 1 0
1,3 2,3 1,1
this has no type
''' div,div_end = makeHTMLTags("div") # only match div tag having a type attribute with value "grid" div_grid = div().setParseAction(withAttribute(type="grid")) grid_expr = div_grid + SkipTo(div | div_end)("body") for grid_header in grid_expr.searchString(html): print(grid_header.body) # construct a match with any div tag having a type attribute, regardless of the value div_any_type = div().setParseAction(withAttribute(type=withAttribute.ANY_VALUE)) div_expr = div_any_type + SkipTo(div | div_end)("body") for div_header in div_expr.searchString(html): print(div_header.body) prints:: 1 4 0 1 0 1 4 0 1 0 1,3 2,3 1,1 NcSs"g|]\}}||fqSrwrw)rrrrwrwrxrds z!withAttribute..csxxD]p\}}||kr5t||d||tjkr|||krt||d||||fqWdS)Nzno matching attribute z+attribute '%s' has value '%s', must be '%s')rre ANY_VALUE)rrWrattrName attrValue)attrsrwrxres   zwithAttribute..pa)r)rattrDictrrw)r&rxre.s 2 cCs&|rd|nd}t||iS)a Simplified version of C{L{withAttribute}} when matching on a div class - made difficult because C{class} is a reserved word in Python. Example:: html = '''
Some text
1 4 0 1 0
1,3 2,3 1,1
this <div> has no class
''' div,div_end = makeHTMLTags("div") div_grid = div().setParseAction(withClass("grid")) grid_expr = div_grid + SkipTo(div | div_end)("body") for grid_header in grid_expr.searchString(html): print(grid_header.body) div_any_type = div().setParseAction(withClass(withAttribute.ANY_VALUE)) div_expr = div_any_type + SkipTo(div | div_end)("body") for div_header in div_expr.searchString(html): print(div_header.body) prints:: 1 4 0 1 0 1 4 0 1 0 1,3 2,3 1,1 z%s:classclass)re) classname namespace classattrrwrwrxrkos (ricCs[t}||||B}x/t|D]!\}}|d dd\}} } } | dkrjd|nd|} | dkr|dkst|dkrtd|\} }tj| }| tjkr| dkr t||t|t |}q| dkrx|dk rQt|||t|t ||}qt||t|t |}q| dkrt|| |||t|| |||}qtd n(| tj kr| dkr&t |t st |}t|j |t||}q| dkr|dk rmt|||t|t ||}qt||t|t |}q| dkrt|| |||t|| |||}qtd n td | r,t | ttfr|j| n |j| ||j| |BK}|}q(W||K}|S) aD Helper method for constructing grammars of expressions made up of operators working in a precedence hierarchy. Operators may be unary or binary, left- or right-associative. Parse actions can also be attached to operator expressions. The generated parser will also recognize the use of parentheses to override operator precedences (see example below). Note: if you define a deep operator list, you may see performance issues when using infixNotation. See L{ParserElement.enablePackrat} for a mechanism to potentially improve your parser performance. Parameters: - baseExpr - expression representing the most basic element for the nested - opList - list of tuples, one for each operator precedence level in the expression grammar; each tuple is of the form (opExpr, numTerms, rightLeftAssoc, parseAction), where: - opExpr is the pyparsing expression for the operator; may also be a string, which will be converted to a Literal; if numTerms is 3, opExpr is a tuple of two expressions, for the two operators separating the 3 terms - numTerms is the number of terms for this operator (must be 1, 2, or 3) - rightLeftAssoc is the indicator whether the operator is right or left associative, using the pyparsing-defined constants C{opAssoc.RIGHT} and C{opAssoc.LEFT}. - parseAction is the parse action to be associated with expressions matching this operator expression (the parse action tuple member may be omitted); if the parse action is passed a tuple or list of functions, this is equivalent to calling C{setParseAction(*fn)} (L{ParserElement.setParseAction}) - lpar - expression for matching left-parentheses (default=C{Suppress('(')}) - rpar - expression for matching right-parentheses (default=C{Suppress(')')}) Example:: # simple example of four-function arithmetic with ints and variable names integer = pyparsing_common.signed_integer varname = pyparsing_common.identifier arith_expr = infixNotation(integer | varname, [ ('-', 1, opAssoc.RIGHT), (oneOf('* /'), 2, opAssoc.LEFT), (oneOf('+ -'), 2, opAssoc.LEFT), ]) arith_expr.runTests(''' 5+3*6 (5+3)*6 -2--11 ''', fullDump=False) prints:: 5+3*6 [[5, '+', [3, '*', 6]]] (5+3)*6 [[[5, '+', 3], '*', 6]] -2--11 [[['-', 2], '-', ['-', 11]]] Nr_roz%s termz %s%s termrqz@if numterms=3, opExpr must be a tuple or list of two expressionsrrz6operator must be unary (1), binary (2), or ternary (3)z2operator must indicate right or left associativity)N)rrrrrrTLEFTrrrRIGHTrzrrOrrr)baseExpropListlparrparrlastExprroperDefopExprarityrightLeftAssocrtermNameopExpr1opExpr2thisExprrrwrwrxrisV=       '  /'    $  /'      z4"(?:[^"\n\r\\]|(?:"")|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*"z string enclosed in double quotesz4'(?:[^'\n\r\\]|(?:'')|(?:\\(?:[^x]|x[0-9a-fA-F]+)))*'z string enclosed in single quotesz*quotedString using single or double quotesuzunicode string literalcCs'||krtd|dkrt|trt|trt|dkrt|dkr|dk rtt|t||tjddj dd}qt j t||tjj dd}q|dk r?tt|t |t |ttjddj dd}qttt |t |ttjddj d d}n td t }|dk r|tt|t||B|Bt|K}n.|tt|t||Bt|K}|jd ||f|S) a~ Helper method for defining nested lists enclosed in opening and closing delimiters ("(" and ")" are the default). Parameters: - opener - opening character for a nested list (default=C{"("}); can also be a pyparsing expression - closer - closing character for a nested list (default=C{")"}); can also be a pyparsing expression - content - expression for items within the nested lists (default=C{None}) - ignoreExpr - expression for ignoring opening and closing delimiters (default=C{quotedString}) If an expression is not provided for the content argument, the nested expression will capture all whitespace-delimited content between delimiters as a list of separate values. Use the C{ignoreExpr} argument to define expressions that may contain opening or closing characters that should not be treated as opening or closing characters for nesting, such as quotedString or a comment expression. Specify multiple expressions using an C{L{Or}} or C{L{MatchFirst}}. The default is L{quotedString}, but if no expressions are to be ignored, then pass C{None} for this argument. Example:: data_type = oneOf("void int short long char float double") decl_data_type = Combine(data_type + Optional(Word('*'))) ident = Word(alphas+'_', alphanums+'_') number = pyparsing_common.number arg = Group(decl_data_type + ident) LPAR,RPAR = map(Suppress, "()") code_body = nestedExpr('{', '}', ignoreExpr=(quotedString | cStyleComment)) c_function = (decl_data_type("type") + ident("name") + LPAR + Optional(delimitedList(arg), [])("args") + RPAR + code_body("body")) c_function.ignore(cStyleComment) source_code = ''' int is_odd(int x) { return (x%2); } int dec_to_hex(char hchar) { if (hchar >= '0' && hchar <= '9') { return (ord(hchar)-ord('0')); } else { return (10+ord(hchar)-ord('A')); } } ''' for func in c_function.searchString(source_code): print("%(name)s (%(type)s) args: %(args)s" % func) prints:: is_odd (int) args: [['int', 'x']] dec_to_hex (int) args: [['char', 'hchar']] z.opening and closing strings cannot be the sameNrrrZcSs|djS)Nr)r)rvrwrwrxryQsznestedExpr..cSs|djS)Nr)r)rvrwrwrxryTscSs|djS)Nr)r)rvrwrwrxryZscSs|djS)Nr)r)rvrwrwrxry^szOopening and closing arguments must be strings if no content expression is givenznested %s%s expression)rrzrrr rr r$rsrrCrrrrr+r2r)openerclosercontentrrrwrwrxrPs4:   $  $     5.c s>fdd}fdd}fdd}ttjdj}ttj|jd}tj|jd }tj|jd } |rtt||t|t|t|| } n0tt|t|t|t|} |j t t| jd S) a Helper method for defining space-delimited indentation blocks, such as those used to define block statements in Python source code. Parameters: - blockStatementExpr - expression defining syntax of statement that is repeated within the indented block - indentStack - list created by caller to manage indentation stack (multiple statementWithIndentedBlock expressions within a single grammar should share a common indentStack) - indent - boolean indicating whether block must be indented beyond the the current level; set to False for block of left-most statements (default=C{True}) A valid block must contain at least one C{blockStatement}. Example:: data = ''' def A(z): A1 B = 100 G = A2 A2 A3 B def BB(a,b,c): BB1 def BBA(): bba1 bba2 bba3 C D def spam(x,y): def eggs(z): pass ''' indentStack = [1] stmt = Forward() identifier = Word(alphas, alphanums) funcDecl = ("def" + identifier + Group( "(" + Optional( delimitedList(identifier) ) + ")" ) + ":") func_body = indentedBlock(stmt, indentStack) funcDef = Group( funcDecl + func_body ) rvalue = Forward() funcCall = Group(identifier + "(" + Optional(delimitedList(rvalue)) + ")") rvalue << (funcCall | identifier | Word(nums)) assignment = Group(identifier + "=" + rvalue) stmt << ( funcDef | assignment | identifier ) module_body = OneOrMore(stmt) parseTree = module_body.parseString(data) parseTree.pprint() prints:: [['def', 'A', ['(', 'z', ')'], ':', [['A1'], [['B', '=', '100']], [['G', '=', 'A2']], ['A2'], ['A3']]], 'B', ['def', 'BB', ['(', 'a', 'b', 'c', ')'], ':', [['BB1'], [['def', 'BBA', ['(', ')'], ':', [['bba1'], ['bba2'], ['bba3']]]]]], 'C', 'D', ['def', 'spam', ['(', 'x', 'y', ')'], ':', [[['def', 'eggs', ['(', 'z', ')'], ':', [['pass']]]]]]] csm|t|krdSt||}|dkri|dkrWt||dt||ddS)Nrrzillegal nestingznot a peer entryrsrs)rr9r!r)rrWrvcurCol) indentStackrwrxcheckPeerIndentsz&indentedBlock..checkPeerIndentcsEt||}|dkr/j|nt||ddS)Nrrznot a subentryrs)r9r r)rrWrvrB)rCrwrxcheckSubIndentsz%indentedBlock..checkSubIndentcsk|t|krdSt||}oH|dkoH|dks]t||djdS)Nrrrqznot an unindentrsr\)rr9rr)rrWrvrB)rCrwrx checkUnindents &z$indentedBlock..checkUnindentz INDENTrUNINDENTzindented block) rrrrr rrrrrr) blockStatementExprrCr,rDrErFr?rGPEERUNDENTsmExprrw)rCrxrfisN"8 $z#[\0xc0-\0xd6\0xd8-\0xf6\0xf8-\0xff]z[\0xa1-\0xbf\0xd7\0xf7]z_:zany tagzgt lt amp nbsp quot aposz><& "'z &(?Prz);zcommon HTML entitycCstj|jS)zRHelper parser action to replace common HTML entities with their special characters)_htmlEntityMaprentity)rvrwrwrxr[sz/\*(?:[^*]|\*(?!/))*z*/zC style commentzz HTML commentz.*z rest of linez//(?:\\\n|[^\n])*z // commentzC++ style commentz#.*zPython style commentz commaItemrc@seZdZdZeeZeeZe e j dj eZ e ej dj eedZedj dj eZej edej ej dZejd d eeeed jeBj d Zejeed j dj eZedj dj eZeeBeBjZedj dj eZe ededj dZedj dZ edj dZ!e!de!dj dZ"ee!de!d>dee!de!d?j dZ#e#j$d d d!e j d"Z%e&e"e%Be#Bj d#j d#Z'ed$j d%Z(e)d&d'd(Z*e)d)d*d+Z+ed,j d-Z,ed.j d/Z-ed0j d1Z.e/je0jBZ1e)d2d3Z2e&e3e4d4e5e e6d5d4ee7d6jj d7Z8e9ee:j;e8Bd8d9j d:Z<e)ed;d Z=e)ed<d Z>d=S)@rna Here are some common low-level expressions that may be useful in jump-starting parser development: - numeric forms (L{integers}, L{reals}, L{scientific notation}) - common L{programming identifiers} - network addresses (L{MAC}, L{IPv4}, L{IPv6}) - ISO8601 L{dates} and L{datetime} - L{UUID} - L{comma-separated list} Parse actions: - C{L{convertToInteger}} - C{L{convertToFloat}} - C{L{convertToDate}} - C{L{convertToDatetime}} - C{L{stripHTMLTags}} - C{L{upcaseTokens}} - C{L{downcaseTokens}} Example:: pyparsing_common.number.runTests(''' # any int or real number, returned as the appropriate type 100 -100 +100 3.14159 6.02e23 1e-12 ''') pyparsing_common.fnumber.runTests(''' # any int or real number, returned as float 100 -100 +100 3.14159 6.02e23 1e-12 ''') pyparsing_common.hex_integer.runTests(''' # hex numbers 100 FF ''') pyparsing_common.fraction.runTests(''' # fractions 1/2 -3/4 ''') pyparsing_common.mixed_integer.runTests(''' # mixed fractions 1 1/2 -3/4 1-3/4 ''') import uuid pyparsing_common.uuid.setParseAction(tokenMap(uuid.UUID)) pyparsing_common.uuid.runTests(''' # uuid 12345678-1234-5678-1234-567812345678 ''') prints:: # any int or real number, returned as the appropriate type 100 [100] -100 [-100] +100 [100] 3.14159 [3.14159] 6.02e23 [6.02e+23] 1e-12 [1e-12] # any int or real number, returned as float 100 [100.0] -100 [-100.0] +100 [100.0] 3.14159 [3.14159] 6.02e23 [6.02e+23] 1e-12 [1e-12] # hex numbers 100 [256] FF [255] # fractions 1/2 [0.5] -3/4 [-0.75] # mixed fractions 1 [1] 1/2 [0.5] -3/4 [-0.75] 1-3/4 [1.75] # uuid 12345678-1234-5678-1234-567812345678 [UUID('12345678-1234-5678-1234-567812345678')] integerz hex integerrz[+-]?\d+zsigned integerrfractioncCs|d|dS)Nrrrrsrw)rvrwrwrxryszpyparsing_common.rz"fraction or mixed integer-fractionz [+-]?\d+\.\d*z real numberz+[+-]?\d+([eE][+-]?\d+|\.\d*([eE][+-]?\d+)?)z$real number with scientific notationz[+-]?\d+\.?\d*([eE][+-]?\d+)?fnumberr identifierzK(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})(\.(25[0-5]|2[0-4][0-9]|1?[0-9]{1,2})){3}z IPv4 addressz[0-9a-fA-F]{1,4} hex_integerrzfull IPv6 addressrrez::zshort IPv6 addresscCstdd|DdkS)Ncss'|]}tjj|rdVqdS)rrN)rn _ipv6_partr)rrrwrwrxrsz,pyparsing_common...r)r)rvrwrwrxrysz::ffff:zmixed IPv6 addressz IPv6 addressz:[0-9a-fA-F]{2}([:.-])[0-9a-fA-F]{2}(?:\1[0-9a-fA-F]{2}){4}z MAC addressz%Y-%m-%dcsfdd}|S)a Helper to create a parse action for converting parsed date string to Python datetime.date Params - - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%d"}) Example:: date_expr = pyparsing_common.iso8601_date.copy() date_expr.setParseAction(pyparsing_common.convertToDate()) print(date_expr.parseString("1999-12-31")) prints:: [datetime.date(1999, 12, 31)] csbytj|djSWn=tk r]}zt||t|WYdd}~XnXdS)Nr)rstrptimedaterrr|)rrWrvve)fmtrwrxcvt_fnsz.pyparsing_common.convertToDate..cvt_fnrw)rZr[rw)rZrx convertToDateszpyparsing_common.convertToDatez%Y-%m-%dT%H:%M:%S.%fcsfdd}|S)a Helper to create a parse action for converting parsed datetime string to Python datetime.datetime Params - - fmt - format to be passed to datetime.strptime (default=C{"%Y-%m-%dT%H:%M:%S.%f"}) Example:: dt_expr = pyparsing_common.iso8601_datetime.copy() dt_expr.setParseAction(pyparsing_common.convertToDatetime()) print(dt_expr.parseString("1999-12-31T23:59:59.999")) prints:: [datetime.datetime(1999, 12, 31, 23, 59, 59, 999000)] cs\ytj|dSWn=tk rW}zt||t|WYdd}~XnXdS)Nr)rrWrrr|)rrWrvrY)rZrwrxr[sz2pyparsing_common.convertToDatetime..cvt_fnrw)rZr[rw)rZrxconvertToDatetimesz"pyparsing_common.convertToDatetimez7(?P\d{4})(?:-(?P\d\d)(?:-(?P\d\d))?)?z ISO8601 datez(?P\d{4})-(?P\d\d)-(?P\d\d)[T ](?P\d\d):(?P\d\d)(:(?P\d\d(\.\d*)?)?)?(?PZ|[+-]\d\d:?\d\d)?zISO8601 datetimez2[0-9a-fA-F]{8}(-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}UUIDcCstjj|dS)a Parse action to remove HTML tags from web page HTML source Example:: # strip HTML links from normal text text = 'More info at the
pyparsing wiki page' td,td_end = makeHTMLTags("TD") table_text = td + SkipTo(td_end).setParseAction(pyparsing_common.stripHTMLTags)("body") + td_end print(table_text.parseString(text).body) # -> 'More info at the pyparsing wiki page' r)rn_html_stripperr)rrWrrwrwrx stripHTMLTagss zpyparsing_common.stripHTMLTagsrrKz rOrrzcomma separated listcCst|jS)N)rr;)rvrwrwrxry scCst|jS)N)rr)rvrwrwrxrysN)rre)rre)?rrrrrmruconvertToIntegerfloatconvertToFloatr/rRrrrPrDrTr'signed_integerrQrrr mixed_integerrrealsci_realrnumberrRr4r3rS ipv4_addressrV_full_ipv6_address_short_ipv6_addressr_mixed_ipv6_addressr ipv6_address mac_addressr2r\r] iso8601_dateiso8601_datetimeuuidr7r6r_r`rrrrVr. _commasepitemr@rYrcomma_separated_listrdrBrwrwrwrxrnsL   '/-  ;&J+__main__selectfromz_$rrcolumnsrZtablescommandaK # '*' as column list and dotted table name select * from SYS.XYZZY # caseless match on "SELECT", and casts back to "select" SELECT * from XYZZY, ABC # list of column names, and mixed case SELECT keyword Select AA,BB,CC from Sys.dual # multiple tables Select A, B, C from Sys.dual, Table2 # invalid SELECT keyword - should fail Xelect A, B, C from Sys.dual # incomplete command - should fail Select # invalid column name - should fail Select ^^^ frox Sys.dual z] 100 -100 +100 3.14159 6.02e23 1e-12 z 100 FF z6 12345678-1234-5678-1234-567812345678 )r __version____versionTime__ __author__rweakrefrrrrrrrcrr@r^rr_threadr ImportError threadingrrZ ordereddict__all__r version_infor]r#maxsizer3r|rchrrrrrr:reversedrrr<rrXrYrlZmaxintxranger __builtin__rfnamer rmrrrrrrascii_uppercaseascii_lowercaser4rRrDr3rr printablerVrnrrr!r#r&rr"MutableMappingregisterr9rJrGrPrTrVrQrrr$r,r rrrrvrrrrlr/r'r%r r.rrrrr*r)r1r0r rrrr rrrrrr2rrrr(rrr-r rr r+rrbr@r<rrOrNrTrSrArgrhrjrrCrIrHrar`r _escapedPunc_escapedHexChar_escapedOctCharUNICODE _singleChar _charRangerrr_rMr\rZrmrdrBr"rKrLrer#rkrTr-r.rirUr>r^rYrcrPrfr5rWr7r6rrrMrr;r[r8rErr]r?r=rFrXrrrr:rnrZ selectTokenZ fromTokenidentZ columnNameZcolumnNameListZ columnSpecZ tableNameZ tableNameListZ simpleSQLr1rhrRrTrqr^rwrwrwrx=s              *         8     @ & A=IG3pLOD|M &# @sQ,A ,   I #%  $4@    ,   ? #   p%Zr  (, #8+    $