We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently results returned by list_* functions can be "raw" XML, XML past to a "list" or to "df". It could rather easily return additionally:
list_*
"raw"
"list
"df"
as="xml"
xml_document
while_oai
xml_orig
as="xml_list"
list_records
<ListRecords>
xml
XML is already parsed so we get those for free. It is useful to use them in dumper functions - no need to parse raw XML again.
The text was updated successfully, but these errors were encountered:
sounds good
Sorry, something went wrong.
whats the status of this @mbojan
I did not have time to work on this. I'd say it is a non-critical enhancement anyway.
No branches or pull requests
Currently results returned by
list_*
functions can be"raw"
XML, XML past to a"list
" or to"df"
. It could rather easily return additionally:as="xml"
- parsed XML as axml_document
object (inwhile_oai
usexml_orig
)as="xml_list"
- a verb-related subtree of XML, e.g. forlist_records
the tag<ListRecords>
(inwhile_oai
usexml
object).XML is already parsed so we get those for free. It is useful to use them in dumper functions - no need to parse raw XML again.
The text was updated successfully, but these errors were encountered: