How can I include the parenthesis when I extract text from a pandas series?
my_series.str.extract('\((.*)\)')
If you want to have the parenthesis captured inside the capture group, you need to put the escaped parenthesis inside the group like this :
my_series.str.extract('(\(.*\))')