https://github.com/indatawetrust/reddit-crawl
reddit image collection tool
https://github.com/indatawetrust/reddit-crawl
reddit reddit-crawler
Last synced: about 1 year ago
JSON representation
reddit image collection tool
- Host: GitHub
- URL: https://github.com/indatawetrust/reddit-crawl
- Owner: indatawetrust
- Created: 2018-03-15T21:57:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-12T12:59:27.000Z (almost 8 years ago)
- Last Synced: 2025-02-06T15:37:42.713Z (over 1 year ago)
- Topics: reddit, reddit-crawler
- Language: JavaScript
- Size: 8.79 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reddit crawl
http://pictureddit.com/
#### install
```
npm i -g reddit-crawl
```
#### usage
```
reddit -r earthporn --limit 2 --info
```
##### -r
subreddit name
##### --limit
page limit
##### --info
title, link information is returned with photo
#### install
```
npm i --save reddit-crawl
```
#### usage
```js
const reddit = require('reddit-crawl')
reddit(
{ r: 'food' },
p => p.then(pictures => {
console.log(pictures)
})
)
```