Search Results

2
votes

Resources for lexing, tokenising and parsing in python

I suggest http://www.canonware.com/Parsing/, since it is pure python and you don't need to learn a grammar, but it isn't widely used, …
1
vote

How do I use Python’s itertools.groupby()?

A neato trick with groupby is run length encoding in one line: [(c,len(list(cgen))) for c,cs in groupby(some_string)] will give you a list of 2-tuples where the fi …
2
votes

Is there a way around coding in Python without the tab, indent & whitespace criteria?

pybraces It's unsupported. …
-1
votes

How to call external command in Python

import os os.system("your command") Note that this is dangerous, since the command isn't cleaned. I leave it up to you to google for the relevant docs on the 'os' and 'sys …
1
vote

Python implementation of Parsec?

There's ANTLR, which is LL(*), there's PyParsing, which is more object friendly and is sort of like a DSL, and then there's Parsing wh …