Python 从XML响应返回值

Python 从XML响应返回值,python,python-3.x,bigbluebutton,Python,Python 3.x,Bigbluebutton,我正在使用“bigbluebutton_api_python”,它会返回如下响应: {'xml': XMLDictNode(xml_attrs=OrderedDict(), value=OrderedDict([('returncode', XMLCDATANode(xml_attrs=OrderedDict(), value='SUCCESS')), ('createDate', XMLCDATANode(xml_attrs=OrderedDict(), value='Mon May 31 2

我正在使用“bigbluebutton_api_python”,它会返回如下响应:

{'xml': XMLDictNode(xml_attrs=OrderedDict(), value=OrderedDict([('returncode', XMLCDATANode(xml_attrs=OrderedDict(), value='SUCCESS')), ('createDate', XMLCDATANode(xml_attrs=OrderedDict(), value='Mon May 31 22:57:54 CEST 2021'))}
我只需要打印createDate值,如下所示:

Mon May 31 22:57:54 CEST 2021
我试过:

playback_link = (full_responsee.split("'createDate'")[1].split("'))")[0])
但返回错误


我如何才能做到这一点?

完整响应中有什么内容?显示itI中的确切数据我使用full_responsee=(b.get_meeting_info(meetingID))来获取会议信息,但它返回这个xml响应,我需要返回createDateIt的值,因为它返回xml响应。用于获取数据的使用用于处理响应。如果它返回XMLDictNode对象,您可以尝试使用其方法获取数据。或者将请求发送到BigBlueButton API端点并自己解析xml。类似于的代码。您遇到了什么错误<代码>属性错误:“dict”对象没有属性“split”?