langchain/docs/extras/integrations/providers/reddit.mdx
Aashish Saini 6a98974bd0
Update argilla.ipynb with spelling fix (#10611)
Fixed spelling of **responses** and removed extra "the"
2023-09-19 08:06:28 -07:00

23 lines
505 B
Plaintext

# 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 your Reddit API credentials.
## Document Loader
See a [usage example](/docs/integrations/document_loaders/reddit).
```python
from langchain.document_loaders import RedditPostsLoader
```