我正在连接到 isbndb.com 以获取图书信息,他们的响应如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<ISBNdb server_time="2005-02-25T23:03:41">
<BookList total_results="1" page_size="10" page_number="1" shown_results="1">
<BookData book_id="somebook" isbn="0123456789">
<Title>Interesting Book</Title>
<TitleLong>Interesting Book: Read it or else..</TitleLong>
<AuthorsText>John Doe</AuthorsText>
<PublisherText>Acme Publishing</PublisherText>
</BookData>
</BookList>
</ISBNdb>
使用 appengine (Python) 将这些数据转换为对象的最佳方法是什么?
我需要 isbn 编号(BookData 中的标签),但我还需要 BookData 的所有子项的内容(而不是标签)。