-->

Thursday, June 6, 2013

line of python to get the youtube auto caption in a text file


import re,sys

for l in re.findall('
(.*?)
',sys.stdin.read(),re.DOTALL):
    print l

No comments:

Post a Comment