With this code I can fetch 'John Doe' from 'Name: John Doe'.
But howto fetch when 'John Doe' is on the next line?
Ex:
Name:
John Doe
body = "Name: John Doe"
p = re.compile("Name: (.*)")
result = p.search(str(body))
if result:
s = result.group(1)