Parsing string from integration

Parsing string from integration

Hi all,

I'm working with ecwid.com an eCom site that formats their data in the following way:

[u'Desired Date', u'Desired Time', u'Sqft', u'Address Line 1', u'Address Line 2 (Optional)', u'City', u'State', u'Additional Spaces*', u'Access Instruction (ie. meet agent or combo code)'],[u'Domain Choice 1 (123Main.com)', u'Domain Choice 2 (123MainSt.com)']

If I parse it manually, I would get the following structure:
[      u'Desired Date', 
      u'Desired Time', 
      u'Sqft', 
      u'Address Line 1', 
      u'Address Line 2 (Optional)', 
      u'City', 
      u'State', 
      u'Additional Spaces*', 
      u'Access Instruction (ie. meet agent or combo code)'
],
[      u'Domain Choice 1 (123Main.com)', 
      u'Domain Choice 2 (123MainSt.com)'
]

Do you know of any library that can parse this data for me??? Thanks a lot!