Data loader for XML #72
Labels
enhancement
New feature or request
good first issue
Good for newcomers
hacktoberfest
For Hacktoberfest participants
XML data loader
Currently, we have a data loader for CSV files. It works by converting each data set (each row) to a
namedtuple
.We need sth similar for XML. Note that type conversion should be done as efficient as possible (see issue #63 for more information).
The loader should also handle non-consistent data, such as the XML below:
Here, a
LazyFileIterable
containing three differently structurednamedtuples
should be created.You can view the implementation for CSV here.
You can view the issue for the JSON loader here: #70
You can view the issue for the YAML loader here: #71
The text was updated successfully, but these errors were encountered: