pyparsing module¶
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
"<salutation>, <addressee>!"
), built up using Word
,
Literal
, and And
elements
(the '+'
operators create And
expressions,
and the strings are auto-converted to Literal
expressions):
from pyparsing import Word, alphas
# define grammar of a greeting
greet = Word(alphas) + "," + Word(alphas) + "!"
hello = "Hello, World!"
print(hello, "->", greet.parse_string(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 ParseResults
object returned from
ParserElement.parse_string
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 ParserElement
and 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
Literal
andCaselessLiteral
classesconstruct character word-group expressions using the
Word
classsee how to create repetitive expressions using
ZeroOrMore
andOneOrMore
classesuse
'+'
,'|'
,'^'
, and'&'
operators to combine simple expressions into more complex onesassociate names with your parsed results using
ParserElement.set_results_name
access the parsed data, which is returned as a
ParseResults
objectfind some helpful expression short-cuts like
DelimitedList
andone_of
find more useful common expressions in the
pyparsing_common
namespace class
- class pyparsing.And(exprs_arg: Iterable[ParserElement], savelist: bool = True)¶
Bases:
ParseExpression
Requires all given
ParserElement
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 = Word(alphas)[1, ...] expr = And([integer("id"), name_expr("name"), integer("age")]) # more easily written as: expr = integer("id") + name_expr("name") + integer("age")
- __init__(exprs_arg: Iterable[ParserElement], savelist: bool = True)¶
- class pyparsing.AtLineStart(expr: ParserElement | str)¶
Bases:
ParseElementEnhance
Matches if an expression matches 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 (AtLineStart('AAA') + rest_of_line).search_string(test): print(t)
prints:
['AAA', ' this line'] ['AAA', ' and this line']
- __init__(expr: ParserElement | str)¶
- class pyparsing.AtStringStart(expr: ParserElement | str)¶
Bases:
ParseElementEnhance
Matches if expression matches at the beginning of the parse string:
AtStringStart(Word(nums)).parse_string("123") # prints ["123"] AtStringStart(Word(nums)).parse_string(" 123") # raises ParseException
- __init__(expr: ParserElement | str)¶
- class pyparsing.CaselessKeyword(match_string: str = '', ident_chars: str | None = None, *, matchString: str = '', identChars: str | None = None)¶
Bases:
Keyword
Caseless version of
Keyword
.Example:
CaselessKeyword("CMD")[1, ...].parse_string("cmd CMD Cmd10") # -> ['CMD', 'CMD']
(Contrast with example for
CaselessLiteral
.)- __init__(match_string: str = '', ident_chars: str | None = None, *, matchString: str = '', identChars: str | None = None)¶
- class pyparsing.CaselessLiteral(match_string: str = '', *, matchString: str = '')¶
Bases:
Literal
Token to match a specified string, ignoring case of letters. Note: the matched results will always be in the case of the given match string, NOT the case of the input text.
Example:
CaselessLiteral("CMD")[1, ...].parse_string("cmd CMD Cmd10") # -> ['CMD', 'CMD', 'CMD']
(Contrast with example for
CaselessKeyword
.)- __init__(match_string: str = '', *, matchString: str = '')¶
- class pyparsing.Char(charset: str, as_keyword: bool = False, exclude_chars: str | None = None, *, asKeyword: bool = False, excludeChars: str | None = None)¶
Bases:
Word
A short-cut class for defining
Word
(characters, exact=1)
, when defining a match of any single character in a string of characters.- __init__(charset: str, as_keyword: bool = False, exclude_chars: str | None = None, *, asKeyword: bool = False, excludeChars: str | None = None)¶
- class pyparsing.CharsNotIn(not_chars: str = '', min: int = 1, max: int = 0, exact: int = 0, *, notChars: str = '')¶
Bases:
Token
Token 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 formax
andexact
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).parse_string("dkls,lsdkjf,s12 34,@!#,213"))
prints:
['dkls', 'lsdkjf', 's12 34', '@!#', '213']
- __init__(not_chars: str = '', min: int = 1, max: int = 0, exact: int = 0, *, notChars: str = '')¶
- class pyparsing.CloseMatch(match_string: str, max_mismatches: int | None = None, *, maxMismatches: int = 1, caseless=False)¶
Bases:
Token
A variation on
Literal
which matches “close” matches, that is, strings with at most ‘n’ mismatching characters.CloseMatch
takes parameters:match_string
- string to be matchedcaseless
- a boolean indicating whether to ignore casing when comparing charactersmax_mismatches
- (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 foundoriginal
- 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.parse_string("ATCATCGAAXGGA") # -> (['ATCATCGAAXGGA'], {'mismatches': [[9]], 'original': ['ATCATCGAATGGA']}) patt.parse_string("ATCAXCGAAXGGA") # -> Exception: Expected 'ATCATCGAATGGA' (with up to 1 mismatches) (at char 0), (line:1, col:1) # exact match patt.parse_string("ATCATCGAATGGA") # -> (['ATCATCGAATGGA'], {'mismatches': [[]], 'original': ['ATCATCGAATGGA']}) # close match allowing up to 2 mismatches patt = CloseMatch("ATCATCGAATGGA", max_mismatches=2) patt.parse_string("ATCAXCGAAXGGA") # -> (['ATCAXCGAAXGGA'], {'mismatches': [[4, 9]], 'original': ['ATCATCGAATGGA']})
- __init__(match_string: str, max_mismatches: int | None = None, *, maxMismatches: int = 1, caseless=False)¶
- class pyparsing.Combine(expr: ParserElement, join_string: str = '', adjacent: bool = True, *, joinString: str | None = None)¶
Bases:
TokenConverter
Converter 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.parse_string('3.1416')) # -> ['3', '.', '1416'] # will also erroneously match the following print(real.parse_string('3. 1416')) # -> ['3', '.', '1416'] real = Combine(Word(nums) + '.' + Word(nums)) print(real.parse_string('3.1416')) # -> ['3.1416'] # no match when there are internal spaces print(real.parse_string('3. 1416')) # -> Exception: Expected W:(0123...)
- __init__(expr: ParserElement, join_string: str = '', adjacent: bool = True, *, joinString: str | None = None)¶
- ignore(other) ParserElement ¶
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 = Word(alphas)[...] patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(c_style_comment) patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
- class pyparsing.DelimitedList(expr: str | ParserElement, delim: str | ParserElement = ',', combine: bool = False, min: int | None = None, max: int | None = None, *, allow_trailing_delim: bool = False)¶
Bases:
ParseElementEnhance
- __init__(expr: str | ParserElement, delim: str | ParserElement = ',', combine: bool = False, min: int | None = None, max: int | None = None, *, allow_trailing_delim: bool = False)¶
Helper to define a delimited list of expressions - the delimiter defaults to ‘,’. By default, the list elements and delimiters can have intervening whitespace, and comments, but this can be overridden by passing
combine=True
in the constructor. Ifcombine
is set toTrue
, 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.If
allow_trailing_delim
is set to True, then the list may end with a delimiter.Example:
DelimitedList(Word(alphas)).parse_string("aa,bb,cc") # -> ['aa', 'bb', 'cc'] DelimitedList(Word(hexnums), delim=':', combine=True).parse_string("AA:BB:CC:DD:EE") # -> ['AA:BB:CC:DD:EE']
- class pyparsing.Dict(expr: ParserElement, asdict: bool = False)¶
Bases:
TokenConverter
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.
The optional
asdict
argument when set to True will return the parsed tokens as a Python dict instead of a pyparsing ParseResults.Example:
data_word = Word(alphas) label = data_word + FollowedBy(':') text = "shape: SQUARE posn: upper left color: light blue texture: burlap" attr_expr = (label + Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join)) # print attributes as plain groups print(attr_expr[1, ...].parse_string(text).dump()) # instead of OneOrMore(expr), parse using Dict(Group(expr)[1, ...]) - Dict will auto-assign names result = Dict(Group(attr_expr)[1, ...]).parse_string(text) print(result.dump()) # access named fields as dict entries, or output as dict print(result['shape']) print(result.as_dict())
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
ParseResults
of accessing fields by results name.- __init__(expr: ParserElement, asdict: bool = False)¶
- class pyparsing.Each(exprs: Iterable[ParserElement], savelist: bool = True)¶
Bases:
ParseExpression
Requires all given
ParserElement
s to be found, but in any order. Expressions may be separated by whitespace.May be constructed using the
'&'
operator.Example:
color = one_of("RED ORANGE YELLOW GREEN BLUE PURPLE BLACK WHITE BROWN") shape_type = one_of("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 & Opt(color_attr) & Opt(size_attr) shape_spec.run_tests(''' 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
- __init__(exprs: Iterable[ParserElement], savelist: bool = True)¶
- class pyparsing.Empty(match_string: str = '', *, matchString: str = '')¶
Bases:
Literal
An empty token, will always match.
- __init__(match_string='', *, matchString='')¶
- class pyparsing.FollowedBy(expr: ParserElement | str)¶
Bases:
ParseElementEnhance
Lookahead 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, stop_on=label).set_parse_action(' '.join)) attr_expr[1, ...].parse_string("shape: SQUARE color: BLACK posn: upper left").pprint()
prints:
[['shape', 'SQUARE'], ['color', 'BLACK'], ['posn', 'upper left']]
- __init__(expr: ParserElement | str)¶
- class pyparsing.Forward(other: ParserElement | str | None = None)¶
Bases:
ParseElementEnhance
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:fwd_expr << a | b | c
will actually be evaluated as:
(fwd_expr << 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
:fwd_expr << (a | b | c)
Converting to use the
'<<='
operator instead will avoid this problem.See
ParseResults.pprint
for an example of a recursive parser created usingForward
.- __init__(other: ParserElement | str | None = None)¶
- __or__(other) ParserElement ¶
Implementation of
|
operator - returnsMatchFirst
- copy() ParserElement ¶
Make a copy of this
ParserElement
. Useful for defining different parse actions for the same parsing pattern, using copies of the original parse element.Example:
integer = Word(nums).set_parse_action(lambda toks: int(toks[0])) integerK = integer.copy().add_parse_action(lambda toks: toks[0] * 1024) + Suppress("K") integerM = integer.copy().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M") print((integerK | integerM | integer)[1, ...].parse_string("5K 100 640K 256M"))
prints:
[5120, 100, 655360, 268435456]
Equivalent form of
expr.copy()
is justexpr()
:integerM = integer().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M")
- ignoreWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
ignore_whitespace
- ignore_whitespace(recursive: bool = True) ParserElement ¶
Enables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern.- Parameters:
recursive – If
True
(the default), also enable whitespace skipping in child elements (if any)
- leaveWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
leave_whitespace
- leave_whitespace(recursive: bool = True) ParserElement ¶
Disables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern. This is normally only used internally by the pyparsing module, but may be needed in some whitespace-sensitive grammars.- Parameters:
recursive – If true (the default), also disable whitespace skipping in child elements (if any)
- validate(validateTrace=None) None ¶
Check defined expressions for valid structure, check for infinite recursive definitions.
- class pyparsing.GoToColumn(colno: int)¶
Bases:
PositionToken
Token to advance to a specific column of input text; useful for tabular report scraping.
- __init__(colno: int)¶
- class pyparsing.Group(expr: ParserElement, aslist: bool = False)¶
Bases:
TokenConverter
Converter to return the matched tokens as a list - useful for returning tokens of
ZeroOrMore
andOneOrMore
expressions.The optional
aslist
argument when set to True will return the parsed tokens as a Python list instead of a pyparsing ParseResults.Example:
ident = Word(alphas) num = Word(nums) term = ident | num func = ident + Opt(DelimitedList(term)) print(func.parse_string("fn a, b, 100")) # -> ['fn', 'a', 'b', '100'] func = ident + Group(Opt(DelimitedList(term))) print(func.parse_string("fn a, b, 100")) # -> ['fn', ['a', 'b', '100']]
- __init__(expr: ParserElement, aslist: bool = False)¶
- class pyparsing.IndentedBlock(expr: ParserElement, *, recursive: bool = False, grouped: bool = True)¶
Bases:
ParseElementEnhance
Expression to match one or more expressions at a given indentation level. Useful for parsing text where structure is implied by indentation (like Python source code).
- __init__(expr: ParserElement, *, recursive: bool = False, grouped: bool = True)¶
- class pyparsing.Keyword(match_string: str = '', ident_chars: str | None = None, caseless: bool = False, *, matchString: str = '', identChars: str | None = None)¶
Bases:
Token
Token to exactly match a specified string as a keyword, that is, it must be immediately preceded and followed by whitespace or non-keyword characters. Compare with
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:
ident_chars
is a string of characters that would be valid identifier characters, defaulting to all alphanumerics + “_” and “$”caseless
allows case-insensitive matching, default isFalse
.
Example:
Keyword("start").parse_string("start") # -> ['start'] Keyword("start").parse_string("starting") # -> Exception
For case-insensitive matching, use
CaselessKeyword
.- __init__(match_string: str = '', ident_chars: str | None = None, caseless: bool = False, *, matchString: str = '', identChars: str | None = None)¶
- static setDefaultKeywordChars(chars) None ¶
Deprecated - use
set_default_keyword_chars
- class pyparsing.LineEnd¶
Bases:
PositionToken
Matches if current position is at the end of a line within the parse string
- __init__()¶
- class pyparsing.LineStart¶
Bases:
PositionToken
Matches if current position is at the beginning of a line within the parse string
Example:
test = '''\ AAA this line AAA and this line AAA but not this one B AAA and definitely not this one ''' for t in (LineStart() + 'AAA' + rest_of_line).search_string(test): print(t)
prints:
['AAA', ' this line'] ['AAA', ' and this line']
- __init__()¶
- class pyparsing.Literal(match_string: str = '', *, matchString: str = '')¶
Bases:
Token
Token to exactly match a specified string.
Example:
Literal('abc').parse_string('abc') # -> ['abc'] Literal('abc').parse_string('abcdef') # -> ['abc'] Literal('abc').parse_string('ab') # -> Exception: Expected "abc"
For case-insensitive matching, use
CaselessLiteral
.For keyword matching (force word break before and after the matched string), use
Keyword
orCaselessKeyword
.- __init__(match_string: str = '', *, matchString: str = '')¶
- static __new__(cls, match_string: str = '', *, matchString: str = '')¶
- class pyparsing.Located(expr: ParserElement | str, savelist: bool = False)¶
Bases:
ParseElementEnhance
Decorates 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 beginslocn_end
- location where matched expression endsvalue
- the actual parsed results
Be careful if the input text contains
<TAB>
characters, you may want to callParserElement.parse_with_tabs
Example:
wd = Word(alphas) for match in Located(wd).search_string("ljsdf123lksdjjf123lkkjj1222"): print(match)
prints:
[0, ['ljsdf'], 5] [8, ['lksdjjf'], 15] [18, ['lkkjj'], 23]
- class pyparsing.MatchFirst(exprs: Iterable[ParserElement], savelist: bool = False)¶
Bases:
ParseExpression
Requires that at least one
ParserElement
is found. If more than one expression matches, 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.search_string("123 3.1416 789")) # Fail! -> [['123'], ['3'], ['1416'], ['789']] # put more selective expression first number = Combine(Word(nums) + '.' + Word(nums)) | Word(nums) print(number.search_string("123 3.1416 789")) # Better -> [['123'], ['3.1416'], ['789']]
- __init__(exprs: Iterable[ParserElement], savelist: bool = False)¶
- class pyparsing.NotAny(expr: ParserElement | str)¶
Bases:
ParseElementEnhance
Lookahead 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 = Opt(NOT) + ident # very crude boolean expression - to support parenthesis groups and # operation hierarchy, use infix_notation boolean_expr = boolean_term + ((AND | OR) + boolean_term)[...] # integers that are followed by "." are actually floats integer = Word(nums) + ~Char(".")
- __init__(expr: ParserElement | str)¶
- class pyparsing.OneOrMore(expr: str | ParserElement, stop_on: ParserElement | str | None = None, *, stopOn: ParserElement | str | None = None)¶
Bases:
_MultipleMatch
Repetition of one or more of the given expression.
Parameters:
expr
- expression that must match one or more timesstop_on
- (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).set_parse_action(' '.join)) text = "shape: SQUARE posn: upper left color: BLACK" attr_expr[1, ...].parse_string(text).pprint() # Fail! read 'color' as data instead of next label -> [['shape', 'SQUARE color']] # use stop_on attribute for OneOrMore to avoid reading label string as part of the data attr_expr = Group(label + Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join)) OneOrMore(attr_expr).parse_string(text).pprint() # Better -> [['shape', 'SQUARE'], ['posn', 'upper left'], ['color', 'BLACK']] # could also be written as (attr_expr * (1,)).parse_string(text).pprint()
- class pyparsing.OnlyOnce(method_call)¶
Bases:
object
Wrapper for parse actions, to ensure they are only called once.
- __call__(s, l, t)¶
Call self as a function.
- __init__(method_call)¶
- __weakref__¶
list of weak references to the object
- reset()¶
Allow the associated parse action to be called once more.
- class pyparsing.OpAssoc(value, names=<not given>, *values, module=None, qualname=None, type=None, start=1, boundary=None)¶
Bases:
Enum
Enumeration of operator associativity - used in constructing InfixNotationOperatorSpec for
infix_notation
- class pyparsing.Opt(expr: ~pyparsing.core.ParserElement | str, default: ~typing.Any = <pyparsing.core._NullToken object>)¶
Bases:
ParseElementEnhance
Optional matching of the given expression.
Parameters:
expr
- expression that must match zero or more timesdefault
(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) + Opt('-' + Word(nums, exact=4))) zip.run_tests(''' # 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)
- __init__(expr: ~pyparsing.core.ParserElement | str, default: ~typing.Any = <pyparsing.core._NullToken object>)¶
- class pyparsing.Or(exprs: Iterable[ParserElement], savelist: bool = False)¶
Bases:
ParseExpression
Requires that at least one
ParserElement
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.search_string("123 3.1416 789"))
prints:
[['123'], ['3.1416'], ['789']]
- __init__(exprs: Iterable[ParserElement], savelist: bool = False)¶
- exception pyparsing.ParseBaseException(pstr: str, loc: int = 0, msg: str | None = None, elem=None)¶
Bases:
Exception
base exception class for all parsing runtime exceptions
- __init__(pstr: str, loc: int = 0, msg: str | None = None, elem=None)¶
- __repr__()¶
Return repr(self).
- __str__() str ¶
Return str(self).
- property col: int¶
Return the 1-based column on the line of text where the exception occurred.
- property column: int¶
Return the 1-based column on the line of text where the exception occurred.
- explain(depth: int = 16) str ¶
Method to translate the Python internal traceback into a list of the pyparsing expressions that caused the exception to be raised.
Parameters:
depth (default=16) - number of levels back in the stack trace to list expression and function names; if None, the full stack trace names will be listed; if 0, only the failing input line, marker, and exception string will be shown
Returns a multi-line string listing the ParserElements and/or function names in the exception’s stack trace.
Example:
# an expression to parse 3 integers expr = pp.Word(pp.nums) * 3 try: # a failing parse - the third integer is prefixed with "A" expr.parse_string("123 456 A789") except pp.ParseException as pe: print(pe.explain(depth=0))
prints:
123 456 A789 ^ ParseException: Expected W:(0-9), found 'A' (at char 8), (line:1, col:9)
Note: the diagnostic output will include string representations of the expressions that failed to parse. These representations will be more helpful if you use set_name to give identifiable names to your expressions. Otherwise they will use the default string forms, which may be cryptic to read.
Note: pyparsing’s default truncation of exception tracebacks may also truncate the stack of expressions that are displayed in the
explain
output. To get the full listing of parser expressions, you may have to setParserElement.verbose_stacktrace = True
- static explain_exception(exc: Exception, depth: int = 16) str ¶
Method to take an exception and translate the Python internal traceback into a list of the pyparsing expressions that caused the exception to be raised.
Parameters:
exc - exception raised during parsing (need not be a ParseException, in support of Python exceptions that might be raised in a parse action)
depth (default=16) - number of levels back in the stack trace to list expression and function names; if None, the full stack trace names will be listed; if 0, only the failing input line, marker, and exception string will be shown
Returns a multi-line string listing the ParserElements and/or function names in the exception’s stack trace.
- property line: str¶
Return the line of text where the exception occurred.
- property lineno: int¶
Return the 1-based line number of text where the exception occurred.
- markInputline(marker_string: str | None = None, *, markerString: str = '>!<') str ¶
Deprecated - use
mark_input_line
- mark_input_line(marker_string: str | None = None, *, markerString: str = '>!<') str ¶
Extracts the exception line from the input string, and marks the location of the exception with a special symbol.
- class pyparsing.ParseElementEnhance(expr: ParserElement | str, savelist: bool = False)¶
Bases:
ParserElement
Abstract subclass of
ParserElement
, for combining and post-processing parsed tokens.- __init__(expr: ParserElement | str, savelist: bool = False)¶
- ignore(other) ParserElement ¶
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 = Word(alphas)[...] patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(c_style_comment) patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
- ignoreWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
ignore_whitespace
- ignore_whitespace(recursive: bool = True) ParserElement ¶
Enables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern.- Parameters:
recursive – If
True
(the default), also enable whitespace skipping in child elements (if any)
- leaveWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
leave_whitespace
- leave_whitespace(recursive: bool = True) ParserElement ¶
Disables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern. This is normally only used internally by the pyparsing module, but may be needed in some whitespace-sensitive grammars.- Parameters:
recursive – If true (the default), also disable whitespace skipping in child elements (if any)
- validate(validateTrace=None) None ¶
Check defined expressions for valid structure, check for infinite recursive definitions.
- exception pyparsing.ParseException(pstr: str, loc: int = 0, msg: str | None = None, elem=None)¶
Bases:
ParseBaseException
Exception thrown when a parse expression doesn’t match the input string
Example:
integer = Word(nums).set_name("integer") try: integer.parse_string("ABC") except ParseException as pe: print(pe) print(f"column: {pe.column}")
prints:
Expected integer (at char 0), (line:1, col:1) column: 1
- __weakref__¶
list of weak references to the object
- class pyparsing.ParseExpression(exprs: Iterable[ParserElement], savelist: bool = False)¶
Bases:
ParserElement
Abstract subclass of ParserElement, for combining and post-processing parsed tokens.
- __init__(exprs: Iterable[ParserElement], savelist: bool = False)¶
- copy() ParserElement ¶
Make a copy of this
ParserElement
. Useful for defining different parse actions for the same parsing pattern, using copies of the original parse element.Example:
integer = Word(nums).set_parse_action(lambda toks: int(toks[0])) integerK = integer.copy().add_parse_action(lambda toks: toks[0] * 1024) + Suppress("K") integerM = integer.copy().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M") print((integerK | integerM | integer)[1, ...].parse_string("5K 100 640K 256M"))
prints:
[5120, 100, 655360, 268435456]
Equivalent form of
expr.copy()
is justexpr()
:integerM = integer().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M")
- ignore(other) ParserElement ¶
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 = Word(alphas)[...] patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(c_style_comment) patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
- ignoreWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
ignore_whitespace
- ignore_whitespace(recursive: bool = True) ParserElement ¶
- Extends
ignore_whitespace
defined in base class, and also invokesleave_whitespace
on all contained expressions.
- Extends
- leaveWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
leave_whitespace
- leave_whitespace(recursive: bool = True) ParserElement ¶
- Extends
leave_whitespace
defined in base class, and also invokesleave_whitespace
on all contained expressions.
- Extends
- validate(validateTrace=None) None ¶
Check defined expressions for valid structure, check for infinite recursive definitions.
- exception pyparsing.ParseFatalException(pstr: str, loc: int = 0, msg: str | None = None, elem=None)¶
Bases:
ParseBaseException
User-throwable exception thrown when inconsistent parse content is found; stops all parsing immediately
- __weakref__¶
list of weak references to the object
- class pyparsing.ParseResults(toklist=None, name=None, **kwargs)¶
Bases:
object
Structured parse results, to provide multiple means of access to the parsed data:
as a list (
len(results)
)by list index (
results[0], results[1]
, etc.)by attribute (
results.<results_name>
- seeParserElement.set_results_name
)
Example:
integer = Word(nums) date_str = (integer.set_results_name("year") + '/' + integer.set_results_name("month") + '/' + integer.set_results_name("day")) # equivalent form: # date_str = (integer("year") + '/' # + integer("month") + '/' # + integer("day")) # parse_string returns a ParseResults object result = date_str.parse_string("1999/12/31") def test(s, fn=repr): print(f"{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'
- class List(contained=None)¶
Bases:
list
Simple wrapper class to distinguish parsed list results that should be preserved as actual Python lists, instead of being converted to
ParseResults
:LBRACK, RBRACK = map(pp.Suppress, "[]") element = pp.Forward() item = ppc.integer element_list = LBRACK + pp.DelimitedList(element) + RBRACK # add parse actions to convert from ParseResults to actual Python collection types def as_python_list(t): return pp.ParseResults.List(t.as_list()) element_list.add_parse_action(as_python_list) element <<= item | element_list element.run_tests(''' 100 [2,3,4] [[2, 1],3,4] [(2, 1),3,4] (2,3,4) ''', post_parse=lambda s, r: (r[0], type(r[0])))
prints:
100 (100, <class 'int'>) [2,3,4] ([2, 3, 4], <class 'list'>) [[2, 1],3,4] ([[2, 1], 3, 4], <class 'list'>)
(Used internally by
Group
when aslist=True.)- static __new__(cls, contained=None)¶
- __weakref__¶
list of weak references to the object
- __dir__()¶
Default dir() implementation.
- __getstate__()¶
Helper for pickle.
- __init__(toklist=None, name=None, asList=True, modal=True, isinstance=<built-in function isinstance>) None ¶
- static __new__(cls, toklist=None, name=None, **kwargs)¶
- __repr__() str ¶
Return repr(self).
- __str__() str ¶
Return str(self).
- append(item)¶
Add single element to end of
ParseResults
list of elements.Example:
numlist = Word(nums)[...] print(numlist.parse_string("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))) numlist.add_parse_action(append_sum) print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321', 444]
- as_dict() dict ¶
Returns the named parse results as a nested dictionary.
Example:
integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") result = date_str.parse_string('12/31/1999') print(type(result), repr(result)) # -> <class 'pyparsing.ParseResults'> (['12', '/', '31', '/', '1999'], {'day': [('1999', 4)], 'year': [('12', 0)], 'month': [('31', 2)]}) result_dict = result.as_dict() print(type(result_dict), repr(result_dict)) # -> <class '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.as_dict())) # -> {"month": "31", "day": "1999", "year": "12"}
- as_list(*, flatten: bool = False) list ¶
Returns the parse results as a nested list of matching tokens, all converted to strings. If flatten is True, all the nesting levels in the returned list are collapsed.
Example:
patt = Word(alphas)[1, ...] result = patt.parse_string("sldkj lsdkj sldkj") # even though the result prints in string-like form, it is actually a pyparsing ParseResults print(type(result), result) # -> <class 'pyparsing.ParseResults'> ['sldkj', 'lsdkj', 'sldkj'] # Use as_list() to create an actual list result_list = result.as_list() print(type(result_list), result_list) # -> <class 'list'> ['sldkj', 'lsdkj', 'sldkj']
- clear()¶
Clear all elements and results names.
- copy() ParseResults ¶
Returns a new shallow copy of a
ParseResults
object. ParseResults items contained within the source are shared with the copy. UseParseResults.deepcopy()
to create a copy with its own separate content values.
- deepcopy() ParseResults ¶
Returns a new deep copy of a
ParseResults
object.
- dump(indent='', full=True, include_list=True, _depth=0) str ¶
Diagnostic method for listing out the contents of a
ParseResults
. Accepts an optionalindent
argument so that this string can be embedded in a nested display of other data.Example:
integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") result = date_str.parse_string('1999/12/31') print(result.dump())
prints:
['1999', '/', '12', '/', '31'] - day: '31' - month: '12' - year: '1999'
- extend(itemseq)¶
Add sequence of elements to end of
ParseResults
list of elements.Example:
patt = Word(alphas)[1, ...] # 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) patt.add_parse_action(make_palindrome) print(patt.parse_string("lskdj sdlkjf lksd")) # -> 'lskdjsdlkjflksddsklfjkldsjdksl'
- classmethod from_dict(other, name=None) ParseResults ¶
Helper classmethod to construct a
ParseResults
from adict
, preserving the name-value relations as results names. If an optionalname
argument is given, a nestedParseResults
will be returned.
- get(key, default_value=None)¶
Returns named result matching the given key, or if there is no such name, then returns the given
default_value
orNone
if nodefault_value
is specified.Similar to
dict.get()
.Example:
integer = Word(nums) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") result = date_str.parse_string("1999/12/31") print(result.get("year")) # -> '1999' print(result.get("hour", "not specified")) # -> 'not specified' print(result.get("hour")) # -> None
- get_name() str | None ¶
Returns the results name for this token expression. Useful when several different expressions might match at a particular location.
Example:
integer = Word(nums) ssn_expr = Regex(r"\d\d\d-\d\d-\d\d\d\d") house_number_expr = Suppress('#') + Word(nums, alphanums) user_data = (Group(house_number_expr)("house_number") | Group(ssn_expr)("ssn") | Group(integer)("age")) user_info = user_data[1, ...] result = user_info.parse_string("22 111-22-3333 #221B") for item in result: print(item.get_name(), ':', item[0])
prints:
age : 22 ssn : 111-22-3333 house_number : 221B
- haskeys() bool ¶
Since
keys()
returns an iterator, this method is helpful in bypassing code that looks for the existence of any defined results names.
- insert(index, ins_string)¶
Inserts new element at location index in the list of parsed tokens.
Similar to
list.insert()
.Example:
numlist = Word(nums)[...] print(numlist.parse_string("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) numlist.add_parse_action(insert_locn) print(numlist.parse_string("0 123 321")) # -> [0, '0', '123', '321']
- pop(*args, **kwargs)¶
Removes and returns item at specified index (default=
last
). Supports bothlist
anddict
semantics forpop()
. If passed no argument or an integer argument, it will uselist
semantics and pop tokens from the list of parsed tokens. If passed a non-integer argument (most likely a string), it will usedict
semantics and pop the corresponding value from any defined results names. A second default return value argument is supported, just as indict.pop()
.Example:
numlist = Word(nums)[...] print(numlist.parse_string("0 123 321")) # -> ['0', '123', '321'] def remove_first(tokens): tokens.pop(0) numlist.add_parse_action(remove_first) print(numlist.parse_string("0 123 321")) # -> ['123', '321'] label = Word(alphas) patt = label("LABEL") + Word(nums)[1, ...] print(patt.parse_string("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.add_parse_action(remove_LABEL) print(patt.parse_string("AAB 123 321").dump())
prints:
['AAB', '123', '321'] - LABEL: 'AAB' ['AAB', '123', '321']
- pprint(*args, **kwargs)¶
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.parse_string("fna a,b,(fnb c,d,200),100") result.pprint(width=40)
prints:
['fna', ['a', 'b', ['(', 'fnb', ['c', 'd', '200'], ')'], '100']]
- exception pyparsing.ParseSyntaxException(pstr: str, loc: int = 0, msg: str | None = None, elem=None)¶
Bases:
ParseFatalException
Just like
ParseFatalException
, but thrown internally when anErrorStop
(‘-’ operator) indicates that parsing is to stop immediately because an unbacktrackable syntax error has been found.
- class pyparsing.ParserElement(savelist: bool = False)¶
Bases:
ABC
Abstract base level parser element class.
- class DebugActions(debug_try, debug_match, debug_fail)¶
Bases:
NamedTuple
- __getnewargs__()¶
Return self as a plain tuple. Used by copy and pickle.
- static __new__(_cls, debug_try: Optional[DebugStartAction], debug_match: Optional[DebugSuccessAction], debug_fail: Optional[DebugExceptionAction])¶
Create new instance of DebugActions(debug_try, debug_match, debug_fail)
- __repr__()¶
Return a nicely formatted representation string
- debug_fail: Callable[[str, int, ParserElement, Exception, bool], None] | None¶
Alias for field number 2
- debug_match: Callable[[str, int, int, ParserElement, ParseResults, bool], None] | None¶
Alias for field number 1
- debug_try: Callable[[str, int, ParserElement, bool], None] | None¶
Alias for field number 0
- class NullCache¶
Bases:
dict
A null cache type for initialization of the packrat_cache class variable. If/when enable_packrat() is called, this null cache will be replaced by a proper _CacheType class instance.
- __weakref__¶
list of weak references to the object
- clear() None. Remove all items from D. ¶
- get(*args) Any ¶
Return the value for key if key is in the dictionary, else default.
- __add__(other) ParserElement ¶
Implementation of
+
operator - returnsAnd
. Adding strings to aParserElement
converts them toLiteral
s by default.Example:
greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print(hello, "->", greet.parse_string(hello))
prints:
Hello, World! -> ['Hello', ',', 'World', '!']
...
may be used as a parse expression as a short form ofSkipTo
:Literal('start') + ... + Literal('end')
is equivalent to:
Literal('start') + SkipTo('end')("_skipped*") + Literal('end')
Note that the skipped text is returned with ‘_skipped’ as a results name, and to support having multiple skips in the same parser, the value returned is a list of all skipped text.
- __and__(other) ParserElement ¶
Implementation of
&
operator - returnsEach
- __call__(name: str | None = None) ParserElement ¶
Shortcut for
set_results_name
, withlist_all_matches=False
.If
name
is given with a trailing'*'
character, thenlist_all_matches
will be passed asTrue
.If
name
is omitted, same as callingcopy
.Example:
# these are equivalent userdata = Word(alphas).set_results_name("name") + Word(nums + "-").set_results_name("socsecno") userdata = Word(alphas)("name") + Word(nums + "-")("socsecno")
- __eq__(other)¶
Return self==value.
- __getitem__(key)¶
use
[]
indexing notation as a short form for expression repetition:expr[n]
is equivalent toexpr*n
expr[m, n]
is equivalent toexpr*(m, n)
expr[n, ...]
orexpr[n,]
is equivalentto
expr*n + ZeroOrMore(expr)
(read as “at least n instances ofexpr
”)
expr[..., n]
is equivalent toexpr*(0, n)
(read as “0 to n instances of
expr
”)
expr[...]
andexpr[0, ...]
are equivalent toZeroOrMore(expr)
expr[1, ...]
is equivalent toOneOrMore(expr)
None
may be used in place of...
.Note that
expr[..., n]
andexpr[m, n]
do not raise an exception if more thann
expr
s exist in the input stream. If this behavior is desired, then writeexpr[..., n] + ~expr
.For repetition with a stop_on expression, use slice notation:
expr[...: end_expr]
andexpr[0, ...: end_expr]
are equivalent toZeroOrMore(expr, stop_on=end_expr)
expr[1, ...: end_expr]
is equivalent toOneOrMore(expr, stop_on=end_expr)
- __hash__()¶
Return hash(self).
- __init__(savelist: bool = False)¶
- __invert__() ParserElement ¶
Implementation of
~
operator - returnsNotAny
- __mul__(other) ParserElement ¶
Implementation of
*
operator, allows use ofexpr * 3
in place ofexpr + expr + expr
. Expressions may also be multiplied by a 2-integer tuple, similar to{min, max}
multipliers in regular expressions. Tuples may also includeNone
as in:expr*(n, None)
orexpr*(n, )
is equivalent toexpr*n + ZeroOrMore(expr)
(read as “at least n instances ofexpr
”)expr*(None, n)
is equivalent toexpr*(0, n)
(read as “0 to n instances ofexpr
”)expr*(None, None)
is equivalent toZeroOrMore(expr)
expr*(1, None)
is equivalent toOneOrMore(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 writeexpr*(None, n) + ~expr
- __or__(other) ParserElement ¶
Implementation of
|
operator - returnsMatchFirst
- __radd__(other) ParserElement ¶
Implementation of
+
operator when left operand is not aParserElement
- __rand__(other) ParserElement ¶
Implementation of
&
operator when left operand is not aParserElement
- __repr__() str ¶
Return repr(self).
- __ror__(other) ParserElement ¶
Implementation of
|
operator when left operand is not aParserElement
- __rsub__(other) ParserElement ¶
Implementation of
-
operator when left operand is not aParserElement
- __rxor__(other) ParserElement ¶
Implementation of
^
operator when left operand is not aParserElement
- __str__() str ¶
Return str(self).
- __sub__(other) ParserElement ¶
Implementation of
-
operator, returnsAnd
with error stop
- __weakref__¶
list of weak references to the object
- __xor__(other) ParserElement ¶
Implementation of
^
operator - returnsOr
- addCondition(*fns: Callable[[], bool] | Callable[[ParseResults], bool] | Callable[[int, ParseResults], bool] | Callable[[str, int, ParseResults], bool], **kwargs: Any) ParserElement ¶
Deprecated - use
add_condition
- addParseAction(*fns: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any], **kwargs: Any) ParserElement ¶
Deprecated - use
add_parse_action
- add_condition(*fns: Callable[[], bool] | Callable[[ParseResults], bool] | Callable[[int, ParseResults], bool] | Callable[[str, int, ParseResults], bool], **kwargs: Any) ParserElement ¶
Add a boolean predicate function to expression’s list of parse actions. See
set_parse_action
for function call signatures. Unlikeset_parse_action
, functions passed toadd_condition
need to return boolean success/fail of the condition.Optional keyword arguments:
message
= define a custom message to be used in the raised exceptionfatal
= if True, will raise ParseFatalException to stop parsing immediately; otherwise will raise ParseExceptioncall_during_try
= boolean to indicate if this method should be called during internal tryParse calls, default=False
Example:
integer = Word(nums).set_parse_action(lambda toks: int(toks[0])) year_int = integer.copy() year_int.add_condition(lambda toks: toks[0] >= 2000, message="Only support years 2000 and later") date_str = year_int + '/' + integer + '/' + integer result = date_str.parse_string("1999/12/31") # -> Exception: Only support years 2000 and later (at char 0), (line:1, col:1)
- add_parse_action(*fns: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any], **kwargs: Any) ParserElement ¶
Add one or more parse actions to expression’s list of parse actions. See
set_parse_action
.See examples in
copy
.
- canParseNext(instring: str, loc: int, do_actions: bool = False) bool ¶
Deprecated - use
can_parse_next
- copy() ParserElement ¶
Make a copy of this
ParserElement
. Useful for defining different parse actions for the same parsing pattern, using copies of the original parse element.Example:
integer = Word(nums).set_parse_action(lambda toks: int(toks[0])) integerK = integer.copy().add_parse_action(lambda toks: toks[0] * 1024) + Suppress("K") integerM = integer.copy().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M") print((integerK | integerM | integer)[1, ...].parse_string("5K 100 640K 256M"))
prints:
[5120, 100, 655360, 268435456]
Equivalent form of
expr.copy()
is justexpr()
:integerM = integer().add_parse_action(lambda toks: toks[0] * 1024 * 1024) + Suppress("M")
- create_diagram(output_html: TextIO | Path | str, vertical: int = 3, show_results_names: bool = False, show_groups: bool = False, embed: bool = False, **kwargs) None ¶
Create a railroad diagram for the parser.
Parameters:
output_html
(str or file-like object) - output target for generated diagram HTMLvertical
(int) - threshold for formatting multiple alternatives vertically instead of horizontally (default=3)show_results_names
- bool flag whether diagram should show annotations for defined results namesshow_groups
- bool flag whether groups should be highlighted with an unlabeled surrounding boxembed
- bool flag whether generated HTML should omit <HEAD>, <BODY>, and <DOCTYPE> tags to embed the resulting HTML in an enclosing HTML sourcehead
- str containing additional HTML to insert into the <HEAD> section of the generated code; can be used to insert custom CSS stylingbody
- str containing additional HTML to insert at the beginning of the <BODY> section of the generated code
Additional diagram-formatting keyword arguments can also be included; see railroad.Diagram class.
- static disableMemoization() None ¶
Deprecated - use
disable_memoization
- static disable_memoization() None ¶
Disables active Packrat or Left Recursion parsing and their memoization
This method also works if neither Packrat nor Left Recursion are enabled. This makes it safe to call before activating Packrat nor Left Recursion to clear any previous settings.
- static enableLeftRecursion(cache_size_limit: int | None = None, *, force=False) None ¶
Deprecated - use
enable_left_recursion
- static enablePackrat(cache_size_limit: int | None = 128, *, force: bool = False) None ¶
Deprecated - use
enable_packrat
- static enable_left_recursion(cache_size_limit: int | None = None, *, force=False) None ¶
Enables “bounded recursion” parsing, which allows for both direct and indirect left-recursion. During parsing, left-recursive
Forward
elements are repeatedly matched with a fixed recursion depth that is gradually increased until finding the longest match.Example:
import pyparsing as pp pp.ParserElement.enable_left_recursion() E = pp.Forward("E") num = pp.Word(pp.nums) # match `num`, or `num '+' num`, or `num '+' num '+' num`, ... E <<= E + '+' - num | num print(E.parse_string("1+2+3"))
Recursion search naturally memoizes matches of
Forward
elements and may thus skip reevaluation of parse actions during backtracking. This may break programs with parse actions which rely on strict ordering of side-effects.Parameters:
cache_size_limit
- (default=``None``) - memoize at most this manyForward
elements during matching; ifNone
(the default), memoize allForward
elements.
Bounded Recursion parsing works similar but not identical to Packrat parsing, thus the two cannot be used together. Use
force=True
to disable any previous, conflicting settings.
- static enable_packrat(cache_size_limit: int | None = 128, *, force: bool = False) None ¶
Enables “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
ParserElement.enable_packrat
. For best results, callenable_packrat()
immediately after importing pyparsing.Example:
import pyparsing pyparsing.ParserElement.enable_packrat()
Packrat parsing works similar but not identical to Bounded Recursion parsing, thus the two cannot be used together. Use
force=True
to disable any previous, conflicting settings.
- ignore(other: ParserElement) ParserElement ¶
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 = Word(alphas)[...] patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(c_style_comment) patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
- ignoreWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
ignore_whitespace
- ignore_whitespace(recursive: bool = True) ParserElement ¶
Enables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern.- Parameters:
recursive – If
True
(the default), also enable whitespace skipping in child elements (if any)
- static inlineLiteralsUsing(cls: type) None ¶
Deprecated - use
inline_literals_using
- static inline_literals_using(cls: type) None ¶
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.parse_string("1999/12/31") # -> ['1999', '/', '12', '/', '31'] # change to Suppress ParserElement.inline_literals_using(Suppress) date_str = integer("year") + '/' + integer("month") + '/' + integer("day") date_str.parse_string("1999/12/31") # -> ['1999', '12', '31']
- leaveWhitespace(recursive: bool = True) ParserElement ¶
Deprecated - use
leave_whitespace
- leave_whitespace(recursive: bool = True) ParserElement ¶
Disables the skipping of whitespace before matching the characters in the
ParserElement
’s defined pattern. This is normally only used internally by the pyparsing module, but may be needed in some whitespace-sensitive grammars.- Parameters:
recursive – If true (the default), also disable whitespace skipping in child elements (if any)
- matches(test_string: str, parse_all: bool = True, *, parseAll: bool = True) bool ¶
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:
test_string
- to test against this expression for a matchparse_all
- (default=True
) - flag to pass toparse_string
when running tests
Example:
expr = Word(nums) assert expr.matches("100")
- parseFile(file_or_filename: str | Path | TextIO, encoding: str = 'utf-8', parse_all: bool = False, *, parseAll: bool = False) ParseResults ¶
Deprecated - use
parse_file
- parseString(instring: str, parse_all: bool = False, *, parseAll: bool = False) ParseResults ¶
Deprecated - use
parse_string
- parseWithTabs() ParserElement ¶
Deprecated - use
parse_with_tabs
- parse_file(file_or_filename: str | Path | TextIO, encoding: str = 'utf-8', parse_all: bool = False, *, parseAll: bool = False) ParseResults ¶
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.
- parse_string(instring: str, parse_all: bool = False, *, parseAll: bool = False) ParseResults ¶
Parse a string with respect to the parser definition. This function is intended as the primary interface to the client code.
- Parameters:
instring – The input string to be parsed.
parse_all – If set, the entire input string must match the grammar.
parseAll – retained for pre-PEP8 compatibility, will be removed in a future release.
- Raises:
ParseException – Raised if
parse_all
is set and the input string does not match the whole grammar.- Returns:
the parsed data as a
ParseResults
object, which may be accessed as a list, a dict, or an object with attributes if the given parser includes results names.
If the input string is required to match the entire grammar,
parse_all
flag must be set toTrue
. This is also equivalent to ending the grammar withStringEnd
().To report proper column numbers,
parse_string
operates on a copy of the input string where all tabs are converted to spaces (8 spaces per tab, as per the default instring.expandtabs
). If the input string contains tabs and the grammar uses parse actions that use theloc
argument to index into the string being parsed, one can ensure a consistent view of the input string by doing one of the following:calling
parse_with_tabs
on your grammar before callingparse_string
(seeparse_with_tabs
),define your parse action using the full
(s,loc,toks)
signature, and reference the input string using the parse action’ss
argument, orexplicitly expand the tabs in your input string before calling
parse_string
.
Examples:
By default, partial matches are OK.
>>> res = Word('a').parse_string('aaaaabaaa') >>> print(res) ['aaaaa']
The parsing behavior varies by the inheriting class of this abstract class. Please refer to the children directly to see more examples.
It raises an exception if parse_all flag is set and instring does not match the whole grammar.
>>> res = Word('a').parse_string('aaaaabaaa', parse_all=True) Traceback (most recent call last): ... pyparsing.ParseException: Expected end of text, found 'b' (at char 5), (line:1, col:6)
- parse_with_tabs() ParserElement ¶
Overrides default behavior to expand
<TAB>
s to spaces before parsing the input string. Must be called beforeparse_string
when the input grammar contains elements that match<TAB>
characters.
- static resetCache() None ¶
Deprecated - use
reset_cache
- runTests(tests: str | list[str], parse_all: bool = True, comment: ParserElement | str | None = '#', full_dump: bool = True, print_results: bool = True, failure_tests: bool = False, post_parse: Callable[[str, ParseResults], str | None] | None = None, file: TextIO | None = None, with_line_numbers: bool = False, *, parseAll: bool = True, fullDump: bool = True, printResults: bool = True, failureTests: bool = False, postParse: Callable[[str, ParseResults], str | None] | None = None) tuple[bool, list[tuple[str, ParseResults | Exception]]] ¶
Deprecated - use
run_tests
- run_tests(tests: str | list[str], parse_all: bool = True, comment: ParserElement | str | None = '#', full_dump: bool = True, print_results: bool = True, failure_tests: bool = False, post_parse: Callable[[str, ParseResults], str | None] | None = None, file: TextIO | None = None, with_line_numbers: bool = False, *, parseAll: bool = True, fullDump: bool = True, printResults: bool = True, failureTests: bool = False, postParse: Callable[[str, ParseResults], str | None] | None = None) tuple[bool, list[tuple[str, ParseResults | Exception]]] ¶
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 stringsparse_all
- (default=True
) - flag to pass toparse_string
when running testscomment
- (default='#'
) - expression for indicating embedded comments in the test string; pass None to disable comment filteringfull_dump
- (default=True
) - dump results as list followed by results names in nested outline; if False, only dump nested listprint_results
- (default=True
) prints test output to stdoutfailure_tests
- (default=False
) indicates if these tests are expected to fail parsingpost_parse
- (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 outputfile
- (default=None
) optional file-like object to which test output will be written; if None, will default tosys.stdout
with_line_numbers
- default=False
) show test strings with line and column numbers
Returns: a (success, results) tuple, where success indicates that all tests succeeded (or failed if
failure_tests
is True), and the results contain a list of lines of each test’s outputExample:
number_expr = pyparsing_common.number.copy() result = number_expr.run_tests(''' # 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.run_tests(''' # stray character 100Z # missing leading digit before '.' -.100 # too many '.' 3.14.159 ''', failure_tests=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.run_tests(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'
.)
- scanString(instring: str, max_matches: int = 9223372036854775807, overlap: bool = False, always_skip_whitespace=True, *, debug: bool = False, maxMatches: int = 9223372036854775807) Generator[tuple[ParseResults, int, int], None, None] ¶
Deprecated - use
scan_string
- scan_string(instring: str, max_matches: int = 9223372036854775807, overlap: bool = False, always_skip_whitespace=True, *, debug: bool = False, maxMatches: int = 9223372036854775807) Generator[tuple[ParseResults, int, int], None, None] ¶
Scan the input string for expression matches. Each match will return the matching tokens, start location, and end location. May be called with optional
max_matches
argument, to clip scanning after ‘n’ matches are found. Ifoverlap
is specified, then overlapping matches will be reported.Note that the start and end locations are reported relative to the string being parsed. See
parse_string
for more information on parsing strings with embedded tabs.Example:
source = "sldjf123lsdjjkf345sldkjf879lkjsfd987" print(source) for tokens, start, end in Word(alphas).scan_string(source): print(' '*start + '^'*(end-start)) print(' '*start + tokens[0])
prints:
sldjf123lsdjjkf345sldkjf879lkjsfd987 ^^^^^ sldjf ^^^^^^^ lsdjjkf ^^^^^^ sldkjf ^^^^^^ lkjsfd
- searchString(instring: str, max_matches: int = 9223372036854775807, *, debug: bool = False, maxMatches: int = 9223372036854775807) ParseResults ¶
Deprecated - use
search_string
- search_string(instring: str, max_matches: int = 9223372036854775807, *, debug: bool = False, maxMatches: int = 9223372036854775807) ParseResults ¶
Another extension to
scan_string
, simplifying the access to the tokens found to match the given parse expression. May be called with optionalmax_matches
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.search_string("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.search_string("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']
- setBreak(break_flag: bool = True) ParserElement ¶
Deprecated - use
set_break
- setDebug(flag: bool = True, recurse: bool = False) ParserElement ¶
Deprecated - use
set_debug
- setDebugActions(start_action: Callable[[str, int, ParserElement, bool], None], success_action: Callable[[str, int, int, ParserElement, ParseResults, bool], None], exception_action: Callable[[str, int, ParserElement, Exception, bool], None]) ParserElement ¶
Deprecated - use
set_debug_actions
- static setDefaultWhitespaceChars(chars: str) None ¶
Deprecated - use
set_default_whitespace_chars
- setFailAction(fn: Callable[[str, int, ParserElement, Exception], None]) ParserElement ¶
Deprecated - use
set_fail_action
- setName(name: str | None) ParserElement ¶
Deprecated - use
set_name
- setParseAction(*fns: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any], **kwargs: Any) ParserElement ¶
Deprecated - use
set_parse_action
- setResultsName(name: str, list_all_matches: bool = False, *, listAllMatches: bool = False) ParserElement ¶
Deprecated - use
set_results_name
- setWhitespaceChars(chars: set[str] | str, copy_defaults: bool = False) ParserElement ¶
Deprecated - use
set_whitespace_chars
- set_break(break_flag: bool = True) ParserElement ¶
Method to invoke the Python pdb debugger when this element is about to be parsed. Set
break_flag
toTrue
to enable,False
to disable.
- set_debug(flag: bool = True, recurse: bool = False) ParserElement ¶
Enable display of debugging messages while doing pattern matching. Set
flag
toTrue
to enable,False
to disable. Setrecurse
toTrue
to set the debug flag on this expression and all sub-expressions.Example:
wd = Word(alphas).set_name("alphaword") integer = Word(nums).set_name("numword") term = wd | integer # turn on debugging for wd wd.set_debug() term[1, ...].parse_string("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
set_debug_actions
. Prior to attempting to match thewd
expression, the debugging message"Match <exprname> at loc <n>(<line>,<col>)"
is shown. Then if the parse succeeds, a"Matched"
message is shown, or an"Exception raised"
message is shown. Also note the use ofset_name
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 theWord
expression without callingset_name
is"W:(A-Za-z)"
.
- set_debug_actions(start_action: Callable[[str, int, ParserElement, bool], None], success_action: Callable[[str, int, int, ParserElement, ParseResults, bool], None], exception_action: Callable[[str, int, ParserElement, Exception, bool], None]) ParserElement ¶
Customize display of debugging messages while doing pattern matching:
start_action
- method to be called when an expression is about to be parsed; should have the signaturefn(input_string: str, location: int, expression: ParserElement, cache_hit: bool)
success_action
- method to be called when an expression has successfully parsed; should have the signaturefn(input_string: str, start_location: int, end_location: int, expression: ParserELement, parsed_tokens: ParseResults, cache_hit: bool)
exception_action
- method to be called when expression fails to parse; should have the signaturefn(input_string: str, location: int, expression: ParserElement, exception: Exception, cache_hit: bool)
- static set_default_whitespace_chars(chars: str) None ¶
Overrides the default whitespace chars
Example:
# default whitespace chars are space, <TAB> and newline Word(alphas)[1, ...].parse_string("abc def\nghi jkl") # -> ['abc', 'def', 'ghi', 'jkl'] # change to just treat newline as significant ParserElement.set_default_whitespace_chars(" \t") Word(alphas)[1, ...].parse_string("abc def\nghi jkl") # -> ['abc', 'def']
- set_fail_action(fn: Callable[[str, int, ParserElement, Exception], None]) ParserElement ¶
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 parsedloc
= location where expression match was attempted and failedexpr
= the parse expression that failederr
= the exception thrown
The function returns no value. It may throw
ParseFatalException
if it is desired to stop parsing immediately.
- set_name(name: str | None) ParserElement ¶
Define name for this expression, makes debugging and exception messages clearer. If __diag__.enable_debug_on_named_expressions is set to True, setting a name will also enable debug for this expression.
If name is None, clears any custom name for this expression, and clears the debug flag is it was enabled via __diag__.enable_debug_on_named_expressions.
Example:
integer = Word(nums) integer.parse_string("ABC") # -> Exception: Expected W:(0-9) (at char 0), (line:1, col:1) integer.set_name("integer") integer.parse_string("ABC") # -> Exception: Expected integer (at char 0), (line:1, col:1)
- set_parse_action(*fns: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any], **kwargs: Any) ParserElement ¶
Define one or more actions to perform when successfully matching parse element definition.
Parse actions can be called to perform data conversions, do extra validation, update external data structures, or enhance or replace the parsed tokens. Each parse action
fn
is a callable method with 0-3 arguments, called asfn(s, loc, toks)
,fn(loc, toks)
,fn(toks)
, or justfn()
, where:s
= the original string being parsed (see note below)loc
= the location of the matching substringtoks
= a list of the matched tokens, packaged as aParseResults
object
The parsed tokens are passed to the parse action as ParseResults. They can be modified in place using list-style append, extend, and pop operations to update the parsed list elements; and with dictionary-style item set and del operations to add, update, or remove any named results. If the tokens are modified in place, it is not necessary to return them with a return statement.
Parse actions can also completely replace the given tokens, with another
ParseResults
object, or with some entirely different object (common for parse actions that perform data conversions). A convenient way to build a new parse result is to define the values using a dict, and then create the return value usingParseResults.from_dict
.If None is passed as the
fn
parse action, all previously added parse actions for this expression are cleared.Optional keyword arguments:
call_during_try
= (default=False
) indicate if parse action should be run during lookaheads and alternate testing. For parse actions that have side effects, it is important to only call the parse action once it is determined that it is being called as part of a successful parse. For parse actions that perform additional validation, then call_during_try should be passed as True, so that the validation code is included in the preliminary “try” parses.
Note: the default parsing behavior is to expand tabs in the input string before starting the parsing process. See
parse_string
for more information on parsing strings containing<TAB>
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:
# parse dates in the form YYYY/MM/DD # use parse action to convert toks from str to int at parse time def convert_to_int(toks): return int(toks[0]) # use a parse action to verify that the date is a valid date def is_valid_date(instring, loc, toks): from datetime import date year, month, day = toks[::2] try: date(year, month, day) except ValueError: raise ParseException(instring, loc, "invalid date given") integer = Word(nums) date_str = integer + '/' + integer + '/' + integer # add parse actions integer.set_parse_action(convert_to_int) date_str.set_parse_action(is_valid_date) # note that integer fields are now ints, not strings date_str.run_tests(''' # successful parse - note that integer fields were converted to ints 1999/12/31 # fail - invalid date 1999/13/31 ''')
- set_results_name(name: str, list_all_matches: bool = False, *, listAllMatches: bool = False) ParserElement ¶
Define name for referencing matching tokens as a nested attribute of the returned parse results.
Normally, results names are assigned as you would assign keys in a dict: any existing value is overwritten by later values. If it is necessary to keep all values captured for a particular results name, call
set_results_name
withlist_all_matches
= True.NOTE:
set_results_name
returns a copy of the originalParserElement
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 ofexpr.set_results_name("name")
- see__call__
. Iflist_all_matches
is required, useexpr("name*")
.Example:
integer = Word(nums) date_str = (integer.set_results_name("year") + '/' + integer.set_results_name("month") + '/' + integer.set_results_name("day")) # equivalent form: date_str = integer("year") + '/' + integer("month") + '/' + integer("day")
- set_whitespace_chars(chars: set[str] | str, copy_defaults: bool = False) ParserElement ¶
Overrides the default whitespace chars
- split(instring: str, maxsplit: int = 9223372036854775807, include_separators: bool = False, *, includeSeparators=False) Generator[str, None, None] ¶
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 optionalinclude_separators
argument (default=False
), if the separating matching text should be included in the split results.Example:
punc = one_of(list(".,;:/-!?")) print(list(punc.split("This, this?, this sentence, is badly punctuated!")))
prints:
['This', ' this', '', ' this sentence', ' is badly punctuated', '']
- suppress() ParserElement ¶
Suppresses the output of this
ParserElement
; useful to keep punctuation from cluttering up returned output.
- suppress_warning(warning_type: Diagnostics) ParserElement ¶
Suppress warnings emitted for a particular diagnostic on this expression.
Example:
base = pp.Forward() base.suppress_warning(Diagnostics.warn_on_parse_using_empty_Forward) # statement would normally raise a warning, but is now suppressed print(base.parse_string("x"))
- transformString(instring: str, *, debug: bool = False) str ¶
Deprecated - use
transform_string
- transform_string(instring: str, *, debug: bool = False) str ¶
Extension to
scan_string
, to modify matching text with modified tokens that may be returned from a parse action. To usetransform_string
, define a grammar and attach a parse action to it that modifies the returned token list. Invokingtransform_string()
on a target string will then scan for matches, and replace the matched text patterns according to the logic in the parse action.transform_string()
returns the resulting transformed string.Example:
wd = Word(alphas) wd.set_parse_action(lambda toks: toks[0].title()) print(wd.transform_string("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.
- tryParse(instring: str, loc: int, *, raise_fatal: bool = False, do_actions: bool = False) int ¶
Deprecated - use
try_parse
- classmethod using_each(seq, **class_kwargs)¶
Yields a sequence of
class(obj, **class_kwargs)
for obj in seq.Example:
LPAR, RPAR, LBRACE, RBRACE, SEMI = Suppress.using_each("(){};")
- validate(validateTrace=None) None ¶
Check defined expressions for valid structure, check for infinite recursive definitions.
- visit_all()¶
General-purpose method to yield all expressions and sub-expressions in a grammar. Typically just for internal use.
- class pyparsing.PrecededBy(expr: ParserElement | str, retreat: int = 0)¶
Bases:
ParseElementEnhance
Lookbehind 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 locationretreat
- (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 aWord
orCharsNotIn
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
- __init__(expr: ParserElement | str, retreat: int = 0)¶
- class pyparsing.QuotedString(quote_char: str = '', esc_char: str | None = None, esc_quote: str | None = None, multiline: bool = False, unquote_results: bool = True, end_quote_char: str | None = None, convert_whitespace_escapes: bool = True, *, quoteChar: str = '', escChar: str | None = None, escQuote: str | None = None, unquoteResults: bool = True, endQuoteChar: str | None = None, convertWhitespaceEscapes: bool = True)¶
Bases:
Token
Token for matching strings that are delimited by quoting characters.
Defined with the following parameters:
quote_char
- string of one or more characters defining the quote delimiting stringesc_char
- character to re_escape quotes, typically backslash (default=None
)esc_quote
- special quote sequence to re_escape an embedded quote string (such as SQL’s""
to re_escape an embedded"
) (default=None
)multiline
- boolean indicating whether quotes can span multiple lines (default=False
)unquote_results
- boolean indicating whether the matched text should be unquoted (default=True
)end_quote_char
- string of one or more characters defining the end of the quote delimited string (default=None
=> same as quote_char)convert_whitespace_escapes
- convert escaped whitespace ('\t'
,'\n'
, etc.) to actual whitespace (default=True
)
Example:
qs = QuotedString('"') print(qs.search_string('lsjdf "This is the quote" sldjf')) complex_qs = QuotedString('{{', end_quote_char='}}') print(complex_qs.search_string('lsjdf {{This is the "quote"}} sldjf')) sql_qs = QuotedString('"', esc_quote='""') print(sql_qs.search_string('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']]
- __init__(quote_char: str = '', esc_char: str | None = None, esc_quote: str | None = None, multiline: bool = False, unquote_results: bool = True, end_quote_char: str | None = None, convert_whitespace_escapes: bool = True, *, quoteChar: str = '', escChar: str | None = None, escQuote: str | None = None, unquoteResults: bool = True, endQuoteChar: str | None = None, convertWhitespaceEscapes: bool = True)¶
- exception pyparsing.RecursiveGrammarException(parseElementList)¶
Bases:
Exception
Exception thrown by
ParserElement.validate
if the grammar could be left-recursive; parser may need to enable left recursion usingParserElement.enable_left_recursion
Deprecated: only used by deprecated method ParserElement.validate.
- __init__(parseElementList)¶
- __str__() str ¶
Return str(self).
- __weakref__¶
list of weak references to the object
- class pyparsing.Regex(pattern: Any, flags: RegexFlag | int = 0, as_group_list: bool = False, as_match: bool = False, *, asGroupList: bool = False, asMatch: bool = False)¶
Bases:
Token
Token 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<name>...)
), these will be preserved as namedParseResults
.If instead of the Python stdlib
re
module you wish to use a different RE module (such as theregex
module), you can do so by building yourRegex
object with a compiled RE that was compiled usingregex
.Example:
realnum = Regex(r"[+-]?\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})") # named fields in a regex will be returned as named results date = Regex(r'(?P<year>\d{4})-(?P<month>\d\d?)-(?P<day>\d\d?)') # the Regex class will accept re's compiled using the regex module import regex parser = pp.Regex(regex.compile(r'[0-9]'))
- __init__(pattern: Any, flags: RegexFlag | int = 0, as_group_list: bool = False, as_match: bool = False, *, asGroupList: bool = False, asMatch: bool = False)¶
The parameters
pattern
andflags
are passed to there.compile()
function as-is. See the Python re module module for an explanation of the acceptable patterns and flags.
- sub(repl: str) ParserElement ¶
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</\1>") print(make_html.transform_string("h1:main title:")) # prints "<h1>main title</h1>"
- class pyparsing.SkipTo(other: ParserElement | str, include: bool = False, ignore: ParserElement | str | None = None, fail_on: ParserElement | str | None = None, *, failOn: ParserElement | str | None = None)¶
Bases:
ParseElementEnhance
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 skippedinclude
- ifTrue
, the target expression is also parsed (the skipped text and target expression are returned as a 2-element list) (default=False
).ignore
- (default=None
) used to define grammars (typically quoted strings and comments) that might contain false matches to the target expressionfail_on
- (default=None
) define expressions that are not allowed to be included in the skipped test; if found before the target expression is found, theSkipTo
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=quoted_string) string_data.set_parse_action(token_map(str.strip)) ticket_expr = (integer("issue_num") + SEP + string_data("sev") + SEP + string_data("desc") + SEP + integer("days_open")) for tkt in ticket_expr.search_string(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'
- __init__(other: ParserElement | str, include: bool = False, ignore: ParserElement | str | None = None, fail_on: ParserElement | str | None = None, *, failOn: ParserElement | str | None = None)¶
- ignore(expr)¶
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 = Word(alphas)[...] patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj'] patt.ignore(c_style_comment) patt.parse_string('ablaj /* comment */ lskjd') # -> ['ablaj', 'lskjd']
- class pyparsing.StringEnd¶
Bases:
PositionToken
Matches if current position is at the end of the parse string
- __init__()¶
- class pyparsing.StringStart¶
Bases:
PositionToken
Matches if current position is at the beginning of the parse string
- __init__()¶
- class pyparsing.Suppress(expr: ParserElement | str, savelist: bool = False)¶
Bases:
TokenConverter
Converter for ignoring the results of a parsed expression.
Example:
source = "a, b, c,d" wd = Word(alphas) wd_list1 = wd + (',' + wd)[...] print(wd_list1.parse_string(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 + (Suppress(',') + wd)[...] print(wd_list2.parse_string(source)) # Skipped text (using '...') can be suppressed as well source = "lead in START relevant text END trailing text" start_marker = Keyword("START") end_marker = Keyword("END") find_body = Suppress(...) + start_marker + ... + end_marker print(find_body.parse_string(source)
prints:
['a', ',', 'b', ',', 'c', ',', 'd'] ['a', 'b', 'c', 'd'] ['START', 'relevant text ', 'END']
(See also
DelimitedList
.)- __add__(other) ParserElement ¶
Implementation of
+
operator - returnsAnd
. Adding strings to aParserElement
converts them toLiteral
s by default.Example:
greet = Word(alphas) + "," + Word(alphas) + "!" hello = "Hello, World!" print(hello, "->", greet.parse_string(hello))
prints:
Hello, World! -> ['Hello', ',', 'World', '!']
...
may be used as a parse expression as a short form ofSkipTo
:Literal('start') + ... + Literal('end')
is equivalent to:
Literal('start') + SkipTo('end')("_skipped*") + Literal('end')
Note that the skipped text is returned with ‘_skipped’ as a results name, and to support having multiple skips in the same parser, the value returned is a list of all skipped text.
- __init__(expr: ParserElement | str, savelist: bool = False)¶
- __sub__(other) ParserElement ¶
Implementation of
-
operator, returnsAnd
with error stop
- suppress() ParserElement ¶
Suppresses the output of this
ParserElement
; useful to keep punctuation from cluttering up returned output.
- class pyparsing.Tag(tag_name: str, value: Any = True)¶
Bases:
Token
A meta-element for inserting a named result into the parsed tokens that may be checked later in a parse action or while processing the parsed results. Accepts an optional tag value, defaulting to True.
Example:
end_punc = "." | ("!" + Tag("enthusiastic"))) greeting = "Hello," + Word(alphas) + end_punc result = greeting.parse_string("Hello, World.") print(result.dump()) result = greeting.parse_string("Hello, World!") print(result.dump())
prints:
['Hello,', 'World', '.'] ['Hello,', 'World', '!'] - enthusiastic: True
- __init__(tag_name: str, value: Any = True)¶
- class pyparsing.Token¶
Bases:
ParserElement
Abstract
ParserElement
subclass, for defining atomic matching patterns.- __init__()¶
- class pyparsing.TokenConverter(expr: ParserElement | str, savelist=False)¶
Bases:
ParseElementEnhance
Abstract subclass of
ParseElementEnhance
, for converting parsed results.- __init__(expr: ParserElement | str, savelist=False)¶
- class pyparsing.White(ws: str = ' \t\r\n', min: int = 1, max: int = 0, exact: int = 0)¶
Bases:
Token
Special matching class for matching whitespace. Normally, whitespace is ignored by pyparsing grammars. This class is included when some whitespace structures are significant. Define with a string containing the whitespace characters to be matched; default is
" \t\r\n"
. Also takes optionalmin
,max
, andexact
arguments, as defined for theWord
class.- __init__(ws: str = ' \t\r\n', min: int = 1, max: int = 0, exact: int = 0)¶
- class pyparsing.Word(init_chars: str = '', body_chars: str | None = None, min: int = 1, max: int = 0, exact: int = 0, as_keyword: bool = False, exclude_chars: str | None = None, *, initChars: str | None = None, bodyChars: str | None = None, asKeyword: bool = False, excludeChars: str | None = None)¶
Bases:
Token
Token for matching words composed of allowed character sets.
Parameters:
init_chars
- string of all characters that should be used to match as a word; “ABC” will match “AAA”, “ABAB”, “CBAC”, etc.; ifbody_chars
is also specified, then this is the string of initial charactersbody_chars
- string of characters that can be used for matching after a matched initial character as given ininit_chars
; if omitted, same as the initial characters (default=``None``)min
- minimum number of characters to match (default=1)max
- maximum number of characters to match (default=0)exact
- exact number of characters to match (default=0)as_keyword
- match as a keyword (default=``False``)exclude_chars
- characters that might be found in the inputbody_chars
string but which should not be accepted for matching ;useful to define a word of all printables except for one or two characters, for instance (default=``None``)
srange
is useful for defining custom character set strings for definingWord
expressions, using range notation from regular expression character sets.A common mistake is to use
Word
to match a specific literal string, as inWord("Address")
. Remember thatWord
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, useLiteral
orKeyword
.pyparsing includes helper strings for building Words:
alphas
nums
alphanums
hexnums
alphas8bit
(alphabetic characters in ASCII range 128-255 - accented, tilded, umlauted, etc.)punc8bit
(non-alphabetic characters in ASCII range 128-255 - currency, symbols, superscripts, diacriticals, etc.)printables
(any non-whitespace character)
alphas
,nums
, andprintables
are also defined in several Unicode sets - seepyparsing_unicode`
.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 capitalized_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, exclude_chars=",")
- __init__(init_chars: str = '', body_chars: str | None = None, min: int = 1, max: int = 0, exact: int = 0, as_keyword: bool = False, exclude_chars: str | None = None, *, initChars: str | None = None, bodyChars: str | None = None, asKeyword: bool = False, excludeChars: str | None = None)¶
- class pyparsing.WordEnd(word_chars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~', *, wordChars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~')¶
Bases:
PositionToken
Matches if the current position is at the end of a
Word
, and is not followed by any character in a given set ofword_chars
(default=printables
). To emulate thebehavior 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.- __init__(word_chars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~', *, wordChars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~')¶
- class pyparsing.WordStart(word_chars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~', *, wordChars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~')¶
Bases:
PositionToken
Matches if the current position is at the beginning of a
Word
, and is not preceded by any character in a given set ofword_chars
(default=printables
). To emulate thebehavior 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.- __init__(word_chars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~', *, wordChars: str = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~')¶
- class pyparsing.ZeroOrMore(expr: str | ParserElement, stop_on: ParserElement | str | None = None, *, stopOn: ParserElement | str | None = None)¶
Bases:
_MultipleMatch
Optional repetition of zero or more of the given expression.
Parameters:
expr
- expression that must match zero or more timesstop_on
- expression for a terminating sentinel (only required if the sentinel would ordinarily match the repetition expression) - (default=None
)
Example: similar to
OneOrMore
- __init__(expr: str | ParserElement, stop_on: ParserElement | str | None = None, *, stopOn: ParserElement | str | None = None)¶
- class pyparsing.__compat__¶
Bases:
__config_flags
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 anAnd
expression is nested within anOr
orMatchFirst
; maintained for compatibility, but setting toFalse
no longer restores pre-2.3.1 behavior
- class pyparsing.__diag__¶
Bases:
__config_flags
- pyparsing.autoname_elements() None ¶
Utility to simplify mass-naming of parser elements, for generating railroad diagram with named subdiagrams.
- pyparsing.col(loc: int, strg: str) int ¶
Returns 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
ParserElement.parse_string
for more information on parsing strings containing<TAB>
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.
- pyparsing.common¶
alias of
pyparsing_common
- pyparsing.conditionAsParseAction(fn: Callable[[], bool] | Callable[[ParseResults], bool] | Callable[[int, ParseResults], bool] | Callable[[str, int, ParseResults], bool], message: str | None = None, fatal: bool = False) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Deprecated - use
condition_as_parse_action
- pyparsing.condition_as_parse_action(fn: Callable[[], bool] | Callable[[ParseResults], bool] | Callable[[int, ParseResults], bool] | Callable[[str, int, ParseResults], bool], message: str | None = None, fatal: bool = False) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Function to convert a simple predicate function that returns
True
orFalse
into a parse action. Can be used in places when a parse action is required andParserElement.add_condition
cannot be used (such as when adding a condition to an operator level ininfix_notation
).Optional keyword arguments:
message
- define a custom message to be used in the raised exceptionfatal
- if True, will raiseParseFatalException
to stop parsing immediately; otherwise will raiseParseException
- pyparsing.countedArray(expr: ParserElement, int_expr: ParserElement | None = None, *, intExpr: ParserElement | None = None) ParserElement ¶
Deprecated - use
counted_array
- pyparsing.counted_array(expr: ParserElement, int_expr: ParserElement | None = None, *, intExpr: ParserElement | None = None) ParserElement ¶
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
int_expr
is specified, it should be a pyparsing expression that produces an integer value.Example:
counted_array(Word(alphas)).parse_string('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 binary_constant = Word('01').set_parse_action(lambda t: int(t[0], 2)) counted_array(Word(alphas), int_expr=binary_constant).parse_string('10 ab cd ef') # -> ['ab', 'cd'] # if other fields must be parsed after the count but before the # list items, give the fields results names and they will # be preserved in the returned ParseResults: count_with_metadata = integer + Word(alphas)("type") typed_array = counted_array(Word(alphanums), int_expr=count_with_metadata)("items") result = typed_array.parse_string("3 bool True True False") print(result.dump()) # prints # ['True', 'True', 'False'] # - items: ['True', 'True', 'False'] # - type: 'bool'
- pyparsing.delimitedList(expr: str | ParserElement, delim: str | ParserElement = ',', combine: bool = False, min: Optional[int] = None, max: Optional[int] = None, *, allow_trailing_delim: bool = False)¶
Deprecated - use
DelimitedList
- pyparsing.delimited_list(expr: str | ParserElement, delim: str | ParserElement = ',', combine: bool = False, min: Optional[int] = None, max: Optional[int] = None, *, allow_trailing_delim: bool = False)¶
Deprecated - use
DelimitedList
- pyparsing.dictOf(key: ParserElement, value: ParserElement) ParserElement ¶
Deprecated - use
dict_of
- pyparsing.dict_of(key: ParserElement, value: ParserElement) ParserElement ¶
Helper to easily and clearly define a dictionary by specifying the respective patterns for the key and value. Takes care of defining the
Dict
,ZeroOrMore
, andGroup
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 theDict
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, stop_on=label).set_parse_action(' '.join)) print(attr_expr[1, ...].parse_string(text).dump()) attr_label = label attr_value = Suppress(':') + OneOrMore(data_word, stop_on=label).set_parse_action(' '.join) # similar to Dict, but simpler call format result = dict_of(attr_label, attr_value).parse_string(text) print(result.dump()) print(result['shape']) print(result.shape) # object attribute access works too print(result.as_dict())
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'}
- pyparsing.indentedBlock(blockStatementExpr, indentStack, indent=True, backup_stacks=[])¶
(DEPRECATED - use
IndentedBlock
class instead) Helper method for defining space-delimited indentation blocks, such as those used to define block statements in Python source code.Parameters:
blockStatementExpr
- expression defining syntax of statement that is repeated within the indented blockindentStack
- list created by caller to manage indentation stack (multiplestatementWithIndentedBlock
expressions within a single grammar should share a commonindentStack
)indent
- boolean indicating whether block must be indented beyond the current level; set toFalse
for block of left-most statements (default=True
)
A valid block must contain at least one
blockStatement
.(Note that indentedBlock uses internal parse actions which make it incompatible with packrat parsing.)
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("(" + Opt(delimitedList(identifier)) + ")") + ":") func_body = indentedBlock(stmt, indentStack) funcDef = Group(funcDecl + func_body) rvalue = Forward() funcCall = Group(identifier + "(" + Opt(delimitedList(rvalue)) + ")") rvalue << (funcCall | identifier | Word(nums)) assignment = Group(identifier + "=" + rvalue) stmt << (funcDef | assignment | identifier) module_body = stmt[1, ...] 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']]]]]]]
- pyparsing.infixNotation(base_expr: ~pyparsing.core.ParserElement, op_list: list[tuple[~pyparsing.core.ParserElement | str | tuple[~pyparsing.core.ParserElement | str, ~pyparsing.core.ParserElement | str], int, ~pyparsing.helpers.OpAssoc, ~typing.Callable[[], ~typing.Any] | ~typing.Callable[[~pyparsing.results.ParseResults], ~typing.Any] | ~typing.Callable[[int, ~pyparsing.results.ParseResults], ~typing.Any] | ~typing.Callable[[str, int, ~pyparsing.results.ParseResults], ~typing.Any] | None] | tuple[~pyparsing.core.ParserElement | str | tuple[~pyparsing.core.ParserElement | str, ~pyparsing.core.ParserElement | str], int, ~pyparsing.helpers.OpAssoc]], lpar: str | ~pyparsing.core.ParserElement = Suppress:('('), rpar: str | ~pyparsing.core.ParserElement = Suppress:(')')) ParserElement ¶
Deprecated - use
infix_notation
- pyparsing.infix_notation(base_expr: ~pyparsing.core.ParserElement, op_list: list[tuple[~pyparsing.core.ParserElement | str | tuple[~pyparsing.core.ParserElement | str, ~pyparsing.core.ParserElement | str], int, ~pyparsing.helpers.OpAssoc, ~typing.Callable[[], ~typing.Any] | ~typing.Callable[[~pyparsing.results.ParseResults], ~typing.Any] | ~typing.Callable[[int, ~pyparsing.results.ParseResults], ~typing.Any] | ~typing.Callable[[str, int, ~pyparsing.results.ParseResults], ~typing.Any] | None] | tuple[~pyparsing.core.ParserElement | str | tuple[~pyparsing.core.ParserElement | str, ~pyparsing.core.ParserElement | str], int, ~pyparsing.helpers.OpAssoc]], lpar: str | ~pyparsing.core.ParserElement = Suppress:('('), rpar: str | ~pyparsing.core.ParserElement = Suppress:(')')) ParserElement ¶
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 infix_notation. See
ParserElement.enable_packrat
for a mechanism to potentially improve your parser performance.Parameters:
base_expr
- expression representing the most basic operand to be used in the expressionop_list
- list of tuples, one for each operator precedence level in the expression grammar; each tuple is of the form(op_expr, num_operands, right_left_assoc, (optional)parse_action)
, where:op_expr
is the pyparsing expression for the operator; may also be a string, which will be converted to a Literal; ifnum_operands
is 3,op_expr
is a tuple of two expressions, for the two operators separating the 3 termsnum_operands
is the number of terms for this operator (must be 1, 2, or 3)right_left_assoc
is the indicator whether the operator is right or left associative, using the pyparsing-defined constantsOpAssoc.RIGHT
andOpAssoc.LEFT
.parse_action
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 callingset_parse_action(*fn)
(ParserElement.set_parse_action
)
lpar
- expression for matching left-parentheses; if passed as a str, then will be parsed asSuppress(lpar)
. If lpar is passed as an expression (such asLiteral('(')
), then it will be kept in the parsed results, and grouped with them. (default=Suppress('(')
)rpar
- expression for matching right-parentheses; if passed as a str, then will be parsed asSuppress(rpar)
. If rpar is passed as an expression (such asLiteral(')')
), then it will be kept in the parsed results, and grouped with them. (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 = infix_notation(integer | varname, [ ('-', 1, OpAssoc.RIGHT), (one_of('* /'), 2, OpAssoc.LEFT), (one_of('+ -'), 2, OpAssoc.LEFT), ]) arith_expr.run_tests(''' 5+3*6 (5+3)*6 -2--11 ''', full_dump=False)
prints:
5+3*6 [[5, '+', [3, '*', 6]]] (5+3)*6 [[[5, '+', 3], '*', 6]] (5+x)*y [[[5, '+', 'x'], '*', 'y']] -2--11 [[['-', 2], '-', ['-', 11]]]
- pyparsing.line(loc: int, strg: str) str ¶
Returns the line of text containing loc within a string, counting newlines as line separators.
- pyparsing.lineno(loc: int, strg: str) int ¶
Returns 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
ParserElement.parse_string
for more information on parsing strings containing<TAB>
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.
- pyparsing.locatedExpr(expr: ParserElement) ParserElement ¶
(DEPRECATED - future code should use the
Located
class) Helper to decorate a returned token with its starting and ending locations in the input string.This helper adds the following results names:
locn_start
- location where matched expression beginslocn_end
- location where matched expression endsvalue
- the actual parsed results
Be careful if the input text contains
<TAB>
characters, you may want to callParserElement.parse_with_tabs
Example:
wd = Word(alphas) for match in locatedExpr(wd).search_string("ljsdf123lksdjjf123lkkjj1222"): print(match)
prints:
[[0, 'ljsdf', 5]] [[8, 'lksdjjf', 15]] [[18, 'lkkjj', 23]]
- pyparsing.makeHTMLTags(tag_str: str | ParserElement) tuple[ParserElement, ParserElement] ¶
Deprecated - use
make_html_tags
- pyparsing.makeXMLTags(tag_str: str | ParserElement) tuple[ParserElement, ParserElement] ¶
Deprecated - use
make_xml_tags
- pyparsing.make_html_tags(tag_str: str | ParserElement) tuple[ParserElement, ParserElement] ¶
Helper to construct opening and closing tag expressions for HTML, given a tag name. Matches tags in either upper or lower case, attributes with namespaces and with quoted or unquoted values.
Example:
text = '<td>More info at the <a href="https://github.com/pyparsing/pyparsing/wiki">pyparsing</a> wiki page</td>' # make_html_tags returns pyparsing expressions for the opening and # closing tags as a 2-tuple a, a_end = make_html_tags("A") link_expr = a + SkipTo(a_end)("link_text") + a_end for link in link_expr.search_string(text): # attributes in the <A> 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
- pyparsing.make_xml_tags(tag_str: str | ParserElement) tuple[ParserElement, ParserElement] ¶
Helper to construct opening and closing tag expressions for XML, given a tag name. Matches tags only in the given upper/lower case.
Example: similar to
make_html_tags
- pyparsing.matchOnlyAtCol(n)¶
Deprecated - use
match_only_at_col
- pyparsing.matchPreviousExpr(expr: ParserElement) ParserElement ¶
Deprecated - use
match_previous_expr
- pyparsing.matchPreviousLiteral(expr: ParserElement) ParserElement ¶
Deprecated - use
match_previous_literal
- pyparsing.match_only_at_col(n)¶
Helper method for defining parse actions that require matching at a specific column in the input text.
- pyparsing.match_previous_expr(expr: ParserElement) ParserElement ¶
Helper to define an expression that is indirectly defined from the tokens matched in a previous expression, that is, it looks for a ‘repeat’ of a previous expression. For example:
first = Word(nums) second = match_previous_expr(first) match_expr = 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.
- pyparsing.match_previous_literal(expr: ParserElement) ParserElement ¶
Helper to define an expression that is indirectly defined from the tokens matched in a previous expression, that is, it looks for a ‘repeat’ of a previous expression. For example:
first = Word(nums) second = match_previous_literal(first) match_expr = 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, usematch_previous_expr
. Do not use with packrat parsing enabled.
- pyparsing.nestedExpr(opener: str | ~pyparsing.core.ParserElement = '(', closer: str | ~pyparsing.core.ParserElement = ')', content: ~pyparsing.core.ParserElement | None = None, ignore_expr: ~pyparsing.core.ParserElement = quoted string using single or double quotes, *, ignoreExpr: ~pyparsing.core.ParserElement = quoted string using single or double quotes) ParserElement ¶
Deprecated - use
nested_expr
- pyparsing.nested_expr(opener: str | ~pyparsing.core.ParserElement = '(', closer: str | ~pyparsing.core.ParserElement = ')', content: ~pyparsing.core.ParserElement | None = None, ignore_expr: ~pyparsing.core.ParserElement = quoted string using single or double quotes, *, ignoreExpr: ~pyparsing.core.ParserElement = quoted string using single or double quotes) ParserElement ¶
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 expressioncloser
- closing character for a nested list (default=")"
); can also be a pyparsing expressioncontent
- expression for items within the nested lists (default=None
)ignore_expr
- expression for ignoring opening and closing delimiters (default=quoted_string
)ignoreExpr
- this pre-PEP8 argument is retained for compatibility but will be removed in a future release
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
ignore_expr
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 quoted_string or a comment expression. Specify multiple expressions using anOr
orMatchFirst
. The default isquoted_string
, but if no expressions are to be ignored, then passNone
for this argument.Example:
data_type = one_of("void int short long char float double") decl_data_type = Combine(data_type + Opt(Word('*'))) ident = Word(alphas+'_', alphanums+'_') number = pyparsing_common.number arg = Group(decl_data_type + ident) LPAR, RPAR = map(Suppress, "()") code_body = nested_expr('{', '}', ignore_expr=(quoted_string | c_style_comment)) c_function = (decl_data_type("type") + ident("name") + LPAR + Opt(DelimitedList(arg), [])("args") + RPAR + code_body("body")) c_function.ignore(c_style_comment) 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.search_string(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']]
- pyparsing.nullDebugAction(*args)¶
Deprecated - use
null_debug_action
- pyparsing.null_debug_action(*args)¶
‘Do-nothing’ debug action, to suppress debugging output during parsing.
- pyparsing.oneOf(strs: Iterable[str] | str, caseless: bool = False, use_regex: bool = True, as_keyword: bool = False, *, useRegex: bool = True, asKeyword: bool = False) ParserElement ¶
Deprecated - use
one_of
- pyparsing.one_of(strs: Iterable[str] | str, caseless: bool = False, use_regex: bool = True, as_keyword: bool = False, *, useRegex: bool = True, asKeyword: bool = False) ParserElement ¶
Helper to quickly define a set of alternative
Literal
s, and makes sure to do longest-first testing when there is a conflict, regardless of the input order, but returns aMatchFirst
for best performance.Parameters:
strs
- a string of space-delimited literals, or a collection of string literalscaseless
- treat all literals as caseless - (default=False
)use_regex
- as an optimization, will generate aRegex
object; otherwise, will generate aMatchFirst
object (ifcaseless=True
oras_keyword=True
, or if creating aRegex
raises an exception) - (default=True
)as_keyword
- enforceKeyword
-style matching on the generated expressions - (default=False
)asKeyword
anduseRegex
are retained for pre-PEP8 compatibility, but will be removed in a future release
Example:
comp_oper = one_of("< = > <= >= !=") var = Word(alphas) number = Word(nums) term = var | number comparison_expr = term + comp_oper + term print(comparison_expr.search_string("B = 12 AA=23 B<=AA AA>12"))
prints:
[['B', '=', '12'], ['AA', '=', '23'], ['B', '<=', 'AA'], ['AA', '>', '12']]
- pyparsing.originalTextFor(expr: ParserElement, as_string: bool = True, *, asString: bool = True) ParserElement ¶
Deprecated - use
original_text_for
- pyparsing.original_text_for(expr: ParserElement, as_string: bool = True, *, asString: bool = True) ParserElement ¶
Helper to return the original, untokenized text for a given expression. Useful to restore the parsed fields of an HTML start tag into the raw tag text itself, or to revert separate tokens with intervening whitespace back to the original matching input text. By default, returns a string containing the original parsed text.
If the optional
as_string
argument is passed asFalse
, then the return value is aParseResults
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 tooriginal_text_for
contains expressions with defined results names, you must setas_string
toFalse
if you want to preserve those results name values.The
asString
pre-PEP8 argument is retained for compatibility, but will be removed in a future release.Example:
src = "this is test <b> bold <i>text</i> </b> normal text " for tag in ("b", "i"): opener, closer = make_html_tags(tag) patt = original_text_for(opener + ... + closer) print(patt.search_string(src)[0])
prints:
['<b> bold <i>text</i> </b>'] ['<i>text</i>']
- class pyparsing.pyparsing_common¶
Bases:
object
Here are some common low-level expressions that may be useful in jump-starting parser development:
numeric forms (
integers
,reals
,scientific notation
)common
programming identifiers
Parse actions:
Example:
pyparsing_common.number.run_tests(''' # any int or real number, returned as the appropriate type 100 -100 +100 3.14159 6.02e23 1e-12 ''') pyparsing_common.fnumber.run_tests(''' # any int or real number, returned as float 100 -100 +100 3.14159 6.02e23 1e-12 ''') pyparsing_common.hex_integer.run_tests(''' # hex numbers 100 FF ''') pyparsing_common.fraction.run_tests(''' # fractions 1/2 -3/4 ''') pyparsing_common.mixed_integer.run_tests(''' # mixed fractions 1 1/2 -3/4 1-3/4 ''') import uuid pyparsing_common.uuid.set_parse_action(token_map(uuid.UUID)) pyparsing_common.uuid.run_tests(''' # 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')]
- __weakref__¶
list of weak references to the object
- comma_separated_list = comma separated list¶
Predefined expression of 1 or more printable words or quoted strings, separated by commas.
- static convertToDate(fmt: str = '%Y-%m-%d')¶
Deprecated - use
convert_to_date
- static convertToDatetime(fmt: str = '%Y-%m-%dT%H:%M:%S.%f')¶
Deprecated - use
convert_to_datetime
- static convertToFloat(s, l, t)¶
Deprecated - use
float
- static convertToInteger(s, l, t)¶
Deprecated - use
int
- static convert_to_date(fmt: str = '%Y-%m-%d')¶
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.set_parse_action(pyparsing_common.convert_to_date()) print(date_expr.parse_string("1999-12-31"))
prints:
[datetime.date(1999, 12, 31)]
- static convert_to_datetime(fmt: str = '%Y-%m-%dT%H:%M:%S.%f')¶
Helper to create a parse action for converting parsed datetime string to Python datetime.datetime
Params - - fmt - format to be passed to datetime.strptime (default=
"%Y-%m-%dT%H:%M:%S.%f"
)Example:
dt_expr = pyparsing_common.iso8601_datetime.copy() dt_expr.set_parse_action(pyparsing_common.convert_to_datetime()) print(dt_expr.parse_string("1999-12-31T23:59:59.999"))
prints:
[datetime.datetime(1999, 12, 31, 23, 59, 59, 999000)]
- convert_to_float(l, t)¶
Parse action for converting parsed numbers to Python float
- convert_to_integer(l, t)¶
Parse action for converting parsed integers to Python int
- static downcaseTokens(s, l, t)¶
Deprecated - use
<lambda>
- static downcase_tokens(s, l, t)¶
Parse action to convert tokens to lower case.
- fnumber = fnumber¶
any int or real number, returned as float
- fraction = fraction¶
fractional expression of an integer divided by an integer, returns a float
- hex_integer = hex integer¶
expression that parses a hexadecimal integer, returns an int
- identifier = identifier¶
typical code identifier (leading alpha or ‘_’, followed by 0 or more alphas, nums, or ‘_’)
- ieee_float = ieee_float¶
any floating-point literal (int, real number, infinity, or NaN), returned as float
- integer = integer¶
expression that parses an unsigned integer, returns an int
- ipv4_address = IPv4 address¶
IPv4 address (
0.0.0.0 - 255.255.255.255
)
- ipv6_address = IPv6 address¶
IPv6 address (long, short, or mixed form)
- iso8601_date = ISO8601 date¶
ISO8601 date (
yyyy-mm-dd
)
- iso8601_datetime = ISO8601 datetime¶
ISO8601 datetime (
yyyy-mm-ddThh:mm:ss.s(Z|+-00:00)
) - trailing seconds, milliseconds, and timezone optional; accepts separating'T'
or' '
- mac_address = MAC address¶
MAC address xx:xx:xx:xx:xx (may also have ‘-’ or ‘.’ delimiters)
- mixed_integer = fraction or mixed integer-fraction¶
mixed integer of the form ‘integer - fraction’, with optional leading integer, returns float
- number = number¶
any numeric expression, returns the corresponding Python type
- real = real number¶
expression that parses a floating point number and returns a float
- sci_real = real number with scientific notation¶
expression that parses a floating point number with optional scientific notation and returns a float
- signed_integer = signed integer¶
expression that parses an integer with optional leading sign, returns an int
- static stripHTMLTags(s: str, l: int, tokens: ParseResults)¶
Deprecated - use
strip_html_tags
- static strip_html_tags(s: str, l: int, tokens: ParseResults)¶
Parse action to remove HTML tags from web page HTML source
Example:
# strip HTML links from normal text text = '<td>More info at the <a href="https://github.com/pyparsing/pyparsing/wiki">pyparsing</a> wiki page</td>' td, td_end = make_html_tags("TD") table_text = td + SkipTo(td_end).set_parse_action(pyparsing_common.strip_html_tags)("body") + td_end print(table_text.parse_string(text).body)
Prints:
More info at the pyparsing wiki page
- static upcaseTokens(s, l, t)¶
Deprecated - use
<lambda>
- static upcase_tokens(s, l, t)¶
Parse action to convert tokens to upper case.
- url = url¶
URL (http/https/ftp scheme)
- uuid = UUID¶
UUID (
xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
)
- class pyparsing.pyparsing_test¶
Bases:
object
namespace class for classes useful in writing unit tests
- class TestParseResultsAsserts¶
Bases:
object
A mixin class to add parse results assertion methods to normal unittest.TestCase classes.
- __weakref__¶
list of weak references to the object
- assertParseAndCheckDict(expr, test_string, expected_dict, msg=None, verbose=True)¶
Convenience wrapper assert to test a parser element and input string, and assert that the resulting
ParseResults.asDict()
is equal to theexpected_dict
.
- assertParseAndCheckList(expr, test_string, expected_list, msg=None, verbose=True)¶
Convenience wrapper assert to test a parser element and input string, and assert that the resulting
ParseResults.asList()
is equal to theexpected_list
.
- assertParseResultsEquals(result, expected_list=None, expected_dict=None, msg=None)¶
Unit test assertion to compare a
ParseResults
object with an optionalexpected_list
, and compare any defined results names with an optionalexpected_dict
.
- assertRunTestResults(run_tests_report, expected_parse_results=None, msg=None)¶
Unit test assertion to evaluate output of
ParserElement.runTests()
. If a list of list-dict tuples is given as theexpected_parse_results
argument, then these are zipped with the report tuples returned byrunTests
and evaluated usingassertParseResultsEquals
. Finally, asserts that the overallrunTests()
success value isTrue
.- Parameters:
run_tests_report – tuple(bool, [tuple(str, ParseResults or Exception)]) returned from runTests
(optional) (expected_parse_results) – [tuple(str, list, dict, Exception)]
- __weakref__¶
list of weak references to the object
- class reset_pyparsing_context¶
Bases:
object
Context manager to be used when writing unit tests that modify pyparsing config values: - packrat parsing - bounded recursion parsing - default whitespace characters. - default keyword characters - literal string auto-conversion class - __diag__ settings
Example:
with reset_pyparsing_context(): # test that literals used to construct a grammar are automatically suppressed ParserElement.inlineLiteralsUsing(Suppress) term = Word(alphas) | Word(nums) group = Group('(' + term[...] + ')') # assert that the '()' characters are not included in the parsed tokens self.assertParseAndCheckList(group, "(abc 123 def)", ['abc', '123', 'def']) # after exiting context manager, literals are converted to Literal expressions again
- __init__()¶
- __weakref__¶
list of weak references to the object
- static with_line_numbers(s: str, start_line: int | None = None, end_line: int | None = None, expand_tabs: bool = True, eol_mark: str = '|', mark_spaces: str | None = None, mark_control: str | None = None, *, indent: str | int = '', base_1: bool = True) str ¶
Helpful method for debugging a parser - prints a string with line and column numbers. (Line and column numbers are 1-based by default - if debugging a parse action, pass base_1=False, to correspond to the loc value passed to the parse action.)
- Parameters:
s – tuple(bool, str - string to be printed with line and column numbers
start_line – int - (optional) starting line number in s to print (default=1)
end_line – int - (optional) ending line number in s to print (default=len(s))
expand_tabs – bool - (optional) expand tabs to spaces, to match the pyparsing default
eol_mark – str - (optional) string to mark the end of lines, helps visualize trailing spaces (default=”|”)
mark_spaces – str - (optional) special character to display in place of spaces
mark_control – str - (optional) convert non-printing control characters to a placeholding character; valid values: - “unicode” - replaces control chars with Unicode symbols, such as “␍” and “␊” - any single character string - replace control characters with given string - None (default) - string is displayed as-is
indent – str | int - (optional) string to indent with line and column numbers; if an int is passed, converted to “ “ * indent
base_1 – bool - (optional) whether to label string using base 1; if False, string will be labeled based at 0 (default=True)
- Returns:
str - input string with leading line numbers and column number headers
- class pyparsing.pyparsing_unicode¶
Bases:
unicode_set
A namespace class for defining common language unicode_sets.
- class Arabic¶
Bases:
unicode_set
Unicode set for Arabic Unicode Character Range
- BMP¶
alias of
BasicMultilingualPlane
- class BasicMultilingualPlane¶
Bases:
unicode_set
Unicode set for the Basic Multilingual Plane
- class CJK¶
Bases:
Chinese
,Japanese
,Hangul
Unicode set for combined Chinese, Japanese, and Korean (CJK) Unicode Character Range
- class Chinese¶
Bases:
unicode_set
Unicode set for Chinese Unicode Character Range
- class Cyrillic¶
Bases:
unicode_set
Unicode set for Cyrillic Unicode Character Range
- class Devanagari¶
Bases:
unicode_set
Unicode set for Devanagari Unicode Character Range
- class Greek¶
Bases:
unicode_set
Unicode set for Greek Unicode Character Ranges
- class Hangul¶
Bases:
unicode_set
Unicode set for Hangul (Korean) Unicode Character Range
- class Hebrew¶
Bases:
unicode_set
Unicode set for Hebrew Unicode Character Range
- class Japanese¶
Bases:
unicode_set
Unicode set for Japanese Unicode Character Range, combining Kanji, Hiragana, and Katakana ranges
- class Hiragana¶
Bases:
unicode_set
Unicode set for Hiragana Unicode Character Range
- class Kanji¶
Bases:
unicode_set
Unicode set for Kanji Unicode Character Range
- class Katakana¶
Bases:
unicode_set
Unicode set for Katakana Unicode Character Range
- class Latin1¶
Bases:
unicode_set
Unicode set for Latin-1 Unicode Character Range
- class LatinA¶
Bases:
unicode_set
Unicode set for Latin-A Unicode Character Range
- class LatinB¶
Bases:
unicode_set
Unicode set for Latin-B Unicode Character Range
- class Thai¶
Bases:
unicode_set
Unicode set for Thai Unicode Character Range
- pyparsing.removeQuotes(s, l, t)¶
Deprecated - use
remove_quotes
- pyparsing.remove_quotes(s, l, t)¶
Helper parse action for removing quotation marks from parsed quoted strings.
Example:
# by default, quotation marks are included in parsed results quoted_string.parse_string("'Now is the Winter of our Discontent'") # -> ["'Now is the Winter of our Discontent'"] # use remove_quotes to strip quotation marks from parsed results quoted_string.set_parse_action(remove_quotes) quoted_string.parse_string("'Now is the Winter of our Discontent'") # -> ["Now is the Winter of our Discontent"]
- pyparsing.replaceHTMLEntity(s, l, t)¶
Deprecated - use
replace_html_entity
- pyparsing.replaceWith(repl_str)¶
Deprecated - use
replace_with
- pyparsing.replace_html_entity(s, l, t)¶
Helper parser action to replace common HTML entities with their special characters
- pyparsing.replace_with(repl_str)¶
Helper method for common parse actions that simply return a literal value. Especially useful when used with
transform_string
().Example:
num = Word(nums).set_parse_action(lambda toks: int(toks[0])) na = one_of("N/A NA").set_parse_action(replace_with(math.nan)) term = na | num term[1, ...].parse_string("324 234 N/A 234") # -> [324, 234, nan, 234]
- pyparsing.srange(s: str) str ¶
Helper to easily define string ranges for use in
Word
construction. Borrows syntax from regexp'[]'
string range definitions:srange("[0-9]") -> "0123456789" srange("[a-z]") -> "abcdefghijklmnopqrstuvwxyz" srange("[a-z$_]") -> "abcdefghijklmnopqrstuvwxyz$_"
The input string must be enclosed in []’s, and the returned string is the expanded character set joined into a single string. The values enclosed in the []’s may be:
a single character
an escaped character with a leading backslash (such as
\-
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.)
- pyparsing.testing¶
alias of
pyparsing_test
- pyparsing.tokenMap(func, *args) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Deprecated - use
token_map
- pyparsing.token_map(func, *args) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Helper to define a parse action by mapping a function to all elements of a
ParseResults
list. If any additional args are passed, they are forwarded to the given function as additional arguments after the token, as inhex_integer = Word(hexnums).set_parse_action(token_map(int, 16))
, which will convert the parsed data to an integer using base 16.Example (compare the last to example in
ParserElement.transform_string
:hex_ints = Word(hexnums)[1, ...].set_parse_action(token_map(int, 16)) hex_ints.run_tests(''' 00 11 22 aa FF 0a 0d 1a ''') upperword = Word(alphas).set_parse_action(token_map(str.upper)) upperword[1, ...].run_tests(''' my kingdom for a horse ''') wd = Word(alphas).set_parse_action(token_map(str.title)) wd[1, ...].set_parse_action(' '.join).run_tests(''' 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']
- pyparsing.traceParseAction(f: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any]) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Deprecated - use
trace_parse_action
- pyparsing.trace_parse_action(f: Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any]) Callable[[], Any] | Callable[[ParseResults], Any] | Callable[[int, ParseResults], Any] | Callable[[str, int, ParseResults], Any] ¶
Decorator for debugging parse actions.
When the parse action is called, this decorator will print
">> entering method-name(line:<current_source_line>, <parse_location>, <matched_tokens>)"
. 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) @trace_parse_action def remove_duplicate_chars(tokens): return ''.join(sorted(set(''.join(tokens)))) wds = wd[1, ...].set_parse_action(remove_duplicate_chars) print(wds.parse_string("slkdjs sld sldd sdlf sdljf"))
prints:
>>entering remove_duplicate_chars(line: 'slkdjs sld sldd sdlf sdljf', 0, (['slkdjs', 'sld', 'sldd', 'sdlf', 'sdljf'], {})) <<leaving remove_duplicate_chars (ret: 'dfjkls') ['dfjkls']
- pyparsing.ungroup(expr: ParserElement) ParserElement ¶
Helper to undo pyparsing’s default grouping of And expressions, even if all but one are non-empty.
- pyparsing.unicode¶
alias of
pyparsing_unicode
- class pyparsing.unicode_set¶
Bases:
object
A set of Unicode characters, for language-specific strings for
alphas
,nums
,alphanums
, andprintables
. A unicode_set is defined by a list of ranges in the Unicode character set, in a class attribute_ranges
. Ranges can be specified using 2-tuples or a 1-tuple, such as:_ranges = [ (0x0020, 0x007e), (0x00a0, 0x00ff), (0x0100,), ]
Ranges are left- and right-inclusive. A 1-tuple of (x,) is treated as (x, x).
A unicode set can also be defined using multiple inheritance of other unicode sets:
class CJK(Chinese, Japanese, Korean): pass
- __weakref__¶
list of weak references to the object
- pyparsing.withAttribute(*args, **attr_dict)¶
Deprecated - use
with_attribute
- pyparsing.withClass(classname, namespace='')¶
Deprecated - use
with_class
- pyparsing.with_attribute(*args, **attr_dict)¶
Helper to create a validating parse action to be used with start tags created with
make_xml_tags
ormake_html_tags
. Usewith_attribute
to qualify a starting tag with a required attribute value, to avoid false matches on common tags such as<TD>
or<DIV>
.Call
with_attribute
with a series of attribute names and values. Specify the list of filter attributes names and values as:keyword arguments, as in
(align="right")
, oras 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), usewith_class
.To verify that the attribute exists, but without specifying a value, pass
with_attribute.ANY_VALUE
as the value.Example:
html = ''' <div> Some text <div type="grid">1 4 0 1 0</div> <div type="graph">1,3 2,3 1,1</div> <div>this has no type</div> </div> ''' div,div_end = make_html_tags("div") # only match div tag having a type attribute with value "grid" div_grid = div().set_parse_action(with_attribute(type="grid")) grid_expr = div_grid + SkipTo(div | div_end)("body") for grid_header in grid_expr.search_string(html): print(grid_header.body) # construct a match with any div tag having a type attribute, regardless of the value div_any_type = div().set_parse_action(with_attribute(type=with_attribute.ANY_VALUE)) div_expr = div_any_type + SkipTo(div | div_end)("body") for div_header in div_expr.search_string(html): print(div_header.body)
prints:
1 4 0 1 0 1 4 0 1 0 1,3 2,3 1,1
- pyparsing.with_class(classname, namespace='')¶
Simplified version of
with_attribute
when matching on a div class - made difficult becauseclass
is a reserved word in Python.Example:
html = ''' <div> Some text <div class="grid">1 4 0 1 0</div> <div class="graph">1,3 2,3 1,1</div> <div>this <div> has no class</div> </div> ''' div,div_end = make_html_tags("div") div_grid = div().set_parse_action(with_class("grid")) grid_expr = div_grid + SkipTo(div | div_end)("body") for grid_header in grid_expr.search_string(html): print(grid_header.body) div_any_type = div().set_parse_action(with_class(withAttribute.ANY_VALUE)) div_expr = div_any_type + SkipTo(div | div_end)("body") for div_header in div_expr.search_string(html): print(div_header.body)
prints:
1 4 0 1 0 1 4 0 1 0 1,3 2,3 1,1