3 3E\l@s dZdZdZdZddlZddlmZddlZddl Z ddl Z ddl Z ddl Z ddl Z ddlZddlZddlZddlmZyddlmZWn ek rdd lmZYnXydd lmZWn ek rdd lmZYnXydd lmZdd lmZWn.ek r&dd l mZdd l mZYnXydd l mZWnBek rzydd lmZWnek rtdZYnXYnXyddlmZWn$ek rGdddZYnXeZ de _de _!dddddddddddddd d!d"d#d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2d3d4d5d6d7d8d9d:d;dd?d@dAdBdCdDdEdFdGdHdIdJdKdLdMdNdOdPdQdRdSdTdUdVdWdXdYdZd[d\d]d^d_d`dadbdcdddedfdgdhdidjdkdldmdndodpdqdrdsdtdudvdwdxdydzd{d|d}d~dddddgqZ"e#e j$ddZ%e%ddkZ&e&re j'Z(e)Z*e+Z,e)Z-e)Z.e/e0e1e2e3e#e4e5e6e7e8g Z9nbe j:Z(e;ZD]6Z?ye9j@eAe=e?WneBk rZw(YnXq(WeCdded>ebZcGdddecZdGdd)d)ecZeGdd&d&ecZfefZgefeb_hGdd#d#ecZiGdddefZjGdddeiZkGdddecZlGddAdAecZmGddEdEemZnGdd9d9ecZoGdd7d7ecZpGdddecZqGdd@d@ecZrGdddecZsGdd!d!esZtGdd%d%esZuGdd$d$esZvGdd<ddZeoddjMej˃djdZ̐ddnZeeoddjd Zeod!jd"Zeod#jЃjd$Zeod%jd&ZeeoddeBjd'ZeZeod(jd)ZeeemeOdؐd*eemd+efd؃evjփjd,ZeeejeBdd-jdMZGd.ddZGd/d0d0eVZGd1ddeVZGd2ddeۃZejjjejjjejjjej_e& reeܐd3ejeeܐd4ejeeܐd5ejeeܐd6ejeeܐd7ejeeܐd8ej݃eejݐd9ejjރeejݐd:ejjeejݐd;ejjeeܐdejed?k rejd@ZejdAZemeHeKdBZeedCddDjeZeeejdEZdFeBZeedCddDjeZeeejdGZedHedEeedGZejdIejjdJejjdJejjdKddlZejjeejejjdLdS(Tay 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 ``", !"``), built up using :class:`Word`, :class:`Literal`, and :class:`And` elements (the :class:`'+'` operators create :class:`And` expressions, and the strings are auto-converted to :class:`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 :class:`ParseResults` object returned from :class:`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 Getting Started - ----------------- Visit the classes :class:`ParserElement` and :class:`ParseResults` to see the base classes that most other pyparsing classes inherit from. Use the docstrings for examples of how to: - construct literal match expressions from :class:`Literal` and :class:`CaselessLiteral` classes - construct character word-group expressions using the :class:`Word` class - see how to create repetitive expressions using :class:`ZeroOrMore` and :class:`OneOrMore` classes - use :class:`'+'`, :class:`'|'`, :class:`'^'`, and :class:`'&'` operators to combine simple expressions into more complex ones - associate names with your parsed results using :class:`ParserElement.setResultsName` - find some helpful expression short-cuts like :class:`delimitedList` and :class:`oneOf` - find more useful common expressions in the :class:`pyparsing_common` namespace class z2.4.0z07 Apr 2019 18:28 UTCz*Paul McGuire N)ref)datetime) filterfalse) ifilterfalse)RLock)Iterable)MutableMapping) OrderedDict)SimpleNamespacec@s eZdZdS)r N)__name__ __module__ __qualname__rr-/usr/lib/python3.6/site-packages/pyparsing.pyr sr a  A cross-version compatibility configuration for pyparsing features that will be released in a future version. By setting values in this configuration to True, those features can be enabled in prior versions for compatibility development and testing. - collect_all_And_tokens - flag to enable fix for Issue #63 that fixes erroneous grouping of results names when an And expression is nested within an Or or MatchFirst; set to True to enable bugfix to be released in pyparsing 2.4 T __version____versionTime__ __author__ __compat__AndCaselessKeywordCaselessLiteral CharsNotInCombineDictEachEmpty FollowedByForward GoToColumnGroupKeywordLineEnd LineStartLiteral PrecededBy MatchFirstNoMatchNotAny OneOrMoreOnlyOnceOptionalOrParseBaseExceptionParseElementEnhanceParseExceptionParseExpressionParseFatalException ParseResultsParseSyntaxException ParserElement QuotedStringRecursiveGrammarExceptionRegexSkipTo StringEnd StringStartSuppressTokenTokenConverterWhiteWordWordEnd WordStart ZeroOrMoreChar 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_commonpyparsing_unicode unicode_setc Cs`t|tr|Syt|Stk rZt|jtjd}td}|jdd|j |SXdS)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)trrrsz_ustr..N) isinstanceunicodestrUnicodeEncodeErrorencodesysgetdefaultencodingr6setParseActiontransformString)objretZ xmlcharrefrrr_ustrs rz6sum len sorted reversed list tuple set any all min maxccs|] }|VqdS)Nr).0yrrr srrcCs>d}dddjD}x"t||D]\}}|j||}q"W|S)z/Escape &, <, >, ", ', etc. in a string of data.z&><"'css|]}d|dVqdS)&;Nr)rsrrrrsz_xml_escape..zamp gt lt quot apos)splitzipreplace)data from_symbols to_symbolsfrom_to_rrr _xml_escapes r 0123456789Z ABCDEFabcdef\ccs|]}|tjkr|VqdS)N)string whitespace)rcrrrrsc@sPeZdZdZdddZeddZdd Zd d Zd d Z dddZ ddZ dS)r,z7base exception class for all parsing runtime exceptionsrNcCs>||_|dkr||_d|_n ||_||_||_|||f|_dS)Nr)locmsgpstr parserElementargs)selfrrrelemrrr__init__szParseBaseException.__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)clsperrr_from_exception sz"ParseBaseException._from_exceptioncCsN|dkrt|j|jS|dkr,t|j|jS|dkrBt|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 rZrIcolumnrWN)rIr)rZrrrIrWAttributeError)ranamerrr __getattr__szParseBaseException.__getattr__cCsd|j|j|j|jfS)Nz"%s (at char %d), (line:%d, col:%d))rrrZr)rrrr__str__ szParseBaseException.__str__cCst|S)N)r)rrrr__repr__#szParseBaseException.__repr__>!z{0} )rr)rr)inspectrgetrecursionlimitrr,appendrWrIformatrr getinnerframes __traceback__set enumeratef_localsgetr3f_codeco_nameaddr r) excdepthrrcallersseenifffrmf_self self_typecoderrrexplainIsH            zParseException.explainN)r)r r r r staticmethodrrrrrr.2sc@seZdZdZdS)r0znuser-throwable exception thrown when inconsistent parse content is found; stops all parsing immediatelyN)r r r rrrrrr0sc@seZdZdZdS)r2zjust like :class:`ParseFatalException`, but thrown internally when an :class:`ErrorStop` ('-' operator) indicates that parsing is to stop immediately because an unbacktrackable syntax error has been found. N)r r r rrrrrr2sc@s eZdZdZddZddZdS)r5ziexception thrown by :class:`ParserElement.validate` if the grammar could be improperly recursive cCs ||_dS)N)parseElementTrace)rparseElementListrrrrsz"RecursiveGrammarException.__init__cCs d|jS)NzRecursiveGrammarException: %s)r)rrrrrsz!RecursiveGrammarException.__str__N)r r r rrrrrrrr5sc@s,eZdZddZddZddZddZd S) _ParseResultsWithOffsetcCs||f|_dS)N)tup)rp1p2rrrrsz _ParseResultsWithOffset.__init__cCs |j|S)N)r)rrrrr __getitem__sz#_ParseResultsWithOffset.__getitem__cCst|jdS)Nr)reprr)rrrrrsz _ParseResultsWithOffset.__repr__cCs|jd|f|_dS)Nr)r)rrrrr setOffsetsz!_ParseResultsWithOffset.setOffsetN)r r r rrrrrrrrrsrc@seZdZdZd[ddZddddefddZdd Zefd d Zd d Z ddZ ddZ ddZ e Z ddZddZddZddZddZereZeZeZn$eZeZeZddZd d!Zd"d#Zd$d%Zd&d'Zd\d(d)Zd*d+Zd,d-Zd.d/Zd0d1Z d2d3Z!d4d5Z"d6d7Z#d8d9Z$d:d;Z%d`` - see :class:`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)robject__new___ParseResults__doinit)rtoklistnameasListmodalretobjrrrrs   zParseResults.__new__c Csb|jrvd|_d|_d|_i|_||_||_|dkr6g}||trP|dd|_n||trft||_n|g|_t |_ |dk o|r^|sd|j|<||t rt |}||_||t dttfo|ddgfks^||tr|g}|r(||trtt|jd||<ntt|dd||<|||_n6y|d||<Wn$tttfk r\|||<YnXdS)NFrr)r_ParseResults__name_ParseResults__parent_ParseResults__accumNames_ParseResults__asList_ParseResults__modallist_ParseResults__toklist_generatorTypedict_ParseResults__tokdictrrr basestringr1rKeyError TypeError IndexError)rrrrrrrrrrsB     $   zParseResults.__init__cCsPt|ttfr|j|S||jkr4|j|ddStdd|j|DSdS)NrrcSsg|] }|dqS)rr)rvrrr sz,ParseResults.__getitem__..r)rrslicerrrr1)rrrrrrs   zParseResults.__getitem__cCs||tr0|jj|t|g|j|<|d}nD||ttfrN||j|<|}n&|jj|tt|dg|j|<|}||trt||_ dS)Nr) rrrrrr rr1wkrefr)rkr rsubrrr __setitem__!s   " zParseResults.__setitem__c Cst|ttfrt|j}|j|=t|trH|dkr:||7}t||d}tt|j|}|jx^|j j D]F\}}x<|D]4}x.t |D]"\}\}} t || | |k||<qWq|WqnWn|j |=dS)Nrr) rrr lenrrrangeindicesreverseritemsrr) rrmylenremovedr occurrencesjr valuepositionrrr __delitem__.s   $zParseResults.__delitem__cCs ||jkS)N)r)rr rrr __contains__CszParseResults.__contains__cCs t|jS)N)rr)rrrr__len__FszParseResults.__len__cCs |j S)N)r)rrrr__bool__GszParseResults.__bool__cCs t|jS)N)iterr)rrrr__iter__IszParseResults.__iter__cCst|jdddS)Nrr)rr)rrrr __reversed__JszParseResults.__reversed__cCs$t|jdr|jjSt|jSdS)Niterkeys)hasattrrr"r)rrrr _iterkeysKs  zParseResults._iterkeyscsfddjDS)Nc3s|]}|VqdS)Nr)rr )rrrrRsz+ParseResults._itervalues..)r$)rr)rr _itervaluesQszParseResults._itervaluescsfddjDS)Nc3s|]}||fVqdS)Nr)rr )rrrrUsz*ParseResults._iteritems..)r$)rr)rr _iteritemsTszParseResults._iteritemscCs t|jS)zVReturns all named result keys (as a list in Python 2.x, as an iterator in Python 3.x).)rr")rrrrkeyskszParseResults.keyscCs t|jS)zXReturns all named result values (as a list in Python 2.x, as an iterator in Python 3.x).)r itervalues)rrrrvaluesoszParseResults.valuescCs t|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)rrrrrsszParseResults.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)rrrrhaskeyswszParseResults.haskeyscOs|s dg}x6|jD]*\}}|dkr2|d|f}qtd|qWt|dtsht|dksh|d|kr|d}||}||=|S|d}|SdS)a Removes and returns item at specified index (default= ``last``). Supports both ``list`` and ``dict`` semantics for ``pop()``. If passed no argument or an integer argument, it will use ``list`` semantics and pop tokens from the list of parsed tokens. If passed a non-integer argument (most likely a string), it will use ``dict`` semantics and pop the corresponding value from any defined results names. A second default return value argument is supported, just as in ``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'] rdefaultrz-pop() got an unexpected keyword argument '%s'Nr)rrrrr)rrkwargsr r indexr defaultvaluerrrpop|s%  zParseResults.popcCs||kr||S|SdS)a[ Returns named result matching the given key, or if there is no such name, then returns the given ``defaultValue`` or ``None`` if no ``defaultValue`` is specified. Similar to ``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 Nr)rkey defaultValuerrrrszParseResults.getcCsZ|jj||xF|jjD]8\}}x.t|D]"\}\}}t||||k||<q,WqWdS)a Inserts new element at location index in the list of parsed tokens. Similar to ``list.insert()``. Example:: print(OneOrMore(Word(nums)).parseString("0 123 321")) # -> ['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)rr/insStrrrr rrrrrr4szParseResults.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)rr)ritemrrrrs zParseResults.appendcCs&t|tr|j|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)rr1__iadd__rextend)ritemseqrrrr8s  zParseResults.extendcCs|jdd=|jjdS)z7 Clear all elements and results names. N)rrclear)rrrrr:s zParseResults.clearc Csfy||Stk rdSX||jkr^||jkrD|j|ddStdd|j|DSndSdS)NrrrcSsg|] }|dqS)rr)rr rrrr sz,ParseResults.__getattr__..r)rrrr1)rrrrrrs  zParseResults.__getattr__cCs|j}||7}|S)N)copy)rotherrrrr__add__szParseResults.__add__cs|jrnt|jfdd|jj}fdd|D}x4|D],\}}|||<t|dtr>t||d_q>W|j|j7_|jj |j|S)Ncs|dkr S|S)Nrr)a)offsetrrrsz'ParseResults.__iadd__..c s4g|],\}}|D]}|t|d|dfqqS)rr)r)rr vlistr ) addoffsetrrr  sz)ParseResults.__iadd__..r) rrrrrr1r rrupdate)rr< otheritemsotherdictitemsr r r)rAr?rr7s    zParseResults.__iadd__cCs&t|tr|dkr|jS||SdS)Nr)rrr;)rr<rrr__radd__+szParseResults.__radd__cCsdt|jt|jfS)Nz(%s, %s))rrr)rrrrr3szParseResults.__repr__cCsddjdd|jDdS)N[z, css(|] }t|trt|nt|VqdS)N)rr1rr)rrrrrr7sz'ParseResults.__str__..])rr)rrrrr6szParseResults.__str__rcCsPg}xF|jD]<}|r"|r"|j|t|tr:||j7}q |jt|q W|S)N)rrrr1 _asStringListr)rsepoutr6rrrrH9s   zParseResults._asStringListcCsdd|jDS)ax 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'] cSs"g|]}t|tr|jn|qSr)rr1r)rresrrrr Ssz'ParseResults.asList..)r)rrrrrDszParseResults.asListcs6tr |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"} cs6t|tr.|jr|jSfdd|DSn|SdS)Ncsg|] }|qSrr)rr )toItemrrr ssz7ParseResults.asDict..toItem..)rr1r,asDict)r)rLrrrLns  z#ParseResults.asDict..toItemc3s|]\}}||fVqdS)Nr)rr r )rLrrrwsz&ParseResults.asDict..)PY_3rr*r)ritem_fnr)rLrrMUs  zParseResults.asDictcCs<t|j}t|jj|_|j|_|jj|j|j|_|S)zG Returns a new copy of a :class:`ParseResults` object. ) r1rrrrrrrBr)rrrrrr;ys  zParseResults.copyFc CsPd}g}tdd|jjD}|d}|s8d}d}d}d} |dk rJ|} n |jrV|j} | sf|rbdSd} |||d| d g7}xt|jD]\} } t| tr| |kr|| j|| |o|dk||g7}n|| jd|o|dk||g7}qd} | |kr|| } | s |rqnd} 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. rcss(|] \}}|D]}|d|fVqqdS)rNr)rr r@r rrrrsz%ParseResults.asXML..z rNITEM<>z.z %s%s- %s: z rcss|]}t|tVqdS)N)rr1)rvvrrrrsz %s%s[%d]: %s%s%sr) rrrr,sortedrrr1dumpranyrr) rrVrfullrJNLrr r rrcrrrres,   4.zParseResults.dumpcOstj|jf||dS)a# Pretty-printer for parsed results as a list, using the `pprint `_ module. Accepts additional positional or keyword args as defined for `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)rrr.rrrri szParseResults.pprintcCs.|j|jj|jdk r|jp d|j|jffS)N)rrr;rrr)rrrr __getstate__<s zParseResults.__getstate__cCsN|d|_|d\|_}}|_i|_|jj||dk rDt||_nd|_dS)Nrr)rrrrrBr r)rstatera inAccumNamesrrr __setstate__Cs   zParseResults.__setstate__cCs|j|j|j|jfS)N)rrrr)rrrr__getnewargs__PszParseResults.__getnewargs__cCstt|t|jS)N)rrrr')rrrrrSszParseResults.__dir__)NNTT)N)r)NFrT)rrT)4r r r rrrrrrrrrr __nonzero__r r!r$r%r&rNr'r)rr"r(r*r,r1rr4rr8r:rr=r7rErrrHrrMr;rSr_rbrerirjrmrnrrrrrr1sh* ' 7  $ =( 0 cCsF|}d|kot|knr4||ddkr4dS||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 :class:`ParserElement.parseString` for more information on parsing strings containing ```` 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. rrr)rrfind)rstrgrrrrrIXs 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 :class:`ParserElement.parseString` for more information on parsing strings containing ```` 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. rrr)count)rrqrrrrZfs cCsF|jdd|}|jd|}|dkr2||d|S||ddSdS)zfReturns the line of text containing loc within a string, counting newlines as line separators. rrrN)rpfind)rrqlastCRnextCRrrrrWrs  cCs8tdt|dt|dt||t||fdS)NzMatch z at loc z(%d,%d))printrrZrI)instringrexprrrr_defaultStartDebugAction|srycCs$tdt|dt|jdS)NzMatched z -> )rvrrr)rwstartlocendlocrxtoksrrr_defaultSuccessDebugActionsr}cCstdt|dS)NzException raised:)rvr)rwrrxrrrr_defaultExceptionDebugActionsr~cGsdS)zG'Do-nothing' debug action, to suppress debugging output during parsing.Nr)rrrrrasrc stkrfddSdgdgtdddkrFddd }dd d n tj}tjd }|dd d}|d|d|ffdd}d}ytdtdj}Wntk rt}YnX||_|S)Ncs|S)Nr)rlr)funcrrrsz_trim_arity..rFrrcSs8tdkr dnd }tj| |dd|}|ddgS) Nrrrrr)limit)rrr)system_version traceback extract_stack)rr? frame_summaryrrrrsz"_trim_arity..extract_stackcSs$tj||d}|d}|ddgS)N)rrrr)r extract_tb)tbrframesrrrrrsz_trim_arity..extract_tb)rrcsxy |dd}dd<|Stk rdr>n4z.tjd}|dddddksjWd~Xdkrdd7<wYqXqWdS)NrTrr)rrr)rrexc_info)rrr)r foundArityrrmaxargspa_call_line_synthrrrs"  z_trim_arity..wrapperzr __class__)rr)r)rr) singleArgBuiltinsrrrrgetattrr Exceptionr)rrr LINE_DIFF this_liner func_namer)rrrrrrr _trim_aritys*   rcseZdZdZdZdZeddZeddZddd Z d d Z d d Z dddZ dddZ ddZddZddZddZddZddZddd Zd!d"Zdd#d$Zd%d&Zd'd(ZGd)d*d*eZed+k rGd,d-d-eZnGd.d-d-eZiZeZd/d/gZ dd0d1Z!eZ"ed2d3Z#dZ$edd5d6Z%dd7d8Z&e'dfd9d:Z(d;d<Z)e'fd=d>Z*e'dfd?d@Z+dAdBZ,dCdDZ-dEdFZ.dGdHZ/dIdJZ0dKdLZ1dMdNZ2dOdPZ3dQdRZ4dSdTZ5dUdVZ6dWdXZ7dYdZZ8dd[d\Z9d]d^Z:d_d`Z;dadbZdgdhZ?ddidjZ@dkdlZAdmdnZBdodpZCdqdrZDgfdsdtZEddudvZFfdwdxZGdydzZHd{d|ZId}d~ZJddZKdddZLdddZMZNS)r3z)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)r3DEFAULT_WHITE_CHARS)charsrrrsetDefaultWhitespaceCharssz'ParserElement.setDefaultWhitespaceCharscCs |t_dS)ah 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)r3_literalStringClass)rrrrinlineLiteralsUsingsz!ParserElement.inlineLiteralsUsingcCst|_d|_d|_d|_||_d|_ttj |_ d|_ d|_ d|_ t|_d|_d|_d|_d|_d|_d|_d|_d|_d|_dS)NTFr)NNN)r parseAction failActionstrRepr resultsName saveAsListskipWhitespacerr3r whiteCharscopyDefaultWhiteCharsmayReturnEmptykeepTabs ignoreExprsdebug streamlined mayIndexErrorerrmsg modalResults debugActionsre callPreparse callDuringTry)rsavelistrrrr s( zParserElement.__init__cCs<tj|}|jdd|_|jdd|_|jr8tj|_|S)a% Make a copy of this :class:`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 ``expr.copy()`` is just ``expr()``:: integerM = integer().addParseAction(lambda toks: toks[0]*1024*1024) + Suppress("M") N)r;rrrr3rr)rcpyrrrr;"s  zParserElement.copycCs*||_d|j|_t|dr&|j|j_|S)a_ 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)rrr#rr)rrrrrsetName?s    zParserElement.setNamecCs4|j}|jdr"|dd}d}||_| |_|S)aO Define name for referencing matching tokens as a nested attribute of the returned parse results. NOTE: this returns a *copy* of the original :class:`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, ``expr("name")`` in place of ``expr.setResultsName("name")`` - see :class:`__call__`. Example:: date_str = (integer.setResultsName("year") + '/' + integer.setResultsName("month") + '/' + integer.setResultsName("day")) # equivalent form: date_str = integer("year") + '/' + integer("month") + '/' + integer("day") *NrTr)r;endswithrr)rrlistAllMatchesnewselfrrrsetResultsNameNs  zParserElement.setResultsNameTcs@|r&|jdfdd }|_||_nt|jdr<|jj|_|S)zMethod to invoke the Python pdb debugger when this element is about to be parsed. Set ``breakFlag`` to True to enable, False to disable. Tcsddl}|j||||S)Nr)pdb set_trace)rwr doActions callPreParser) _parseMethodrrbreakerrsz'ParserElement.setBreak..breaker_originalParseMethod)TT)_parserr#)r breakFlagrr)rrsetBreakks  zParserElement.setBreakcOs&tttt||_|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 ``fn(s,loc,toks)`` , ``fn(loc,toks)`` , ``fn(toks)`` , or just ``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 :class:`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= ``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 :class:`parseString for more information on parsing strings containing ```` 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)rmaprrrr)rfnsr.rrrr}s%zParserElement.setParseActioncOs4|jtttt|7_|jp,|jdd|_|S)z Add one or more parse actions to expression's list of parse actions. See :class:`setParseAction`. See examples in :class:`copy`. rF)rrrrrr)rrr.rrraddParseActionszParserElement.addParseActioncsj|jdd|jddrtntx0|D](tfdd}|jj|q&W|jpb|jdd|_|S)aAdd a boolean predicate function to expression's list of parse actions. See :class:`setParseAction` for function call signatures. Unlike ``setParseAction``, functions passed to ``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 conditionfatalFcs t|||s||dS)N)r+)rrr)exc_typefnrrrpasz&ParserElement.addCondition..par)rr0r.rrrr)rrr.rr)rrrr 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 ``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 :class:`ParseFatalException` if it is desired to stop parsing immediately.)r)rrrrr setFailActions zParserElement.setFailActionc CsZd}xP|rTd}xB|jD]8}yx|j||\}}d}qWWqtk rLYqXqWqW|S)NTF)rrr.)rrwr exprsFoundedummyrrr_skipIgnorabless  zParserElement._skipIgnorablescCsL|jr|j||}|jrH|j}t|}x ||krF|||krF|d7}q(W|S)Nr)rrrrr)rrwrwtinstrlenrrrpreParses  zParserElement.preParsecCs|gfS)Nr)rrwrrrrrrszParserElement.parseImplcCs|S)Nr)rrwr tokenlistrrr postParseszParserElement.postParsec*Cs`|j}|s|jr|jdr,|jd||||rD|jrD|j||}n|}|}yDy|j|||\}}Wn(tk rt|t||j |YnXWnXt k r} z<|jdr|jd|||| |jr|j|||| WYdd} ~ XnXn|o|jr|j||}n|}|}|j s$|t|krhy|j|||\}}Wn*tk rdt|t||j |YnXn|j|||\}}|j |||}t ||j|j|jd} |jr0|s|jr0|ryx|jD]} y| ||| }Wn6tk r} ztd} | | _| WYdd} ~ XnX|dk r|| k rt ||j|jo@t|t tf|jd} qWWnFt k r} z(|jdr|jd|||| WYdd} ~ XnXnx|jD]} y| ||| }Wn6tk r} ztd} | | _| WYdd} ~ XnX|dk r|| k rt ||j|jo t|t tf|jd} qW|rX|jdrX|jd||||| || fS)Nrr)rrz exception raised in parse actionr)rrrrrrrr.rrr,rrr1rrrrr __cause__rr)rrwrrr debuggingpreloc tokensStarttokenserr retTokensrparse_action_excrrrrrs         zParserElement._parseNoCachec Cs>y|j||dddStk r8t|||j|YnXdS)NF)rr)rr0r.r)rrwrrrrtryParseMszParserElement.tryParsec Cs2y|j||Wnttfk r(dSXdSdS)NFT)rr.r)rrwrrrr canParseNextSs zParserElement.canParseNextc@seZdZddZdS)zParserElement._UnboundedCachecs~it|_fdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_dS) Ncs j|S)N)r)rr2)cache not_in_cacherrr`sz3ParserElement._UnboundedCache.__init__..getcs ||<dS)Nr)rr2r)rrrrcsz3ParserElement._UnboundedCache.__init__..setcs jdS)N)r:)r)rrrr:fsz5ParserElement._UnboundedCache.__init__..clearcstS)N)r)r)rrr cache_lenisz9ParserElement._UnboundedCache.__init__..cache_len)rrtypes MethodTyperrr:r)rrrr:rr)rrrr\s    z&ParserElement._UnboundedCache.__init__N)r r r rrrrr_UnboundedCache[srNc@seZdZddZdS)zParserElement._FifoCachecst|_tfdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_dS) Ncs j|S)N)r)rr2)rrrrrxsz.ParserElement._FifoCache.__init__..getc sB||<x4tkr.setcs jdS)N)r:)r)rrrr:sz0ParserElement._FifoCache.__init__..clearcstS)N)r)r)rrrrsz4ParserElement._FifoCache.__init__..cache_len) rr _OrderedDictrrrrr:r)rrrrr:rr)rrrrrss   z!ParserElement._FifoCache.__init__N)r r r rrrrr _FifoCachersrc@seZdZddZdS)zParserElement._FifoCachecst|_itjgfdd}fdd}fdd}fdd}tj|||_tj|||_tj|||_tj|||_ dS) Ncs j|S)N)r)rr2)rrrrrsz.ParserElement._FifoCache.__init__..getcs8||<x tkr(jjdq Wj|dS)N)rr1popleftr)rr2r)rkey_fiforrrrsz.ParserElement._FifoCache.__init__..setcsjjdS)N)r:)r)rrrrr:sz0ParserElement._FifoCache.__init__..clearcstS)N)r)r)rrrrsz4ParserElement._FifoCache.__init__..cache_len) rr collectionsdequerrrrr:r)rrrrr:rr)rrrrrrs   z!ParserElement._FifoCache.__init__N)r r r rrrrrrsrc Csd\}}|||||f}tjtj}|j|} | |jkrtj|d7<y|j||||} Wn8tk r} z|j|| j | j WYdd} ~ XqX|j|| d| dj f| Sn4tj|d7<t | t r| | d| dj fSWdQRXdS)Nrr)rr)r3packrat_cache_lock packrat_cacherrpackrat_cache_statsrr,rrrr;rr) rrwrrrHITMISSlookuprrrrrr _parseCaches$   zParserElement._parseCachecCs(tjjdgttjtjdd<dS)Nr)r3rr:rrrrrr resetCaches zParserElement.resetCachecCs8tjs4dt_|dkr tjt_n tj|t_tjt_dS)aEnables "packrat" parsing, which adds memoizing to the parsing logic. Repeated parse attempts at the same string location (which happens often in many complex grammars) can immediately return a cached value, instead of re-executing parsing/validating code. Memoizing is done of both valid results and parsing exceptions. Parameters: - cache_size_limit - (default= ``128``) - if an integer value is provided will limit the size of the packrat cache; if None is passed, then the cache size will be unbounded; if 0 is passed, the cache will be effectively disabled. This speedup may break existing programs that use parse actions that have side-effects. For this reason, packrat parsing is disabled when you first import pyparsing. To activate the packrat feature, your program must call the class method :class:`ParserElement.enablePackrat`. For best results, call ``enablePackrat()`` immediately after importing pyparsing. Example:: import pyparsing pyparsing.ParserElement.enablePackrat() TN)r3_packratEnabledrrrrr)cache_size_limitrrr enablePackrats   zParserElement.enablePackratcCstj|js|jx|jD] }|jqW|js<|j}y<|j|d\}}|rv|j||}t t }|j||Wn0t k r}ztj rn|WYdd}~XnX|SdS)a1 Execute the parse expression with the given string. This is the main interface to the client code, once the complete expression has been built. If you want the grammar to require that the entire input string be successfully parsed, then set ``parseAll`` to True (equivalent to ending the grammar with ``StringEnd()``). Note: ``parseString`` implicitly calls ``expandtabs()`` on the input string, in order to report proper column numbers in parse actions. If the input string contains tabs and the grammar uses parse actions that use the ``loc`` argument to index into the string being parsed, you can ensure you have a consistent view of the input string by: - calling ``parseWithTabs`` on your grammar before calling ``parseString`` (see :class:`parseWithTabs`) - define your parse action using the full ``(s,loc,toks)`` signature, and reference the input string using the parse action's ``s`` argument - explictly expand the tabs in your input string before calling ``parseString`` Example:: Word('a').parseString('aaaaabaaa') # -> ['aaaaa'] Word('a').parseString('aaaaabaaa', parseAll=True) # -> Exception: Expected end of text rN) r3rr streamlinerr expandtabsrrrr8r,verbose_stacktrace)rrwparseAllrrrserrrr parseStrings$    zParserElement.parseStringccs@|js|jx|jD] }|jqW|js8t|j}t|}d}|j}|j}t j d} yx||kon| |kry |||} ||| dd\} } Wnt k r| d}Yq`X| |kr| d7} | | | fV|r|||} | |kr| }q|d7}n| }q`| d}q`WWn4t k r:}zt j r&n|WYdd}~XnXdS)ao Scan the input string for expression matches. Each match will return the matching tokens, start location, and end location. May be called with optional ``maxMatches`` argument, to clip scanning after 'n' matches are found. If ``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 :class:`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 rF)rrN)rrrrrrrrrr3rr.r,r)rrw maxMatchesoverlaprrr preparseFnparseFnmatchesrnextLocrnextlocrrrr scanString(sB       zParserElement.scanStringcCsg}d}d|_yxh|j|D]Z\}}}|j||||rrt|trT||j7}nt|trh||7}n |j||}qW|j||ddd|D}djtt t |St k r}zt j rȂn|WYdd}~XnXdS)a[ Extension to :class:`scanString`, to modify matching text with modified tokens that may be returned from a parse action. To use ``transformString``, define a grammar and attach a parse action to it that modifies the returned token list. Invoking ``transformString()`` on a target string will then scan for matches, and replace the matched text patterns according to the logic in the parse action. ``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|qSrr)rorrrr sz1ParserElement.transformString..r)rr rrr1rrrrr_flattenr,r3r)rrwrJlastErrrrrrrrps(    zParserElement.transformStringcCsPytdd|j||DStk rJ}ztjr6n|WYdd}~XnXdS)a Another extension to :class:`scanString`, simplifying the access to the tokens found to match the given parse expression. May be called with optional ``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|]\}}}|qSrr)rrrrrrrr sz.ParserElement.searchString..N)r1r r,r3r)rrwrrrrr searchStrings zParserElement.searchStringc csXd}d}x<|j||dD]*\}}}|||V|r>|dV|}qW||dVdS)aR Generator method to split a string using the given expression as a separator. May be called with optional ``maxsplit`` argument, to limit the number of splits; and the optional ``includeSeparators`` argument (default= ``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', ''] r)rN)r ) rrwmaxsplitincludeSeparatorssplitslastrrrrrrrs zParserElement.splitcCsFt|trtj|}t|ts:tjdt|tdddSt||gS)a Implementation of + operator - returns :class:`And`. Adding strings to a ParserElement converts them to :class:`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 ParserElementr) stacklevelN) rrr3rwarningswarnr SyntaxWarningr)rr<rrrr=s    zParserElement.__add__cCsBt|trtj|}t|ts:tjdt|tdddS||S)z` Implementation of + operator when left operand is not a :class:`ParserElement` z4Cannot combine element of type %s with ParserElementr)rN)rrr3rrrrr)rr<rrrrEs    zParserElement.__radd__cCsJt|trtj|}t|ts:tjdt|tdddS|tj |S)zT Implementation of - operator, returns :class:`And` with error stop z4Cannot combine element of type %s with ParserElementr)rN) rrr3rrrrrr _ErrorStop)rr<rrr__sub__s    zParserElement.__sub__cCsBt|trtj|}t|ts:tjdt|tdddS||S)z` Implementation of - operator when left operand is not a :class:`ParserElement` z4Cannot combine element of type %s with ParserElementr)rN)rrr3rrrrr)rr<rrr__rsub__s    zParserElement.__rsub__cst|tr|d}}nt|tr|d dd}|ddkrHd|df}t|dtr|ddkr|ddkrvtS|ddkrtS|dtSnJt|dtrt|dtr|\}}||8}ntdt|dt|dntdt||dkr td|dkrtd||ko2dknrBtd |rfd d |r|dkrt|}ntg||}n|}n|dkr}ntg|}|S) a Implementation of * operator, allows use of ``expr * 3`` in place of ``expr + expr + expr``. Expressions may also me multiplied by a 2-integer tuple, similar to ``{min,max}`` multipliers in regular expressions. Tuples may also include ``None`` as in: - ``expr*(n,None)`` or ``expr*(n,)`` is equivalent to ``expr*n + ZeroOrMore(expr)`` (read as "at least n instances of ``expr``") - ``expr*(None,n)`` is equivalent to ``expr*(0,n)`` (read as "0 to n instances of ``expr``") - ``expr*(None,None)`` is equivalent to ``ZeroOrMore(expr)`` - ``expr*(1,None)`` is equivalent to ``OneOrMore(expr)`` Note that ``expr*(None,n)`` does not raise an exception if more than n exprs exist in the input stream; that is, ``expr*(None,n)`` does not enforce a maximum number of expr occurrences. If this behavior is desired, then write ``expr*(None,n) + ~expr`` rNrrz7cannot 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)cs(|dkrt|dStSdS)Nr)r*)n)makeOptionalListrrrrAsz/ParserElement.__mul__..makeOptionalList)NN) rrtuplerAr(rr ValueErrorr)rr< minElements optElementsrr)rrr__mul__sD             zParserElement.__mul__cCs |j|S)N)r)rr<rrr__rmul__TszParserElement.__rmul__cCsFt|trtj|}t|ts:tjdt|tdddSt||gS)zL Implementation of | operator - returns :class:`MatchFirst` z4Cannot combine element of type %s with ParserElementr)rN) rrr3rrrrrr%)rr<rrr__or__Ws    zParserElement.__or__cCsBt|trtj|}t|ts:tjdt|tdddS||BS)z` Implementation of | operator when left operand is not a :class:`ParserElement` z4Cannot combine element of type %s with ParserElementr)rN)rrr3rrrrr)rr<rrr__ror__cs    zParserElement.__ror__cCsFt|trtj|}t|ts:tjdt|tdddSt||gS)zD Implementation of ^ operator - returns :class:`Or` z4Cannot combine element of type %s with ParserElementr)rN) rrr3rrrrrr+)rr<rrr__xor__os    zParserElement.__xor__cCsBt|trtj|}t|ts:tjdt|tdddS||AS)z` Implementation of ^ operator when left operand is not a :class:`ParserElement` z4Cannot combine element of type %s with ParserElementr)rN)rrr3rrrrr)rr<rrr__rxor__{s    zParserElement.__rxor__cCsFt|trtj|}t|ts:tjdt|tdddSt||gS)zF Implementation of & operator - returns :class:`Each` z4Cannot combine element of type %s with ParserElementr)rN) rrr3rrrrrr)rr<rrr__and__s    zParserElement.__and__cCsBt|trtj|}t|ts:tjdt|tdddS||@S)z` Implementation of & operator when left operand is not a :class:`ParserElement` z4Cannot combine element of type %s with ParserElementr)rN)rrr3rrrrr)rr<rrr__rand__s    zParserElement.__rand__cCst|S)zH Implementation of ~ operator - returns :class:`NotAny` )r')rrrr __invert__szParserElement.__invert__cCs|dk r|j|S|jSdS)a Shortcut for :class:`setResultsName`, with ``listAllMatches=False``. If ``name`` is given with a trailing ``'*'`` character, then ``listAllMatches`` will be passed as ``True``. If ``name` is omitted, same as calling :class:`copy`. Example:: # these are equivalent userdata = Word(alphas).setResultsName("name") + Word(nums+"-").setResultsName("socsecno") userdata = Word(alphas)("name") + Word(nums+"-")("socsecno") N)rr;)rrrrr__call__s zParserElement.__call__cCst|S)z Suppresses the output of this :class:`ParserElement`; useful to keep punctuation from cluttering up returned output. )r:)rrrrsuppressszParserElement.suppresscCs d|_|S)a Disables the skipping of whitespace before matching the characters in the :class:`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)rrrrleaveWhitespaceszParserElement.leaveWhitespacecCsd|_||_d|_|S)z8 Overrides the default whitespace chars TF)rrr)rrrrrsetWhitespaceCharssz ParserElement.setWhitespaceCharscCs d|_|S)z Overrides default behavior to expand ````s to spaces before parsing the input string. Must be called before ``parseString`` when the input grammar contains elements that match ```` characters. T)r)rrrr parseWithTabsszParserElement.parseWithTabscCsLt|trt|}t|tr4||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'] )rrr:rrr;)rr<rrrignores   zParserElement.ignorecCs"|pt|p t|ptf|_d|_|S)zT Enable display of debugging messages while doing pattern matching. T)ryr}r~rr)r startAction successActionexceptionActionrrrsetDebugActionss  zParserElement.setDebugActionscCs|r|jtttnd|_|S)a Enable display of debugging messages while doing pattern matching. Set ``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 :class:`setDebugActions`. Prior to attempting to match the ``wd`` expression, the debugging message ``"Match at loc (,)"`` is shown. Then if the parse succeeds, a ``"Matched"`` message is shown, or an ``"Exception raised"`` message is shown. Also note the use of :class:`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 :class:`Word` expression without calling ``setName`` is ``"W:(ABCD...)"``. F)r1ryr}r~r)rflagrrrsetDebugs%zParserElement.setDebugcCs|jS)N)r)rrrrr( szParserElement.__str__cCst|S)N)r)rrrrr+ szParserElement.__repr__cCsd|_d|_|S)NT)rr)rrrrr. szParserElement.streamlinecCsdS)Nr)rrrrrcheckRecursion3 szParserElement.checkRecursioncCs|jgdS)zj Check defined expressions for valid structure, check for infinite recursive definitions. N)r4)r validateTracerrrvalidate6 szParserElement.validatecCsy |j}Wn2tk r>t|d}|j}WdQRXYnXy |j||Stk r|}ztjrhn|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)readropenrr,r3r)rfile_or_filenamer file_contentsfrrrr parseFile< s   zParserElement.parseFilecsHt|tr"||kp t|t|kSt|tr6|j|Stt||kSdS)N)rr3varsrrsuper)rr<)rrr__eq__P s    zParserElement.__eq__cCs ||k S)Nr)rr<rrr__ne__X szParserElement.__ne__cCs tt|S)N)hashid)rrrr__hash__[ szParserElement.__hash__cCs||kS)Nr)rr<rrr__req__^ szParserElement.__req__cCs ||k S)Nr)rr<rrr__rne__a szParserElement.__rne__c Cs0y|jt||ddStk r*dSXdS)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= ``True``) - flag to pass to :class:`parseString` when running tests Example:: expr = Word(nums) assert expr.matches("100") )rTFN)rrr,)r testStringrrrrrd s zParserElement.matches#cCst|tr"tttj|jj}t|tr4t|}g}g} d} xB|D]8} |dk rb|j | dsl| rx| rx| j | qH| s~qHdj | | g} g} ytdj t djt} d}| j| j|} |j| |d}| j |j|d| o| } |dk rZy&|| |}|dk r| j t|Wn@tk rX}z"| j d j|jt|j|WYdd}~XnXWntk r }zt|trd nd }d| kr| j t|j| | j d t|j| d d|n| j d |jd|| j dt|| o|} |}WYdd}~XnDtk rN}z&| j dt|| o8|} |}WYdd}~XnX|rt|rf| j d tdj | |j | |fqHW| |fS)a 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= ``True``) - flag to pass to :class:`parseString` when running tests - comment - (default= ``'#'``) - expression for indicating embedded comments in the test string; pass None to disable comment filtering - fullDump - (default= ``True``) - dump results as list followed by results names in nested outline; if False, only dump nested list - printResults - (default= ``True``) prints test output to stdout - failureTests - (default= ``False``) indicates if these tests are expected to fail parsing - postParse - (default= ``None``) optional callback for successful parse results; called as `fn(test_string, parse_results)` and returns a string to be added to the test output Returns: a (success, results) tuple, where success indicates that all tests succeeded (or failed if ``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'.) TNFrz\nu)r)rgz{0} failed: {1}: {2}z(FATAL)rrrrzFAIL: zFAIL-EXCEPTION: )rrrrrrrstrip splitlinesr#rrrrrlr-rirlstriprrerrr rr,r0rWrrIrv)rtestsrcommentfullDump printResults failureTestsr allResultscommentssuccessrrJrhBOMresultpp_valuerrrrrrrrunTestsx s`]       2 $   zParserElement.runTests)F)F)T)T)TT)TT)r)F)N)T)F)T)TrHTTFN)Or r r rrrrrrrr;rrrrrrrrrrrrrrrrrrrrrrrrrrrr_MAX_INTr rr rr=rErrrr r!r"r#r$r%r&r'r(r)r*r+r,r-r1r3rrrr4r6r=r@rArDrErFrrW __classcell__rr)rrr3s     )     S   " 4H.    D           +    cs eZdZdZfddZZS)r;zYAbstract :class:`ParserElement` subclass, for defining atomic matching patterns. cstt|jdddS)NF)r)r?r;r)r)rrrr szToken.__init__)r r r rrrYrr)rrr; scs eZdZdZfddZZS)rz'An empty token, will always match. cs$tt|jd|_d|_d|_dS)NrTF)r?rrrrr)r)rrrr szEmpty.__init__)r r r rrrYrr)rrr scs*eZdZdZfddZdddZZS)r&z#A token that will never match. cs*tt|jd|_d|_d|_d|_dS)Nr&TFzUnmatchable token)r?r&rrrrr)r)rrrr! s zNoMatch.__init__TcCst|||j|dS)N)r.r)rrwrrrrrr( szNoMatch.parseImpl)T)r r r rrrrYrr)rrr& s cs*eZdZdZfddZdddZZS)r#aToken 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 :class:`CaselessLiteral`. For keyword matching (force word break before and after the matched string), use :class:`Keyword` or :class:`CaselessKeyword`. c stt|j||_t||_y|d|_Wn*tk rVtj dt ddt |_ YnXdt |j|_d|j|_d|_d|_dS)Nrz2null string passed to Literal; use Empty() insteadr)rz"%s"z Expected F)r?r#rmatchrmatchLenfirstMatchCharrrrrrrrrrrr)r matchString)rrrr: s    zLiteral.__init__TcCsJ|||jkr6|jdks&|j|j|r6||j|jfSt|||j|dS)Nr)r\r[ startswithrZr.r)rrwrrrrrrM szLiteral.parseImpl)T)r r r rrrrYrr)rrr#, s  csLeZdZdZedZdfdd Zddd Zfd d Ze d d Z Z S)r aToken to exactly match a specified string as a keyword, that is, it must be immediately followed by a non-keyword character. Compare with :class:`Literal`: - ``Literal("if")`` will match the leading ``'if'`` in ``'ifAndOnlyIf'``. - ``Keyword("if")`` will not; it will only match the leading ``'if'`` in ``'if x=1'``, or ``'if(y==2)'`` Accepts two optional constructor arguments in addition to the keyword string: - ``identChars`` is a string of characters that would be valid identifier characters, defaulting to all alphanumerics + "_" and "$" - ``caseless`` allows case-insensitive matching, default is ``False``. Example:: Keyword("start").parseString("start") # -> ['start'] Keyword("start").parseString("starting") # -> Exception For case-insensitive matching, use :class:`CaselessKeyword`. z_$NFc stt|j|dkrtj}||_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() insteadr)rz"%s"z Expected F)r?r rDEFAULT_KEYWORD_CHARSrZrr[r\rrrrrrrrcaselessupper caselessmatchr identChars)rr]rcr`)rrrrp s&    zKeyword.__init__TcCs|jr|||||jj|jkr|t||jksL|||jj|jkr|dksj||dj|jkr||j|jfSnv|||jkr|jdks|j|j|r|t||jks|||j|jkr|dks||d|jkr||j|jfSt |||j |dS)Nrr) r`r[rarbrrcrZr\r^r.r)rrwrrrrrr s*&zKeyword.parseImplcstt|j}tj|_|S)N)r?r r;r_rc)rr)rrrr; sz Keyword.copycCs |t_dS)z,Overrides the default Keyword chars N)r r_)rrrrsetDefaultKeywordChars szKeyword.setDefaultKeywordChars)NF)T) r r r rrCr_rrr;rrdrYrr)rrr U s   cs*eZdZdZfddZdddZZS)rafToken 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 :class:`CaselessKeyword`.) cs6tt|j|j||_d|j|_d|j|_dS)Nz'%s'z Expected )r?rrra returnStringrr)rr])rrrr s zCaselessLiteral.__init__TcCs@||||jj|jkr,||j|jfSt|||j|dS)N)r[rarZrer.r)rrwrrrrrr szCaselessLiteral.parseImpl)T)r r r rrrrYrr)rrr s  cs"eZdZdZdfdd ZZS)rz Caseless version of :class:`Keyword`. Example:: OneOrMore(CaselessKeyword("CMD")).parseString("cmd CMD Cmd10") # -> ['CMD', 'CMD'] (Contrast with example for :class:`CaselessLiteral`.) Ncstt|j||dddS)NT)r`)r?rr)rr]rc)rrrr szCaselessKeyword.__init__)N)r r r rrrYrr)rrr s cs,eZdZdZdfdd Zd ddZZS) r|aA variation on :class:`Literal` which matches "close" matches, that is, strings with at most 'n' mismatching characters. :class:`CloseMatch` takes parameters: - ``match_string`` - string to be matched - ``maxMismatches`` - (``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: - ``mismatches`` - a list of the positions within the match_string where mismatches were found - ``original`` - the original match_string used to compare against the input string If ``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']}) rcsBtt|j||_||_||_d|j|jf|_d|_d|_dS)Nz&Expected %r (with up to %d mismatches)F) r?r|rr match_string maxMismatchesrrr)rrfrg)rrrr szCloseMatch.__init__TcCs|}t|}|t|j}||kr|j}d}g} |j} xtt||||jD]0\}} | \} } | | krP| j|t| | krPPqPW|d}t|||g}|j|d<| |d<||fSt|||j|dS)Nrroriginal mismatches) rrfrgrrrr1r.r)rrwrrstartrmaxlocrfmatch_stringlocrirgs_msrcmatresultsrrrr s("   zCloseMatch.parseImpl)r)T)r r r rrrrYrr)rrr| s  cs8eZdZdZd fdd Zdd d Zfd d ZZS)r>aV 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 ``min`` is 1 (a minimum value < 1 is not valid); the default values for ``max`` and ``exact`` are 0, meaning no maximum or exact length restriction. An optional ``excludeChars`` parameter can list characters that might be found in the input ``bodyChars`` string; useful to define a word of all printables except for one or two characters, for instance. :class:`srange` is useful for defining custom character set strings for defining ``Word`` expressions, using range notation from regular expression character sets. A common mistake is to use :class:`Word` to match a specific literal string, as in ``Word("Address")``. Remember that :class:`Word` uses the string argument to define *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 :class:`Literal` or :class:`Keyword`. pyparsing includes helper strings for building Words: - :class:`alphas` - :class:`nums` - :class:`alphanums` - :class:`hexnums` - :class:`alphas8bit` (alphabetic characters in ASCII range 128-255 - accented, tilded, umlauted, etc.) - :class:`punc8bit` (non-alphabetic characters in ASCII range 128-255 - currency, symbols, superscripts, diacriticals, etc.) - :class:`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=",") NrrFc stt|jrNtdjfdd|D}|rNdjfdd|D}||_t||_|rt||_t||_n||_t||_|dk|_ |dkrt d||_ |dkr||_ nt |_ |dkr||_ ||_ t||_d|j|_d |_||_d |j|jkr|dkr|dkr|dkr|j|jkr@d t|j|_nHt|jdkrnd tj|jt|jf|_nd t|jt|jf|_|jrd|jd|_ytj|j|_Wntk rd|_YnXdS)Nrc3s|]}|kr|VqdS)Nr)rr) excludeCharsrrr@ sz Word.__init__..c3s|]}|kr|VqdS)Nr)rr)rqrrrB srrzZcannot specify a minimum length < 1; use Optional(Word()) if zero-length word is permittedz Expected Frz[%s]+z%s[%s]*z [%s][%s]*z\b)r?r>rrr initCharsOrig initChars bodyCharsOrig bodyChars maxSpecifiedrminLenmaxLenrXrrrr asKeyword_escapeRegexRangeCharsreStringrrescapecompiler)rrsruminmaxexactryrq)r)rqrr< sV      0 z Word.__init__Tc CsH|jr<|jj||}|s(t|||j||j}||jfS|||jkrZt|||j||}|d7}t|}|j}||j }t ||}x ||kr|||kr|d7}qWd} |||j krd} n`|j r||kr|||krd} n@|j r"|dkr||d|ks||kr"|||kr"d} | r8t|||j|||||fS)NrFTr)rrZr.rendgrouprsrrurxr~rwrvry) rrwrrrUrjr bodycharsrkthrowExceptionrrrrs s6    4zWord.parseImplc stytt|jStk r"YnX|jdkrndd}|j|jkr^d||j||jf|_nd||j|_|jS)NcSs$t|dkr|dddS|SdS)Nz...)r)rrrr charsAsStr s z Word.__str__..charsAsStrz W:(%s,%s)zW:(%s))r?r>rrrrrrt)rr)rrrr s  z Word.__str__)NrrrFN)T)r r r rrrrrYrr)rrr> s47 #cs"eZdZdZdfdd ZZS)rBzA short-cut class for defining ``Word(characters, exact=1)``, when defining a match of any single character in a string of characters. FNcs:tt|j|d||ddt|j|_tj|j|_dS)Nr)rryrqz[%s])r?rBrrzrrr{rr})rcharsetryrq)rrrr sz Char.__init__)FN)r r r rrrYrr)rrrB scsbeZdZdZeejdZdfdd Zddd Z dd d Z dd d Z fddZ ddZ ZS)r6aToken for matching strings that match a given regular expression. Defined with string specifying the regular expression in a form recognized by the stdlib Python `re module `_. If the given regex contains named groups (defined using ``(?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: https://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?{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})") z[A-Z]rFc stt|jt|tr|s,tjdtdd||_||_ yt j |j|j |_ |j|_ Wqt jk rtjd|tddYqXn2t|tjr||_ t||_|_ ||_ ntdt||_d|j|_d|_d|_||_||_|jr|j|_|jr|j|_d S) aThe parameters ``pattern`` and ``flags`` are passed to the ``re.compile()`` function as-is. See the Python `re module `_ module for an explanation of the acceptable patterns and flags. z0null string passed to Regex; use Empty() insteadr)rz$invalid pattern (%s) passed to RegexzCRegex may only be constructed with a string or a compiled RE objectz Expected FTN)r?r6rrrrrrpatternflagsrr}r{ sre_constantserrorcompiledREtyperrrrrrr asGroupListasMatchparseImplAsGroupListrparseImplAsMatch)rrrrr)rrrr s:         zRegex.__init__Tc Csh|jj||}|s"t|||j||j}t|j}|j}|r`x|jD]\}}|||<qLW||fS)N) rrZr.rrr1r groupdictr) rrwrrrUrdr r rrrr s  zRegex.parseImplcCs:|jj||}|s"t|||j||j}|j}||fS)N)rrZr.rrgroups)rrwrrrUrrrrr s zRegex.parseImplAsGroupListcCs6|jj||}|s"t|||j||j}|}||fS)N)rrZr.rr)rrwrrrUrrrrr s zRegex.parseImplAsMatchc sDytt|jStk r"YnX|jdkr>dt|j|_|jS)NzRe:(%s))r?r6rrrrr)r)rrrr s z Regex.__str__csljrtjdtddtjr@tr@tjdtddtjrTfdd}nfdd}j|S)a Return Regex with an attached parse action to transform the parsed result as if called using `re.sub(expr, repl, string) `_. Example:: make_html = Regex(r"(\w+):(.*?):").sub(r"<\1>\2") print(make_html.transformString("h1:main title:")) # prints "

main title

" z-cannot use sub() with Regex(asGroupList=True)r)rz9cannot use sub() with a callable with Regex(asMatch=True)cs|djS)Nr)expand)r)replrrr3 szRegex.sub..pacsjj|dS)Nr)rr)r)rrrrr6 s)rrrr SyntaxErrorrcallabler)rrrr)rrrr s   z Regex.sub)rFF)T)T)T)r r r rrrr}rrrrrrrrYrr)rrr6 s , cs8eZdZdZd fdd Zd ddZfd d ZZS) r4a+ Token for matching strings that are delimited by quoting characters. Defined with the following parameters: - quoteChar - string of one or more characters defining the quote delimiting string - escChar - character to escape quotes, typically backslash (default= ``None`` ) - escQuote - special quote sequence to escape an embedded quote string (such as SQL's ``""`` to escape an embedded ``"``) (default= ``None`` ) - multiline - boolean indicating whether quotes can span multiple lines (default= ``False`` ) - unquoteResults - boolean indicating whether the matched text should be unquoted (default= ``True`` ) - endQuoteChar - string of one or more characters defining the end of the quote delimited string (default= ``None`` => same as quoteChar) - convertWhitespaceEscapes - convert escaped whitespace (``'\t'``, ``'\n'``, etc.) to actual whitespace (default= ``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 sNttj|j}|s0tjdtddt|dkr>|}n"|j}|s`tjdtddt|_t |_ |d_ |_ t |_ |_|_|_|_|rtjtjB_dtjjtj d|dk rt|pdf_n.)z|(?:%s)z|(?:%s.)z(.)z)*%sz$invalid pattern (%s) passed to Regexz Expected FTr)%r?r4rrrrrr quoteCharr quoteCharLenfirstQuoteCharrendQuoteCharLenescCharescQuoteunquoteResultsconvertWhitespaceEscapesr MULTILINEDOTALLrr|rzrrrescCharReplacePatternr}r{rrrrrrr)rrrr multilinerrr)r)rrra sf       6     zQuotedString.__init__c Cs|||jkr|jj||pd}|s4t|||j||j}|j}|jr||j|j }t |t rd|kr|j rddddd}x |j D]\}}|j||}qW|jrtj|jd|}|jr|j|j|j}||fS)N\ r  )z\tz\nz\fz\rz\g<1>)rrrZr.rrrrrrrrrrrrrrrr) rrwrrrUrws_mapwslitwscharrrrr s(  zQuotedString.parseImplc sFytt|jStk r"YnX|jdkr@d|j|jf|_|jS)Nz.quoted string, starting with %s ending with %s)r?r4rrrrr)r)rrrr s zQuotedString.__str__)NNFTNT)T)r r r rrrrrYrr)rrr4: s&A #cs8eZdZdZd fdd Zd ddZfd d ZZS) raToken for matching words composed of characters *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 ``min`` is 1 (a minimum value < 1 is not valid); the default values for ``max`` and ``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'] rrcstt|jd|_||_|dkr*td||_|dkr@||_nt|_|dkrZ||_||_t ||_ d|j |_ |jdk|_ d|_ dS)NFrz)cannot specify a minimum length < 1; use z=Optional(CharsNotIn()) if zero-length char group is permittedrz Expected zfcannot specify a minimum length < 1; use Optional(CharsNotIn()) if zero-length char group is permitted)r?rrrnotCharsrrwrxrXrrrrr)rrr~rr)rrrr s$   zCharsNotIn.__init__TcCs|||jkrt|||j||}|d7}|j}t||jt|}x ||krd|||krd|d7}qFW|||jkrt|||j|||||fS)Nr)rr.rr~rxrrw)rrwrrrjnotcharsmaxlenrrrr s   zCharsNotIn.parseImplc sdytt|jStk r"YnX|jdkr^t|jdkrRd|jdd|_n d|j|_|jS)Nrz !W:(%s...)z!W:(%s))r?rrrrrr)r)rrrr s  zCharsNotIn.__str__)rrr)T)r r r rrrrrYrr)rrr s cs`eZdZdZdddddddd d d d d ddddddddddddZd"fdd Zd#d d!ZZS)$r=aSpecial 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 ``" \t\r\n"``. Also takes optional ``min``, ``max``, and ``exact`` arguments, as defined for the :class:`Word` class. zzzzzzzzz z z z zzzzzz z zzzz)rrrrrzuA0zu80zu80Euu€0uu€1uu€2uu€3uu€4uu€5uu€6uu€7uu€8uu€9uu€Auu€Buu‚Fuu…FuuÀ0 rrcsttj|_jdjfddjDdjddjD_d_dj_ |_ |dkrt|_ nt _ |dkr|_ |_ dS)Nrc3s|]}|jkr|VqdS)N) matchWhite)rr)rrrrC sz!White.__init__..css|]}tj|VqdS)N)r= whiteStrs)rrrrrrE sTz Expected r) r?r=rrr+rrrrrrwrxrX)rwsr~rr)r)rrr@ s  zWhite.__init__TcCs|||jkrt|||j||}|d7}||j}t|t|}x"||krd|||jkrd|d7}qDW|||jkrt|||j|||||fS)Nr)rr.rrxr~rrw)rrwrrrjrkrrrrT s  zWhite.parseImpl)rrrr)T)r r r rrrrrYrr)rrr= s4cseZdZfddZZS)_PositionTokencs(tt|j|jj|_d|_d|_dS)NTF)r?rrrr rrr)r)rrrre s z_PositionToken.__init__)r r r rrYrr)rrrd srcs2eZdZdZfddZddZd ddZZS) rzaToken to advance to a specific column of input text; useful for tabular report scraping. cstt|j||_dS)N)r?rrrI)rcolno)rrrro szGoToColumn.__init__cCs`t|||jkr\t|}|jr*|j||}x0||krZ||jrZt|||jkrZ|d7}q,W|S)Nr)rIrrrisspace)rrwrrrrrrs s & zGoToColumn.preParseTcCsDt||}||jkr"t||d|||j|}|||}||fS)NzText not in expected column)rIr.)rrwrrthiscolnewlocrrrrr| s    zGoToColumn.parseImpl)T)r r r rrrrrYrr)rrrk s  cs*eZdZdZfddZdddZZS)r"aMatches 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'] cstt|jd|_dS)NzExpected start of line)r?r"rr)r)rrrr szLineStart.__init__TcCs*t||dkr|gfSt|||j|dS)Nr)rIr.r)rrwrrrrrr szLineStart.parseImpl)T)r r r rrrrYrr)rrr" s cs*eZdZdZfddZdddZZS)r!zTMatches if current position is at the end of a line within the parse string cs,tt|j|jtjjddd|_dS)NrrzExpected end of line)r?r!rr+r3rrr)r)rrrr szLineEnd.__init__TcCsb|t|kr6||dkr$|ddfSt|||j|n(|t|krN|dgfSt|||j|dS)Nrr)rr.r)rrwrrrrrr s     zLineEnd.parseImpl)T)r r r rrrrYrr)rrr! s cs*eZdZdZfddZdddZZS)r9zLMatches if current position is at the beginning of the parse string cstt|jd|_dS)NzExpected start of text)r?r9rr)r)rrrr szStringStart.__init__TcCs0|dkr(||j|dkr(t|||j||gfS)Nr)rr.r)rrwrrrrrr szStringStart.parseImpl)T)r r r rrrrYrr)rrr9 s cs*eZdZdZfddZdddZZS)r8zBMatches if current position is at the end of the parse string cstt|jd|_dS)NzExpected end of text)r?r8rr)r)rrrr szStringEnd.__init__TcCs^|t|krt|||j|n<|t|kr6|dgfS|t|krJ|gfSt|||j|dS)Nr)rr.r)rrwrrrrrr s    zStringEnd.parseImpl)T)r r r rrrrYrr)rrr8 s cs.eZdZdZeffdd ZdddZZS)r@ayMatches if the current position is at the beginning of a Word, and is not preceded by any character in a given set of ``wordChars`` (default= ``printables``). To emulate the ```` behavior of regular expressions, use ``WordStart(alphanums)``. ``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)r?r@rr wordCharsr)rr)rrrr s zWordStart.__init__TcCs@|dkr8||d|jks(|||jkr8t|||j||gfS)Nrr)rr.r)rrwrrrrrr s zWordStart.parseImpl)T)r r r rrfrrrYrr)rrr@ scs.eZdZdZeffdd ZdddZZS)r?a_Matches if the current position is at the end of a Word, and is not followed by any character in a given set of ``wordChars`` (default= ``printables``). To emulate the ```` behavior of regular expressions, use ``WordEnd(alphanums)``. ``WordEnd`` will also match at the end of the string being parsed, or at the end of a line. cs(tt|jt||_d|_d|_dS)NFzNot at the end of a word)r?r?rrrrr)rr)rrrr s zWordEnd.__init__TcCsPt|}|dkrH||krH|||jks8||d|jkrHt|||j||gfS)Nrr)rrr.r)rrwrrrrrrr s zWordEnd.parseImpl)T)r r r rrfrrrYrr)rrr? scsveZdZdZdfdd ZddZddZd d Zfd d Zfd dZ fddZ gfddZ fddZ Z S)r/z]Abstract subclass of ParserElement, for combining and post-processing parsed tokens. Fc stt|j|t|tr"t|}t|tr.F)r?r/rrrrrr3rexprsrallrrr)rrr)rrrrs     zParseExpression.__init__cCs |j|S)N)r)rrrrrrszParseExpression.__getitem__cCs|jj|d|_|S)N)rrr)rr<rrrrs zParseExpression.appendcCs4d|_dd|jD|_x|jD] }|jq W|S)zExtends ``leaveWhitespace`` defined in base class, and also invokes ``leaveWhitespace`` on all contained expressions.FcSsg|] }|jqSr)r;)rrrrrr (sz3ParseExpression.leaveWhitespace..)rrr*)rrrrrr*$s   zParseExpression.leaveWhitespacecszt|trF||jkrvtt|j|xP|jD]}|j|jdq,Wn0tt|j|x|jD]}|j|jdq^W|S)Nrrr)rr:rr?r/r-r)rr<r)rrrr--s    zParseExpression.ignorec sLytt|jStk r"YnX|jdkrFd|jjt|jf|_|jS)Nz%s:(%s)) r?r/rrrrr rr)r)rrrr9s zParseExpression.__str__cs0tt|jx|jD] }|jqWt|jdkr|jd}t||jr|j r|jdkr|j r|jdd|jdg|_d|_ |j |j O_ |j |j O_ |jd}t||jo|j o|jdko|j r|jdd|jdd|_d|_ |j |j O_ |j |j O_ dt ||_|S)Nrrrz Expected rr)r?r/rrrrrrrrrrrrr)rrr<)rrrrCs0         zParseExpression.streamlinecCs:|dd|g}x|jD]}|j|qW|jgdS)N)rr6r4)rr5tmprrrrr6es zParseExpression.validatecs$tt|j}dd|jD|_|S)NcSsg|] }|jqSr)r;)rrrrrr msz(ParseExpression.copy..)r?r/r;r)rr)rrrr;kszParseExpression.copy)F)r r r rrrrr*r-rrr6r;rYrr)rrr/s " cs`eZdZdZGdddeZdfdd ZfddZdd d Zd d Z d dZ ddZ Z S)ra Requires all given :class:`ParseExpression` s to be found in the given order. Expressions may be separated by whitespace. May be constructed using the ``'+'`` operator. May also be constructed using the ``'-'`` 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") cseZdZfddZZS)zAnd._ErrorStopcs&ttj|j||d|_|jdS)N-)r?rrrrr*)rrr.)rrrrszAnd._ErrorStop.__init__)r r r rrYrr)rrrsrTcsRtt|j||tdd|jD|_|j|jdj|jdj|_d|_ dS)Ncss|] }|jVqdS)N)r)rrrrrrszAnd.__init__..rT) r?rrrrrr+rrr)rrr)rrrrs z And.__init__cs(tt|jtdd|jD|_|S)Ncss|] }|jVqdS)N)r)rrrrrrsz!And.streamline..)r?rrrrr)r)rrrrszAnd.streamlinec Cs|jdj|||dd\}}d}x|jddD]}t|tjrFd}q0|ry|j|||\}}Wqtk rvYqtk r}zd|_tj|WYdd}~Xqt k rt|t ||j |YqXn|j|||\}}|s|j r0||7}q0W||fS)NrF)rrT) rrrrrr2r,rrrrrr,) rrwrr resultlist errorStopr exprtokensrrrrrs(   z And.parseImplcCst|trtj|}|j|S)N)rrr3rr)rr<rrrr7s  z And.__iadd__cCs8|dd|g}x |jD]}|j||jsPqWdS)N)rr4r)rrsubRecCheckListrrrrr4s   zAnd.checkRecursioncCs@t|dr|jS|jdkr:ddjdd|jDd|_|jS)Nr{rcss|]}t|VqdS)N)r)rrrrrrszAnd.__str__..})r#rrrr)rrrrrs    z And.__str__)T)T) r r r rrrrrrr7r4rrYrr)rrrps  csPeZdZdZdfdd ZfddZddd Zd d Zd d ZddZ Z S)r+aRequires that at least one :class:`ParseExpression` is found. If two expressions match, the expression that matches the longest string will be used. May be constructed using the ``'^'`` 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']] Fcs:tt|j|||jr0tdd|jD|_nd|_dS)Ncss|] }|jVqdS)N)r)rrrrrrszOr.__init__..T)r?r+rrrfr)rrr)rrrrsz Or.__init__cs.tt|jtjr*tdd|jD|_|S)Ncss|] }|jVqdS)N)r)rrrrrrsz Or.streamline..)r?r+rrcollect_all_And_tokensrfrr)r)rrrrsz Or.streamlineTc CsTd}d}g}x|jD]}y|j||}Wnvtk rd} z d| _| j|krT| }| j}WYdd} ~ Xqtk rt||krt|t||j|}t|}YqX|j||fqW|r*|j dddx`|D]X\} }y|j |||Stk r$} z"d| _| j|kr| }| j}WYdd} ~ XqXqW|dk rB|j|_ |nt||d|dS)NrcSs |d S)Nrr)xrrrrszOr.parseImpl..)r2z no defined alternatives to matchr) rrr.rrrrrrsortrr) rrwrr maxExcLoc maxExceptionrrloc2r_rrrrs<     z Or.parseImplcCst|trtj|}|j|S)N)rrr3rr)rr<rrr__ixor__s  z Or.__ixor__cCs@t|dr|jS|jdkr:ddjdd|jDd|_|jS)Nrrz ^ css|]}t|VqdS)N)r)rrrrrrszOr.__str__..r)r#rrrr)rrrrr s    z Or.__str__cCs0|dd|g}x|jD]}|j|qWdS)N)rr4)rrrrrrrr4s zOr.checkRecursion)F)T) r r r rrrrrrr4rYrr)rrr+s  & csPeZdZdZdfdd ZfddZddd Zd d Zd d ZddZ Z S)r%aRequires that at least one :class:`ParseExpression` is found. If two expressions match, the first one listed is the one that will match. May be constructed using the ``'|'`` 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']] Fcs:tt|j|||jr0tdd|jD|_nd|_dS)Ncss|] }|jVqdS)N)r)rrrrrr/sz&MatchFirst.__init__..T)r?r%rrrfr)rrr)rrrr,szMatchFirst.__init__cs.tt|jtjr*tdd|jD|_|S)Ncss|] }|jVqdS)N)r)rrrrrr6sz(MatchFirst.streamline..)r?r%rrrrfrr)r)rrrr3szMatchFirst.streamlineTc Csd}d}x|jD]}y|j|||}|Stk r\}z|j|krL|}|j}WYdd}~Xqtk rt||krt|t||j|}t|}YqXqW|dk r|j|_|nt||d|dS)Nrz no defined alternatives to matchr)rrr.rrrrr) rrwrrrrrrrrrrr9s$   zMatchFirst.parseImplcCst|trtj|}|j|S)N)rrr3rr)rr<rrr__ior__Qs  zMatchFirst.__ior__cCs@t|dr|jS|jdkr:ddjdd|jDd|_|jS)Nrrz | css|]}t|VqdS)N)r)rrrrrr[sz%MatchFirst.__str__..r)r#rrrr)rrrrrVs    zMatchFirst.__str__cCs0|dd|g}x|jD]}|j|qWdS)N)rr4)rrrrrrrr4_s zMatchFirst.checkRecursion)F)T) r r r rrrrrrr4rYrr)rrr%s   csHeZdZdZd fdd ZfddZdddZd d Zd d ZZ S)rasRequires all given :class:`ParseExpression` s to be found, but in any order. Expressions may be separated by whitespace. May be constructed using the ``'&'`` 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 Tcs>tt|j||tdd|jD|_d|_d|_d|_dS)Ncss|] }|jVqdS)N)r)rrrrrrsz Each.__init__..T) r?rrrrrrinitExprGroupsr)rrr)rrrrs z Each.__init__cs(tt|jtdd|jD|_|S)Ncss|] }|jVqdS)N)r)rrrrrrsz"Each.streamline..)r?rrrrr)r)rrrrszEach.streamlinec s|jrtdd|jD|_dd|jD}dd|jD}|||_dd|jD|_dd|jD|_dd|jD|_|j|j7_d |_|}|jdd}|jddg}d } x| rp||j|j} g} x~| D]v} y| j||}Wn t k r| j | YqX|j |jj t | | | |krD|j | q| krj | qWt| t| krd } qW|rd jd d|D} t ||d | |fdd|jD7}g}x*|D]"} | j|||\}}|j |qWt|tg}||fS)Ncss&|]}t|trt|j|fVqdS)N)rr*rCrx)rrrrrrsz!Each.parseImpl..cSsg|]}t|tr|jqSr)rr*rx)rrrrrr sz"Each.parseImpl..cSs"g|]}|jrt|t r|qSr)rrr*)rrrrrr scSsg|]}t|tr|jqSr)rrArx)rrrrrr scSsg|]}t|tr|jqSr)rr(rx)rrrrrr scSs g|]}t|tttfs|qSr)rr*rAr()rrrrrr sFTz, css|]}t|VqdS)N)r)rrrrrrsz*Missing one or more required elements (%s)cs$g|]}t|tr|jkr|qSr)rr*rx)rr)tmpOptrrr s)rrropt1map optionalsmultioptionals multirequiredrequiredrr.rrrCremoverrrsumr1)rrwrropt1opt2tmpLoctmpReqd matchOrder keepMatchingtmpExprsfailedrmissingrrp finalResultsr)rrrsP     zEach.parseImplcCs@t|dr|jS|jdkr:ddjdd|jDd|_|jS)Nrrz & css|]}t|VqdS)N)r)rrrrrrszEach.__str__..r)r#rrrr)rrrrrs    z Each.__str__cCs0|dd|g}x|jD]}|j|qWdS)N)rr4)rrrrrrrr4s zEach.checkRecursion)T)T) r r r rrrrrr4rYrr)rrres 8  1 csleZdZdZdfdd ZdddZdd Zfd d Zfd d ZddZ gfddZ fddZ Z S)r-zfAbstract subclass of :class:`ParserElement`, for combining and post-processing parsed tokens. Fcstt|j|t|tr@ttjtr2tj|}ntjt |}||_ d|_ |dk r|j |_ |j |_ |j|j|j|_|j|_|j|_|jj|jdS)N)r?r-rrr issubclassr3rr;r#rxrrrr+rrrrrr8)rrxr)rrrrs    zParseElementEnhance.__init__TcCs2|jdk r|jj|||ddStd||j|dS)NF)rr)rxrr.r)rrwrrrrrrs zParseElementEnhance.parseImplcCs*d|_|jj|_|jdk r&|jj|S)NF)rrxr;r*)rrrrr*s    z#ParseElementEnhance.leaveWhitespacecsrt|trB||jkrntt|j||jdk rn|jj|jdn,tt|j||jdk rn|jj|jd|S)Nrrr)rr:rr?r-r-rx)rr<)rrrr- s    zParseElementEnhance.ignorecs&tt|j|jdk r"|jj|S)N)r?r-rrx)r)rrrrs  zParseElementEnhance.streamlinecCsB||krt||g|dd|g}|jdk r>|jj|dS)N)r5rxr4)rrrrrrr4s  z"ParseElementEnhance.checkRecursioncCs6|dd|g}|jdk r(|jj||jgdS)N)rxr6r4)rr5rrrrr6&s  zParseElementEnhance.validatec sVytt|jStk r"YnX|jdkrP|jdk rPd|jjt|jf|_|jS)Nz%s:(%s)) r?r-rrrrxrr r)r)rrrr,szParseElementEnhance.__str__)F)T) r r r rrrr*r-rr4r6rrYrr)rrr-s   cs*eZdZdZfddZdddZZS)rabLookahead matching of the given parse expression. ``FollowedBy`` does *not* advance the parsing position within the input string, it only verifies that the specified parse expression matches at the current position. ``FollowedBy`` always returns a null token list. If any results names are defined in the lookahead expression, those *will* be returned for access by name. 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']] cstt|j|d|_dS)NT)r?rrr)rrx)rrrrMszFollowedBy.__init__TcCs(|jj|||d\}}|dd=||fS)N)r)rxr)rrwrrrrrrrrQs zFollowedBy.parseImpl)T)r r r rrrrYrr)rrr7s cs,eZdZdZd fdd Zd ddZZS) r$apLookbehind matching of the given parse expression. ``PrecededBy`` does not advance the parsing position within the input string, it only verifies that the specified parse expression matches prior to the current position. ``PrecededBy`` always returns a null token list, but if a results name is defined on the given expression, it is returned. Parameters: - expr - expression that must match prior to the current parse location - retreat - (default= ``None``) - (int) maximum number of characters to lookbehind prior to the current parse location If the lookbehind expression is a string, Literal, Keyword, or a Word or CharsNotIn with a specified exact or maximum length, then the retreat parameter is not required. Otherwise, retreat must be specified to give a maximum number of characters to look back from the current parse position for a lookbehind match. Example:: # VB-style variable names with type prefixes int_var = PrecededBy("#") + pyparsing_common.identifier str_var = PrecededBy("$") + pyparsing_common.identifier Ncstt|j||jj|_d|_d|_d|_t|t rJt |}d|_nVt|t t frf|j }d|_n:t|ttfr|jtkr|j}d|_nt|trd}d|_||_dt ||_d|_dS)NTFrznot preceded by )r?r$rrxr*rrrrrrr#r r[r>rrxrXrretreatrr)rrxr)rrrrss(  zPrecededBy.__init__rTc Cs|jr<||jkrt|||j||j}|jj||\}}n|jt}|d|}t|||j} xdtdt||jdD]F} y|j||| \}}Wn&t k r} z | } WYdd} ~ XqzXPqzW| |dd=||fS)Nr) rrr.rrxrr8rr~r,) rrwrrrjrr test_exprinstring_slice last_exprr?pberrrrs"     zPrecededBy.parseImpl)N)rT)r r r rrrrYrr)rrr$Wscs2eZdZdZfddZd ddZddZZS) r'aLookahead to disallow matching with the given parse expression. ``NotAny`` does *not* advance the parsing position within the input string, it only verifies that the specified parse expression does *not* match at the current position. Also, ``NotAny`` does *not* skip over leading whitespace. ``NotAny`` always returns a null token list. May be constructed using the '~' operator. Example:: AND, OR, NOT = map(CaselessKeyword, "AND OR NOT".split()) # take care not to mistake keywords for identifiers ident = ~(AND | OR | NOT) + Word(alphas) boolean_term = Optional(NOT) + ident # very crude boolean expression - to support parenthesis groups and # operation hierarchy, use infixNotation boolean_expr = boolean_term + ZeroOrMore((AND | OR) + boolean_term) # integers that are followed by "." are actually floats integer = Word(nums) + ~Char(".") cs0tt|j|d|_d|_dt|j|_dS)NFTzFound unwanted token, )r?r'rrrrrxr)rrx)rrrrszNotAny.__init__TcCs&|jj||rt|||j||gfS)N)rxrr.r)rrwrrrrrrszNotAny.parseImplcCs4t|dr|jS|jdkr.dt|jd|_|jS)Nrz~{r)r#rrrrx)rrrrrs   zNotAny.__str__)T)r r r rrrrrYrr)rrr's  cs(eZdZdfdd ZdddZZS) _MultipleMatchNcsFtt|j|d|_|}t|tr.tj|}|dk r<|nd|_dS)NT) r?rrrrrr3r not_ender)rrxstopOnender)rrrrs   z_MultipleMatch.__init__Tc Cs|jj}|j}|jdk }|r$|jj}|r2|||||||dd\}}yZ|j } xJ|rb|||| rr|||} n|} ||| |\}} | s| jrT|| 7}qTWWnttfk rYnX||fS)NF)r) rxrrrrrr,r.r) rrwrrself_expr_parseself_skip_ignorables check_ender try_not_enderrhasIgnoreExprsr tmptokensrrrrs,      z_MultipleMatch.parseImpl)N)T)r r r rrrYrr)rrrsrc@seZdZdZddZdS)r(ajRepetition of one or more of the given expression. Parameters: - expr - expression that must match one or more times - stopOn - (default= ``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() cCs4t|dr|jS|jdkr.dt|jd|_|jS)Nrrz}...)r#rrrrx)rrrrrs   zOneOrMore.__str__N)r r r rrrrrrr(scs8eZdZdZd fdd Zd fdd Zdd ZZS) rAakOptional repetition of zero or more of the given expression. Parameters: - expr - expression that must match zero or more times - stopOn - (default= ``None``) - expression for a terminating sentinel (only required if the sentinel would ordinarily match the repetition expression) Example: similar to :class:`OneOrMore` Ncstt|j||dd|_dS)N)rT)r?rArr)rrxr)rrrr"szZeroOrMore.__init__Tc s6ytt|j|||Sttfk r0|gfSXdS)N)r?rArr.r)rrwrr)rrrr&szZeroOrMore.parseImplcCs4t|dr|jS|jdkr.dt|jd|_|jS)NrrFz]...)r#rrrrx)rrrrr,s   zZeroOrMore.__str__)N)T)r r r rrrrrYrr)rrrAs c@s eZdZddZeZddZdS) _NullTokencCsdS)NFr)rrrrr6sz_NullToken.__bool__cCsdS)Nrr)rrrrr9sz_NullToken.__str__N)r r r rrorrrrrr5srcs6eZdZdZeffdd Zd ddZddZZS) r*aGOptional 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) cs.tt|j|dd|jj|_||_d|_dS)NF)rT)r?r*rrxrr3r)rrxr-)rrrrbs zOptional.__init__Tc Cszy|jj|||dd\}}WnTttfk rp|jtk rh|jjr^t|jg}|j||jj<ql|jg}ng}YnX||fS)NF)r)rxrr.rr3_optionalNotMatchedrr1)rrwrrrrrrrhs    zOptional.parseImplcCs4t|dr|jS|jdkr.dt|jd|_|jS)NrrFrG)r#rrrrx)rrrrrvs   zOptional.__str__)T) r r r rrrrrrYrr)rrr*=s$ cs,eZdZdZd fdd Zd ddZZS) r7a Token for skipping over all undefined text until the matched expression is found. Parameters: - expr - target expression marking the end of the data to be skipped - include - (default= ``False``) if True, the target expression is also parsed (the skipped text and target expression are returned as a 2-element list). - ignore - (default= ``None``) used to define grammars (typically quoted strings and comments) that might contain false matches to the target expression - failOn - (default= ``None``) define expressions that are not allowed to be included in the skipped test; if found before the target expression is found, the SkipTo is not a match Example:: report = ''' Outstanding Issues Report - 1 Jan 2000 # | Severity | Description | Days Open -----+----------+-------------------------------------------+----------- 101 | Critical | Intermittent system crash | 6 94 | Cosmetic | Spelling error on Login ('log|n') | 14 79 | Minor | System slow when running too many reports | 47 ''' integer = Word(nums) SEP = Suppress('|') # use SkipTo to simply match everything up until the next SEP # - ignore quoted strings, so that a '|' character inside a quoted string does not match # - parse action will call token.strip() for each matched token, i.e., the description body string_data = SkipTo(SEP, ignore=quotedString) string_data.setParseAction(tokenMap(str.strip)) ticket_expr = (integer("issue_num") + SEP + string_data("sev") + SEP + string_data("desc") + SEP + integer("days_open")) for tkt in ticket_expr.searchString(report): print tkt.dump() prints:: ['101', 'Critical', 'Intermittent system crash', '6'] - days_open: 6 - desc: Intermittent system crash - issue_num: 101 - sev: Critical ['94', 'Cosmetic', "Spelling error on Login ('log|n')", '14'] - days_open: 14 - desc: Spelling error on Login ('log|n') - issue_num: 94 - sev: Cosmetic ['79', 'Minor', 'System slow when running too many reports', '47'] - days_open: 47 - desc: System slow when running too many reports - issue_num: 79 - sev: Minor FNcs`tt|j|||_d|_d|_||_d|_t|t rFt j ||_ n||_ dt |j|_dS)NTFzNo match found for )r?r7r ignoreExprrr includeMatchrrrr3rfailOnrrxr)rr<includer-r)rrrrs zSkipTo.__init__Tc Cs,|}t|}|j}|jj}|jdk r,|jjnd}|jdk rB|jjnd} |} x| |kr|dk rh||| rhP| dk rx*y| || } Wqrtk rPYqrXqrWy||| dddWn tt fk r| d7} YqLXPqLWt|||j || }|||} t | } |j r$||||dd\}} | | 7} || fS)NF)rrr)r) rrxrrrrrr,r.rrr1r)rrwrrrzrrx expr_parseself_failOn_canParseNextself_ignoreExpr_tryParsetmplocskiptext skipresultrorrrrs<    zSkipTo.parseImpl)FNN)T)r r r rrrrYrr)rrr7s9 csbeZdZdZdfdd ZddZddZd d Zd d Zgfd dZ ddZ fddZ Z S)ra_Forward declaration of an expression to be defined later - used for recursive grammars, such as algebraic infix notation. When the expression is known, it is assigned to the ``Forward`` variable using the '<<' operator. Note: take care when assigning to ``Forward`` not to overlook precedence of operators. Specifically, '|' has a lower precedence than '<<', so that:: fwdExpr << a | b | c will actually be evaluated as:: (fwdExpr << a) | b | c thereby leaving b and c out as parseable alternatives. It is recommended that you explicitly group the values inserted into the ``Forward``:: fwdExpr << (a | b | c) Converting to use the '<<=' operator instead will avoid this problem. See :class:`ParseResults.pprint` for an example of a recursive parser created using ``Forward``. Ncstt|j|dddS)NF)r)r?rr)rr<)rrrrszForward.__init__cCsjt|trtj|}||_d|_|jj|_|jj|_|j|jj |jj |_ |jj |_ |j j |jj |S)N)rrr3rrxrrrr+rrrrr8)rr<rrr __lshift__s      zForward.__lshift__cCs||>S)Nr)rr<rrr __ilshift__ szForward.__ilshift__cCs d|_|S)NF)r)rrrrr*#szForward.leaveWhitespacecCs$|js d|_|jdk r |jj|S)NT)rrxr)rrrrr's   zForward.streamlinecCs>||kr0|dd|g}|jdk r0|jj||jgdS)N)rxr6r4)rr5rrrrr6.s   zForward.validatec CsTt|dr|jS|jjd|_z|jdk r6t|j}nd}Wd|`X|jjd|S)Nrz: ...Nonez: )r#rrr rxr)r retStringrrrr5s   zForward.__str__cs.|jdk rtt|jSt}||K}|SdS)N)rxr?rr;)rr)rrrr;Fs  z Forward.copy)N) r r r rrrrr*rr6rr;rYrr)rrrs  cs"eZdZdZdfdd ZZS)r<zW Abstract subclass of :class:`ParseExpression`, for converting parsed results. Fcstt|j|d|_dS)NF)r?r<rr)rrxr)rrrrRszTokenConverter.__init__)F)r r r rrrYrr)rrr<Nscs6eZdZdZd fdd ZfddZdd ZZS) raConverter to concatenate all matching tokens to a single string. By default, the matching patterns must also be contiguous in the input string; this can be disabled by specifying ``'adjacent=False'`` in the constructor. Example:: real = Word(nums) + '.' + Word(nums) print(real.parseString('3.1416')) # -> ['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...) rTcs8tt|j||r|j||_d|_||_d|_dS)NT)r?rrr*adjacentr joinStringr)rrxrr)rrrrhszCombine.__init__cs(|jrtj||ntt|j||S)N)rr3r-r?r)rr<)rrrr-rszCombine.ignorecCsP|j}|dd=|tdj|j|jg|jd7}|jrH|jrH|gS|SdS)Nr)r)r;r1rrHrrrr,)rrwrrretToksrrrrys  "zCombine.postParse)rT)r r r rrr-rrYrr)rrrVs cs(eZdZdZfddZddZZS)raConverter to return the matched tokens as a list - useful for returning tokens of :class:`ZeroOrMore` and :class:`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']] cstt|j|d|_dS)NT)r?rrr)rrx)rrrrszGroup.__init__cCs|gS)Nr)rrwrrrrrrszGroup.postParse)r r r rrrrYrr)rrrs cs(eZdZdZfddZddZZS)ra?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 :class:`ParseResults` of accessing fields by results name. cstt|j|d|_dS)NT)r?rrr)rrx)rrrrsz Dict.__init__cCsxt|D]\}}t|dkr q |d}t|trBt|dj}t|dkr^td|||<q t|dkrt|dt rt|d|||<q |j}|d=t|dkst|tr|j rt||||<q t|d|||<q W|j r|gS|SdS)Nrrrr) rrrrrrrr1r;r,r)rrwrrrtokikey dictvaluerrrrs$   zDict.postParse)r r r rrrrYrr)rrrs& c@s eZdZdZddZddZdS)r:a[Converter for ignoring the results of a parsed expression. Example:: source = "a, b, c,d" wd = Word(alphas) wd_list1 = wd + ZeroOrMore(',' + wd) print(wd_list1.parseString(source)) # often, delimiters that are useful during parsing are just in the # way afterward - use Suppress to keep them out of the parsed output wd_list2 = wd + ZeroOrMore(Suppress(',') + wd) print(wd_list2.parseString(source)) prints:: ['a', ',', 'b', ',', 'c', ',', 'd'] ['a', 'b', 'c', 'd'] (See also :class:`delimitedList`.) cCsgS)Nr)rrwrrrrrrszSuppress.postParsecCs|S)Nr)rrrrr)szSuppress.suppressN)r r r rrr)rrrrr:sc@s(eZdZdZddZddZddZdS) r)zDWrapper for parse actions, to ensure they are only called once. cCst||_d|_dS)NF)rrcalled)r methodCallrrrrs zOnlyOnce.__init__cCs.|js|j|||}d|_|St||ddS)NTr)rrr.)rrrrrprrrr(s zOnlyOnce.__call__cCs d|_dS)NF)r)rrrrresetszOnlyOnce.resetN)r r r rrr(rrrrrr)sc s:tfdd}y j|_Wntk r4YnX|S)aqDecorator for debugging parse actions. When the parse action is called, this decorator will print ``">> entering method-name(line:, , )"``. When the parse action completes, the decorator will print ``"<<"`` 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)rr r)r<rr)r<rrr s  ,FcCs`t|dt|dt|d}|rBt|t||j|S|tt||j|SdS)aHelper 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 ``combine=True`` in the constructor. If ``combine`` is set to ``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 [rz]...N)rrrArr:)rxdelimcombinedlNamerrrrP9s$csjtfdd}|dkr0ttjdd}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 ``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|p&tt>gS)Nr)rrrS)rrrr) arrayExprrxrrcountFieldParseActionfs"z+countedArray..countFieldParseActionNcSs t|dS)Nr)r)rrrrrkszcountedArray..arrayLenT)rz(len) z...)rr>rbrr;rrr)rxintExprrr)rrxrrLNs cCs:g}x0|D](}t|tr(|jt|q |j|q W|S)N)rrr8r r)Lrrrrrr rs   r cs6tfdd}|j|ddjdt|S)a4Helper 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 ``"1:1"``, but not ``"1:2"``. Because this matches a previous literal, will also match the leading ``"1:1"`` in ``"1:10"``. If this is not desired, use :class:`matchPreviousExpr`. Do *not* use with packrat parsing enabled. csP|rBt|dkr|d>qLt|j}tdd|D>n t>dS)Nrrcss|]}t|VqdS)N)r#)rttrrrrszDmatchPreviousLiteral..copyTokenToRepeater..)rr rrr)rrrtflat)reprrcopyTokenToRepeaters   z1matchPreviousLiteral..copyTokenToRepeaterT)rz(prev) )rrrr)rxrr)rrr_{s  csFt|j}|Kfdd}|j|ddjdt|S)aTHelper 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 ``"1:1"``, but not ``"1:2"``. Because this matches by expressions, will *not* match the leading ``"1:1"`` in ``"1:10"``; the expressions are evaluated first, and then compared, so ``"1"`` is compared with ``"10"``. Do *not* use with packrat parsing enabled. cs*t|jfdd}j|dddS)Ncs$t|j}|kr tddddS)Nrr)r rr.)rrr theseTokens) matchTokensrrmustMatchTheseTokenss zLmatchPreviousExpr..copyTokenToRepeater..mustMatchTheseTokensT)r)r rr)rrrr)r)rrrs  z.matchPreviousExpr..copyTokenToRepeaterT)rz(prev) )rr;rrr)rxe2rr)rrr^s cCs>xdD]}|j|t|}qW|jdd}|jdd}t|S)Nz\^-]rz\nrz\t)r_bslashr)rrrrrrzs    rzc s|rdd}dd}tndd}dd}tg}t|trF|j}n$t|trZt|}ntjdt dd|stt Sd }x|t |d kr||}xnt ||d d D]N\}} || |r|||d =Pq||| r|||d =|j || | }PqW|d 7}qzW| r|ryht |t d j|krXtd d jdd|Djdj|Stdjdd|Djdj|SWn&tk rtjdt ddYnXtfdd|Djdj|S)aHelper 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 :class:`MatchFirst` for best performance. Parameters: - strs - a string of space-delimited literals, or a collection of string literals - caseless - (default= ``False``) - treat all literals as caseless - useRegex - (default= ``True``) - as an optimization, will generate a Regex object; otherwise, will generate a :class:`MatchFirst` object (if ``caseless=True``, or if creating a :class:`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)ra)r>brrrrszoneOf..cSs|jj|jS)N)rar^)r>r!rrrrscSs||kS)Nr)r>r!rrrrscSs |j|S)N)r^)r>r!rrrrsz6Invalid argument to oneOf, expected string or iterabler)rrrNrz[%s]css|]}t|VqdS)N)rz)rsymrrrrszoneOf..z | |css|]}tj|VqdS)N)rr|)rr"rrrrsz7Exception creating Regex for oneOf, building MatchFirstc3s|]}|VqdS)Nr)rr")parseElementClassrrr s)rr#rrrrrrrrr&rrr4rr6rrr%) strsr`useRegexisequalmaskssymbolsrcurrr<r)r$rrcsL         ((cCsttt||S)aHelper to easily and clearly define a dictionary by specifying the respective patterns for the key and value. Takes care of defining the :class:`Dict`, :class:`ZeroOrMore`, and :class:`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 :class:`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'} )rr(r)r2rrrrrQs%cCs^tjdd}|j}d|_|d||d}|r@dd}ndd}|j||j|_|S) aHelper 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 ``asString`` argument is passed as ``False``, then the return value is a :class:`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 :class:`originalTextFor` contains expressions with defined results names, you must set ``asString`` to ``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)Nr)rrrrrrrRsz!originalTextFor..F_original_start _original_endcSs||j|jS)N)r+r,)rrrrrrrWscSs&||jd|jdg|dd<dS)Nr+r,)r1)rrrrrr extractTextYsz$originalTextFor..extractText)rrr;rr)rxasString locMarker endlocMarker matchExprr-rrrrw5s  cCst|jddS)zkHelper to undo pyparsing's default grouping of And expressions, even if all but one are non-empty. cSs|dS)Nrr)rrrrrcszungroup..)r<r)rxrrrrx_scCs4tjdd}t|d|d|jjdS)aHelper 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 ```` characters, you may want to call :class:`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)Nr)rrrrrrr~szlocatedExpr.. locn_startrlocn_end)rrrr;r*)rxlocatorrrrrzesz\[]-*.$+^?()~ )rcCs |ddS)Nrrr)rrrrrrrsrz\\0?[xX][0-9a-fA-F]+cCstt|djddS)Nrz\0xr)unichrrrK)rrrrrrrsz \\0[0-7]+cCstt|ddddS)Nrr)r5r)rrrrrrrsz\]rrFrnegatebodyrGc sBddy djfddtj|jDStk r<dSXdS)aHelper 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 ``\-`` or ``\]``) - an escaped hex character with a leading ``'\x'`` (``\x21``, which is a ``'!'`` character) (``\0x##`` is also supported for backwards compatibility) - an escaped octal character with a leading ``'\0'`` (``\041``, which is a ``'!'`` character) - a range of any of the above, separated by a dash (``'a-z'``, etc.) - any combination of the above (``'aeiouy'``, ``'a-zA-Z0-9_$'``, etc.) cSs<t|ts|Sdjddtt|dt|ddDS)Nrcss|]}t|VqdS)N)r5)rrrrrrsz+srange....rr)rr1rrord)prrrrszsrange..rc3s|]}|VqdS)Nr)rpart) _expandedrrrszsrange..N)r_reBracketExprrr8r)rr)r<rros  csfdd}|S)zoHelper method for defining parse actions that require matching at a specific column in the input text. cs"t||krt||ddS)Nzmatched token not at column %d)rIr.)rqlocnr|)rrr verifyColsz!matchOnlyAtCol..verifyColr)rr?r)rrr]s cs fddS)aHelper method for common parse actions that simply return a literal value. Especially useful when used with :class:`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)Nr)rrr)replStrrrrszreplaceWith..r)r@r)r@rrls cCs|dddS)aHelper 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"] rrrr)rrrrrrrjs c sNfdd}ytdtdj}Wntk rBt}YnX||_|S)aLHelper 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 ``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 :class:`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|]}|fqSrr)rtokn)rrrrr sz(tokenMap..pa..r)rrr)rrrrrsztokenMap..par r)rr rr)rrrrr)rrrr}s$cCs t|jS)N)rra)rrrrrscCs t|jS)N)rlower)rrrrr srQrRcs~t|tr|t|| d}n|jtttd}|rtjj t }||dt t t |td|tddgddj d d |}nltjj t ttd d B}||dt t t |j tttd|tddgddj d d |}ttd|d dd}|jd|jfdd |ddjjddjjjd}|_|_t||_||fS)zRInternal helper to construct opening and closing tag expressions, given a tag name)r`z_-:tag=/F)r-rScSs |ddkS)NrrEr)rrrrrrrsz_makeTags..rR)rqcSs |ddkS)NrrEr)rrrrrrr'szcs*|jddjjddjj|jS)Nrjr:r)rrrtitlerr;)r)resnamerrr-srrrFrz)rrr rr>rDrCrNr;rrjrrArr:r*rirfrRr_LrrrrrGrrCr7tag_body)tagStrxml suppress_LT suppress_GT tagAttrName tagAttrValueopenTagcloseTagr)rHr _makeTagss$ JR, rScCs t|dS)aJHelper 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 -> https://github.com/pyparsing/pyparsing/wiki F)rS)rKrrrr[4scCs t|dS)zHelper 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 :class:`makeHTMLTags` T)rS)rKrrrr\Lscs8|r|ddn|jddDfdd}|S)a6Helper to create a validating parse action to be used with start tags created with :class:`makeXMLTags` or :class:`makeHTMLTags`. Use ``withAttribute`` to qualify a starting tag with a required attribute value, to avoid false matches on common tags such as ```` or ``
``. Call ``withAttribute`` with a series of attribute names and values. Specify the list of filter attributes names and values as: - keyword arguments, as in ``(align="right")``, or - as an explicit dict with ``**`` operator, when an attribute name is also a Python reserved word, as in ``**{"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 ``class`` (with or without a namespace), use :class:`withClass`. To verify that the attribute exists, but without specifying a value, pass ``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 NcSsg|]\}}||fqSrr)rr r rrrr sz!withAttribute..cs^xXD]P\}}||kr&t||d||tjkr|||krt||d||||fqWdS)Nzno matching attribute z+attribute '%s' has value '%s', must be '%s')r.ru ANY_VALUE)rrrattrName attrValue)attrsrrrs zwithAttribute..pa)r)rattrDictrr)rWrruTs 8 cCs|r d|nd}tf||iS)aSimplified version of :class:`withAttribute` when matching on a div class - made difficult because ``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)ru) classname namespace classattrrrrr{s#(rcCsGdddt}t}||||B}x|t|D]n\}}|d dd\} } } } | dkrdd| nd| } | dkr| dkst| dkrtd | \}}tj| }| tjkrt| d kr||| t|t | }n| dkr.| dk r||| |t|t | |}n|||t|t |}nD| dkrj||||||t|||||}ntd n| tj krX| d krt | t st | } || j |t| |}n| dkr| dk r||| |t|t | |}n|||t|t |}nD| dkrN||||||t|||||}ntd ntd | rt | ttfr|j| n |j| ||j| |BK}|}q2W||K}|S)al 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 :class:`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 ``opAssoc.RIGHT`` and ``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 ``setParseAction(*fn)`` (:class:`ParserElement.setParseAction`) - lpar - expression for matching left-parentheses (default= ``Suppress('(')``) - rpar - expression for matching right-parentheses (default= ``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]]] c@seZdZdddZdS)zinfixNotation.._FBTcSs|jj|||gfS)N)rxr)rrwrrrrrrsz$infixNotation.._FB.parseImplN)T)r r r rrrrr_FB sr^Nrrz%s termz %s%s termrz@if numterms=3, opExpr must be a tuple or list of two expressionsrz6operator must be unary (1), binary (2), or ternary (3)z2operator must indicate right or left associativity)N)rrrrrrrdLEFTrr(RIGHTrr*rxrrr)baseExpropListlparrparr^rlastExprroperDefopExprarityrightLeftAssocrtermNameopExpr1opExpr2thisExprr1rrrrysZH    &       &    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|dkr(t|to,t|tr t|dkrt|dkr|dk rtt|t||tjddj dd}n$t j t||tjj dd}nx|dk rtt|t |t |ttjddj dd}n4ttt |t |ttjddj d d}ntd t }|dk rb|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= ``"("``); can also be a pyparsing expression - closer - closing character for a nested list (default= ``")"``); can also be a pyparsing expression - content - expression for items within the nested lists (default= ``None``) - ignoreExpr - expression for ignoring opening and closing delimiters (default= :class:`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 ``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 :class:`Or` or :class:`MatchFirst`. The default is :class:`quotedString`, but if no expressions are to be ignored, then pass ``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 sameNr)rcSs |djS)Nr)r)rrrrrsznestedExpr..cSs |djS)Nr)r)rrrrrscSs |djS)Nr)r)rrrrrscSs |djS)Nr)r)rrrrrszOopening and closing arguments must be strings if no content expression is givenznested %s%s expression)rrrrrr(rr3rrrSr;r#rrr:rAr)openerclosercontentrrrrrr`Ps4A     *$c sddfddfdd}fdd}fdd }ttjd j}ttj|jd }tj|jd }tj|jd } |rtt||t|t|t|| } n$tt|t|t|t|} | j fdd|j t t| jdS)aHelper 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= ``True``) A valid block must contain at least one ``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']]]]]]] Ncsdd<dS)Nrr) backup_stack indentStackrr reset_stacksz"indentedBlock..reset_stackcsN|t|krdSt||}|dkrJ|dkr>t||dt||ddS)Nrzillegal nestingznot a peer entryrr)rrIr.)rrrcurCol)rurrcheckPeerIndents     z&indentedBlock..checkPeerIndentcs2t||}|dkr"j|n t||ddS)Nrznot a subentryr)rIrr.)rrrrw)rurrcheckSubIndents   z%indentedBlock..checkSubIndentcsN|t|krdSt||}o4|dko4|dksBt||djdS)Nrrznot an unindentrr)rrIr.r1)rrrrw)rurr checkUnindents    z$indentedBlock..checkUnindentz INDENTrUNINDENTcsS)Nr)r>r!rr)rvrrr(szindentedBlock..zindented block) r(r!r+r)rrrrr*rr-r ) blockStatementExprrurVrxryrzrhr{PEERUNDENTsmExprr)rtrurvrrvs"Q    ,z#[\0xc0-\0xd6\0xd8-\0xf6\0xf8-\0xff]z[\0xa1-\0xbf\0xd7\0xf7]z_:zany tagzgt lt amp nbsp quot aposz><& "'z &(?Pr#z);zcommon HTML entitycCs tj|jS)zRHelper parser action to replace common HTML entities with their special characters)_htmlEntityMaprentity)rrrrrk2sz/\*(?:[^*]|\*(?!/))*z*/zC style commentzz HTML commentz.*z rest of linez//(?:\\\n|[^\n])*z // commentzC++ style commentz#.*zPython style comment)rqz commaItem)r-c@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)dAd*d+Z+ed,j d-Z,ed.j d/Z-ed0j d1Z.e/je0jBZ1e)d2d3Z2e&e3e4d4e5e e6d4d5ee7d6jj d7Z8e9ee:j;e8Bd8d9j d:Zd=S)Br~a Here are some common low-level expressions that may be useful in jump-starting parser development: - numeric forms (:class:`integers`, :class:`reals`, :class:`scientific notation`) - common :class:`programming identifiers` - network addresses (:class:`MAC`, :class:`IPv4`, :class:`IPv6`) - ISO8601 :class:`dates` and :class:`datetime` - :class:`UUID` - :class:`comma-separated list` Parse actions: - :class:`convertToInteger` - :class:`convertToFloat` - :class:`convertToDate` - :class:`convertToDatetime` - :class:`stripHTMLTags` - :class:`upcaseTokens` - :class:`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 integerrEfractioncCs|d|dS)Nrrrr)rrrrrszpyparsing_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_integerrFzfull IPv6 addressrrz::zshort IPv6 addresscCstdd|DdkS)Ncss|]}tjj|rdVqdS)rN)r~ _ipv6_partr)rrrrrrsz,pyparsing_common...r6)r)rrrrrsz::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 address%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= ``"%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)] csLytj|djStk rF}zt||t|WYdd}~XnXdS)Nr)rstrptimedaterr.r)rrrve)fmtrrcvt_fn2sz.pyparsing_common.convertToDate..cvt_fnr)rrr)rr convertToDate s zpyparsing_common.convertToDate%Y-%m-%dT%H:%M:%S.%fcsfdd}|S)aHelper to create a parse action for converting parsed datetime string to Python datetime.datetime Params - - fmt - format to be passed to datetime.strptime (default= ``"%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)] csHytj|dStk rB}zt||t|WYdd}~XnXdS)Nr)rrrr.r)rrrr)rrrrKsz2pyparsing_common.convertToDatetime..cvt_fnr)rrr)rrconvertToDatetime9s z"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)aParse 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) Prints:: More info at the pyparsing wiki page r)r~_html_stripperr)rrrrrr stripHTMLTags\szpyparsing_common.stripHTMLTagsr)rqz rr)r-zcomma separated listcCs t|jS)N)rra)rrrrrsscCs t|jS)N)rrB)rrrrrvsN)rr)rr)r)r)?r r r rr}rconvertToIntegerfloatconvertToFloatr>rbrrrrTrr6signed_integerrrr*r) mixed_integerrrealsci_realrnumberrrDrCr ipv4_addressr_full_ipv6_address_short_ipv6_addressr_mixed_ipv6_addressr ipv6_address mac_addressrrr iso8601_dateiso8601_datetimeuuidrGrFrrr(r#r!rfr= _commasepitemrPrir;comma_separated_listrtrRrrrrr~UsN"" 2   8c@seZdZddZddZdS)_lazyclasspropertycCs||_|j|_|j|_dS)N)rrr )rrrrrr{sz_lazyclassproperty.__init__csndkrt|td s.r)rr#rf__mro__rrr )rrrattrnamer)rr__get__s, z_lazyclassproperty.__get__N)r r r rrrrrrrzsrc@sPeZdZdZgZeddZeddZeddZ edd Z ed d Z d S) ra A set of Unicode characters, for language-specific strings for ``alphas``, ``nums``, ``alphanums``, and ``printables``. A unicode_set is defined by a list of ranges in the Unicode character set, in a class attribute ``_ranges``, such as:: _ranges = [(0x0020, 0x007e), (0x00a0, 0x00ff),] A unicode set can also be defined using multiple inheritance of other unicode sets:: class CJK(Chinese, Japanese, Korean): pass cCs`g}xD|jD]:}|tkrPx*|jD] }|jt|d|ddq"Wq Wddtt|DS)NrrcSsg|] }t|qSr)r5)rrrrrr sz5unicode_set._get_chars_for_ranges..r)rr_rangesr8rrdr)rrccrrrrr_get_chars_for_rangess  $z!unicode_set._get_chars_for_rangescCsdjttj|jS)z+all non-whitespace characters in this ranger)rrrrr)rrrrrfszunicode_set.printablescCsdjttj|jS)z'all alphabetic characters in this ranger)rfilterrisalphar)rrrrrDszunicode_set.alphascCsdjttj|jS)z*all numeric digit characters in this ranger)rrrisdigitr)rrrrrbszunicode_set.numscCs |j|jS)z)all alphanumeric characters in this range)rDrb)rrrrrCszunicode_set.alphanumsN) r r r rrrrrrfrDrbrCrrrrrs    c@seZdZdZdejfgZGdddeZGdddeZ GdddeZ Gd d d eZ Gd d d eZ Gd ddeZ GdddeZGdddeZGddde eeZGdddeZGdddeZGdddeZGdddeZdS)rzF A namespace class for defining common language unicode_sets. c@seZdZdZddgZdS) zpyparsing_unicode.Latin1z/Unicode set for Latin-1 Unicode Character Ranger~N)rr)rr)r r r rrrrrrLatin1src@seZdZdZdgZdS)zpyparsing_unicode.LatinAz/Unicode set for Latin-A Unicode Character RangeN)rr)r r r rrrrrrLatinAsrc@seZdZdZdgZdS)zpyparsing_unicode.LatinBz/Unicode set for Latin-B Unicode Character RangeON)rr)r r r rrrrrrLatinBsrc@s6eZdZdZd"d#d$d%d&d'd(d)d*d+d,d-d.d/d0d1d2gZd!S)3zpyparsing_unicode.Greekz.Unicode set for Greek Unicode Character Rangesp EHMPWY[]_}N)rr)rr)rr)rr)rr)rr)r)r)r)rr)rr)rr)rr)rr)rr)rr)rr)r r r rrrrrrGreeks rc@seZdZdZdgZdS)zpyparsing_unicode.Cyrillicz0Unicode set for Cyrillic Unicode Character RangeN)rr)r r r rrrrrrCyrillicsrc@seZdZdZddgZdS) zpyparsing_unicode.Chinesez/Unicode set for Chinese Unicode Character RangeN0?0N)rr)rr)r r r rrrrrrChinesesrc@sDeZdZdZgZGdddeZGdddeZGdddeZdS) zpyparsing_unicode.Japanesez`Unicode set for Japanese Unicode Character Range, combining Kanji, Hiragana, and Katakana rangesc@seZdZdZddgZdS) z pyparsing_unicode.Japanese.Kanjiz-Unicode set for Kanji Unicode Character RangeN鿟0?0N)rr)rr)r r r rrrrrrKanjisrc@seZdZdZdgZdS)z#pyparsing_unicode.Japanese.Hiraganaz0Unicode set for Hiragana Unicode Character Range@00N)rr)r r r rrrrrrHiraganasrc@seZdZdZdgZdS)z#pyparsing_unicode.Japanese.Katakanaz1Unicode set for Katakana Unicode Character Range00N)rr)r r r rrrrrrKatakanasrN) r r r rrrrrrrrrrJapaneses rc@s eZdZdZddddddgZdS)zpyparsing_unicode.Koreanz.Unicode set for Korean Unicode Character Range011`0?0N)rr)rr)rr)rr)rr)rr)r r r rrrrrrKoreansrc@seZdZdZdS)zpyparsing_unicode.CJKzTUnicode set for combined Chinese, Japanese, and Korean (CJK) Unicode Character RangeN)r r r rrrrrCJKsrc@seZdZdZddgZdS) zpyparsing_unicode.Thaiz,Unicode set for Thai Unicode Character Range:?[N)rr)rr)r r r rrrrrrThaisrc@seZdZdZd d d gZdS) zpyparsing_unicode.Arabicz.Unicode set for Arabic Unicode Character RangeN)r r )r r )r r)r r r rrrrrrArabicsrc@seZdZdZdgZdS)zpyparsing_unicode.Hebrewz.Unicode set for Hebrew Unicode Character RangeN)rr)r r r rrrrrrHebrewsrc@seZdZdZddgZdS) zpyparsing_unicode.Devanagariz2Unicode set for Devanagari Unicode Character Range  N)rr)rr)r r r rrrrrr DevanagarisrN)r r r rr maxunicoderrrrrrrrrrrrrrrrrrrrs uالعربيةu中文uкириллицаuΕλληνικάuעִברִיתu 日本語u漢字u カタカナu ひらがなu 한국어u ไทยuदेवनागरी__main__selectfromz_$r )rcolumnsrZtablescommandaK # '*' 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)rF)N)FT)T)r)T)rrrrrweakrefrr r;rrrrrrirrr itertoolsr ImportErrorr_threadr threadingcollections.abcrrr rZ ordereddictr rr__all__r version_inforrNmaxsizerXrrchrr5rrrrrdreversedrrrfrr~rrZmaxintxrangerZ __builtin__rfnamerrrrrrascii_uppercaseascii_lowercaserDrbrTrCr r printablerfrr,r.r0r2r5rrr1registerrIrZrWryr}r~rarr3r;rr&r#rIrr rrr|r>rBr6r4rr=rrr"r!r9r8r@r?r/rr+r%rr-rr$r'rr(rArrr*r7rr<rrrr:r)rrrPrLr r_r^rzrcrQrwrxrzrrSrYrXrqrpr _escapedPunc_escapedHexChar_escapedOctChar _singleChar _charRangerr=ror]rlrjr}rtrRrSr[r\rurTr{rdr_r`ryrerNrnrirsr`rvrErgrGrFrrrr'rKrkrHrUr*rmrOrMrVrhrrrJr~rrrrrrrrsetattrrrrrrrrrr Z selectTokenZ fromTokenidentZ columnNameZcolumnNameListZ columnSpecZ tableNameZ tableNameListZ simpleSQLrWrrrrrrrrr^s2                  8]      @6 &I E' MFlSXJM K,&#BvY-D0  $  P' *     0  0  #   E&a{   (  0 '/L"    "