this one will work it captures any alphabetical letter inside parentheses, remove it from the text, and eliminates any spaces after or before.
.\(([A-Z-a-z].*?)\)
def extract_name(title):
name = re.sub(r'.\(([A-Z-a-z].*?)\)', '', title)
return name.strip()