u'abcde(date='2/xc2/xb2',time='/case/test.png')'
All I need is the contents inside the parenthesis.
If your problem is really just this simple, you don't need regex:
s[s.find("(")+1:s.find(")")]
2.1m questions
2.1m answers
60 comments
57.0k users