fork download
  1. import re
  2.  
  3. b = 'http://m...content-available-to-author-only...d.txt --- blablabla --- http://m...content-available-to-author-only...d.txt'
  4. matches = re.findall(r'http.*?\.id\.txt', b)
  5. print matches
Success #stdin #stdout 0.08s 8832KB
stdin
Standard input is empty
stdout
['http://m...content-available-to-author-only...d.txt', 'http://m...content-available-to-author-only...d.txt']