Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/indatawetrust/reddit-crawl

reddit image collection tool
https://github.com/indatawetrust/reddit-crawl

reddit reddit-crawler

Last synced: 4 days ago
JSON representation

reddit image collection tool

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)
})
)
```