Files
langchain/tests/integration_tests/document_loaders
Matt Robinson 3637d6da6e feat: add loader for open office odt files (#4405)
# ODF File Loader

Adds a data loader for handling Open Office ODT files. Requires
`unstructured>=0.6.3`.

### Testing

The following should work using the `fake.odt` example doc from the
[`unstructured` repo](https://github.com/Unstructured-IO/unstructured).

```python
from langchain.document_loaders import UnstructuredODTLoader

loader = UnstructuredODTLoader(file_path="fake.odt", mode="elements")
loader.load()

loader = UnstructuredODTLoader(file_path="fake.odt", mode="single")
loader.load()
```
2023-05-10 01:37:17 -07:00
..
2023-04-26 21:04:56 -07:00
2023-03-28 08:17:22 -07:00
2023-03-28 08:38:19 -07:00
2023-03-27 19:51:34 -07:00
2023-04-04 06:48:34 -07:00
2023-03-28 15:28:33 -07:00
2023-05-05 14:48:13 -07:00
2023-05-05 17:55:31 -07:00
2023-05-01 20:56:56 -07:00