2023-06-01 00:54:05 +00:00
|
|
|
# Microsoft OneDrive
|
|
|
|
|
|
|
|
>[Microsoft OneDrive](https://en.wikipedia.org/wiki/OneDrive) (formerly `SkyDrive`) is a file-hosting service operated by Microsoft.
|
|
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
|
|
|
|
First, you need to install a python package.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install o365
|
|
|
|
```
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
Then follow instructions [here](/docs/integrations/document_loaders/microsoft_onedrive.html).
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
## Document Loader
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
See a [usage example](/docs/integrations/document_loaders/microsoft_onedrive).
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.document_loaders import OneDriveLoader
|
|
|
|
```
|