mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
23 lines
703 B
Plaintext
23 lines
703 B
Plaintext
# Confluence
|
|
|
|
>[Confluence](https://www.atlassian.com/software/confluence) is a wiki collaboration platform that saves and organizes all of the project-related material. `Confluence` is a knowledge base that primarily handles content management activities.
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install atlassian-python-api
|
|
```
|
|
|
|
We need to set up `username/api_key` or `Oauth2 login`.
|
|
See [instructions](https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/).
|
|
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](/docs/modules/data_connection/document_loaders/integrations/confluence.html).
|
|
|
|
```python
|
|
from langchain.document_loaders import ConfluenceLoader
|
|
```
|