kaas

PowerShell PSD1 parser in python


License
MIT
Install
pip install kaas==0.0.2

Documentation

KAAS

Parse PSD1 into python objects

Example:

    >>> P = Parser()
    >>> P.parse_text("@{ VAR = 1}")
    {'VAR': 1}
    >>> P.parse_text('@( 1 @{ V = @{} Q = @{} } )')
    [1, {'V': {}, 'Q': {}}]

Requires pyleri.