(template: str)
| 186 | |
| 187 | |
| 188 | def python_parse_runner(template: str): |
| 189 | from parse import parse as py_parse |
| 190 | |
| 191 | def run(lines): |
| 192 | for line in lines: |
| 193 | py_parse(template, line) |
| 194 | |
| 195 | return run |
| 196 | |
| 197 | |
| 198 | def python_compiled_runner(template: str): |