do a sed / awk filter with python tools (at least as fast)

M

Mathieu Prevot

Hi,

I use in a bourne shell script the following filter:

sed '/watch?v=/! d;s/.*v=//;s/\(.\{11\}\).*/\1/' \
| sort | uniq | awk 'ORS=" "{print $1}'

that give me all sets of 11 characters that follows the "watch?v="
motif. I would like to do it in python on stdout from a
subprocess.Popen instance, using python tools rather than sed awk etc.
How can I do this ? Can I expect something as fast ?

Thanks,
Mathieu
 
P

Peter Otten

Mathieu said:
I use in a bourne shell script the following filter:

sed '/watch?v=/! d;s/.*v=//;s/\(.\{11\}\).*/\1/' \
| sort | uniq | awk 'ORS=" "{print $1}'

that give me all sets of 11 characters that follows the "watch?v="
motif. I would like to do it in python on stdout from a
subprocess.Popen instance, using python tools rather than sed awk etc.
How can I do this ? Can I expect something as fast ?

You should either do it in Python , e. g.:

def process(lines):
candidates = (line.rstrip().partition("/watch?v=") for line in lines)
matches = (c[:11] for a, b, c in candidates if len(c) >= 11)
print " ".join(sorted(set(matches)))

if __name__ == "__main__":
import sys
process(sys.stdin)

or invoke your shell script via subprocess.Popen(). Invoking a python script
via subprocess doesn't make sense IMHO.

Peter
 
M

Mathieu Prevot

2008/7/7 Peter Otten said:
Mathieu said:
I use in a bourne shell script the following filter:

sed '/watch?v=/! d;s/.*v=//;s/\(.\{11\}\).*/\1/' \
| sort | uniq | awk 'ORS=" "{print $1}'

that give me all sets of 11 characters that follows the "watch?v="
motif. I would like to do it in python on stdout from a
subprocess.Popen instance, using python tools rather than sed awk etc.
How can I do this ? Can I expect something as fast ?

You should either do it in Python , e. g.:

def process(lines):
candidates = (line.rstrip().partition("/watch?v=") for line in lines)
matches = (c[:11] for a, b, c in candidates if len(c) >= 11)
print " ".join(sorted(set(matches)))

if __name__ == "__main__":
import sys
process(sys.stdin)

or invoke your shell script via subprocess.Popen(). Invoking a python script
via subprocess doesn't make sense IMHO.

:) Thanks.
Mathieu
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top