2023-06-01 00:54:05 +00:00
|
|
|
# Reddit
|
|
|
|
|
|
|
|
>[Reddit](www.reddit.com) is an American social news aggregation, content rating, and discussion website.
|
|
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
|
|
|
|
First, you need to install a python package.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install praw
|
|
|
|
```
|
|
|
|
|
|
|
|
Make a [Reddit Application](https://www.reddit.com/prefs/apps/) and initialize the loader with with your Reddit API credentials.
|
|
|
|
|
|
|
|
## Document Loader
|
|
|
|
|
2023-06-16 18:52:56 +00:00
|
|
|
See a [usage example](/docs/modules/data_connection/document_loaders/integrations/reddit.html).
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.document_loaders import RedditPostsLoader
|
|
|
|
```
|