You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/docs
Matt Robinson 3830d900bf feat: document loader for MS Word documents (#1282)
### Summary

Adds a document loader for MS Word Documents. Works with both `.docx`
and `.doc` files as longer as the user has installed
`unstructured>=0.4.11`.

### Testing

The follow workflow test the loader for both `.doc` and `.docx` files
using example docs from the `unstructured` repo.

#### `.docx`

```python
from langchain.document_loaders import UnstructuredWordDocumentLoader

filename = "../unstructured/example-docs/fake.docx"
loader = UnstructuredWordDocumentLoader(filename)
loader.load()
```

#### `.doc`

```python
from langchain.document_loaders import UnstructuredWordDocumentLoader

filename = "../unstructured/example-docs/fake.doc"
loader = UnstructuredWordDocumentLoader(filename)
loader.load()
```
1 year ago
..
_static docs: increase width (#1049) 1 year ago
ecosystem Add Writer, Banana, Modal, StochasticAI (#1270) 1 year ago
getting_started add reqs (#918) 1 year ago
modules feat: document loader for MS Word documents (#1282) 1 year ago
reference Add Support for OpenSearch Vector database (#1191) 1 year ago
tracing Make Tools own model, add ToolKit Concept (#1095) 1 year ago
use_cases Harrison/updating docs (#1196) 1 year ago
Makefile Feature: linkcheck-action (#534) (#542) 1 year ago
conf.py improve css (#615) 1 year ago
deployments.md add docs for steamship deployment (#949) 1 year ago
ecosystem.rst Docs refactor (#480) 1 year ago
gallery.rst update gallery with slack bot (#1177) 1 year ago
glossary.md Feature: linkcheck-action (#534) (#542) 1 year ago
index.rst improve docs for indexes (#1146) 1 year ago
make.bat initial commit 2 years ago
reference.rst Feature: linkcheck-action (#534) (#542) 1 year ago
requirements.txt Docs refactor (#480) 1 year ago
tracing.md Harrison/tracing docs (#806) 1 year ago