Comment on (Python) Generator Tricks For Systems Programmer (pdf)Comments−grifaton14yInspired by this very presentation, I recently knocked together a library for munging text streams in Python, rather than calling through to sed and grep.If anyone's interested, the code's here: https://github.com/inglesp/munger.py−sligOP14yIs there any special reason for why you didn't use imap here https://github.com/inglesp/munger.py/blob/master/munger.py#L... ?−grifaton14yHabit, I think. Will change it when I get the chance.
Comments
Inspired by this very presentation, I recently knocked together a library for munging text streams in Python, rather than calling through to sed and grep.
If anyone's interested, the code's here: https://github.com/inglesp/munger.py
Is there any special reason for why you didn't use imap here https://github.com/inglesp/munger.py/blob/master/munger.py#L... ?
Habit, I think. Will change it when I get the chance.