Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/indatawetrust/reddit-crawl
- Owner: indatawetrust
- Created: 2018-03-15T21:57:06.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-12T12:59:27.000Z (over 6 years ago)
- Last Synced: 2024-12-13T12:34:36.332Z (about 2 months 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)
})
)
```