Files
langchain/docs/modules/indexes/document_loaders/examples
qued e4224a396b feat: Add UnstructuredXMLLoader for .xml files (#5955)
# Unstructured XML Loader
Adds an `UnstructuredXMLLoader` class for .xml files. Works with
unstructured>=0.6.7. A plain text representation of the text with the
XML tags will be available under the `page_content` attribute in the
doc.

### Testing
```python
from langchain.document_loaders import UnstructuredXMLLoader

loader = UnstructuredXMLLoader(
    "example_data/factbook.xml",
)
docs = loader.load()
```


## Who can review?

@hwchase17 
@eyurtsev
2023-06-10 16:24:42 -07:00
..
2023-06-10 15:43:18 -07:00
2023-05-18 09:56:51 -04:00
2023-05-26 18:55:21 -07:00
2023-06-07 21:32:23 -07:00
2023-05-29 20:11:21 -07:00
2023-05-16 23:42:53 -07:00
2023-05-24 11:47:01 -07:00
2023-05-21 09:13:20 -07:00
2023-06-09 09:15:53 -07:00
2023-04-13 22:15:03 -07:00
2023-05-23 15:57:33 -07:00