Conao3
Conao3

Reputation: 171

How to build YAML parser using tatsu python parser generator

How to build YAML parser using tatsu python parser generator? Parsing indent-based language like YAML is difficult, so I cannot achieve this.

Upvotes: -1

Views: 213

Answers (1)

Apalala
Apalala

Reputation: 9244

TatSu was used to do experiments and bootstrap the new PEG parser in Python.

You can find the solutions to INDENT/DEDENT I used in the original efforts here:

https://github.com/neogeny/pygl

Upvotes: 0

Related Questions