All Projects → mkearney → rreddit

mkearney / rreddit

Licence: Unknown, MIT licenses found Licenses found Unknown LICENSE MIT LICENSE.md
𝐫⟋ Get Reddit data

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to rreddit

saveddit
Bulk Downloader for Reddit
Stars: ✭ 130 (+165.31%)
Mutual labels:  reddit, reddit-api, web-scraping
vosonSML
R package for collecting social media data and creating networks for analysis.
Stars: ✭ 65 (+32.65%)
Mutual labels:  social-media, reddit, r-package
Social Amnesia
Forget the past. Social Amnesia makes sure your social media accounts only show your posts from recent history, not from "that phase" 5 years ago.
Stars: ✭ 656 (+1238.78%)
Mutual labels:  social-media, reddit, reddit-api
Spam Bot 3000
Social media research and promotion, semi-autonomous CLI bot
Stars: ✭ 79 (+61.22%)
Mutual labels:  social-media, reddit
cronnit.com
A free tool for scheduling posts to Reddit.
Stars: ✭ 3 (-93.88%)
Mutual labels:  reddit, reddit-api
Social Media Profile Scrapers
Fetch user's data across social media
Stars: ✭ 60 (+22.45%)
Mutual labels:  social-media, web-scraping
Mvvm Reddit
A companion project for our blog post on better Android software development using MVVM with RxJava.
Stars: ✭ 106 (+116.33%)
Mutual labels:  reddit, reddit-api
node-express-reddit-clone
Build a Node, Express and MySQL-based clone of Reddit for DecodeMTL web development bootcamp
Stars: ✭ 28 (-42.86%)
Mutual labels:  reddit, reddit-api
Reddit Detective
Play detective on Reddit: Discover political disinformation campaigns, secret influencers and more
Stars: ✭ 129 (+163.27%)
Mutual labels:  social-media, reddit
reddit-image-fetcher
A JavaScript package for fetching reddit images, memes, wallpapers and more.
Stars: ✭ 40 (-18.37%)
Mutual labels:  reddit, reddit-api
roux
Simple and (a)synchronous Reddit API wrapper for Rust.
Stars: ✭ 41 (-16.33%)
Mutual labels:  reddit, reddit-api
Socialreaper
Social media scraping / data collection library for Facebook, Twitter, Reddit, YouTube, Pinterest, and Tumblr APIs
Stars: ✭ 338 (+589.8%)
Mutual labels:  social-media, reddit
Praw
PRAW, an acronym for "Python Reddit API Wrapper", is a python package that allows for simple access to Reddit's API.
Stars: ✭ 2,675 (+5359.18%)
Mutual labels:  reddit, reddit-api
Unim.press
A Reddit front-page reader in the style of The New York Times.
Stars: ✭ 199 (+306.12%)
Mutual labels:  reddit, reddit-api
aPRAW
Asynchronous Python Reddit API Wrapper
Stars: ✭ 49 (+0%)
Mutual labels:  reddit, reddit-api
crypto-subreddits-cli
👽 Track Cryptocurrency Subreddits On The Command Line 👽
Stars: ✭ 24 (-51.02%)
Mutual labels:  reddit, reddit-api
Reddsaver
CLI tool to download saved and upvoted media from Reddit
Stars: ✭ 76 (+55.1%)
Mutual labels:  reddit, reddit-api
Reddit Bot
🤖 Making a Reddit Bot using Python, Heroku and Heroku Postgres.
Stars: ✭ 99 (+102.04%)
Mutual labels:  reddit, reddit-api
social-post-api
Social Media API: Automate Posting and Analytics to Social Networks like Instagram, TikTok, Twitter, Facebook, LinkedIn, Reddit, YouTube, and Telegram
Stars: ✭ 38 (-22.45%)
Mutual labels:  social-media, reddit
social-media-hacker-list
Growing list of apps and tools for enhancing social media experiences.
Stars: ✭ 198 (+304.08%)
Mutual labels:  social-media, reddit

rreddit

Build status CRAN status Coverage Status

lifecycle

A package for getting lots of Reddit data.

Installation

Install the development version from Github with:

## install remotes pkg if not already
if (!requireNamespace("remotes")) {
  install.packages("remotes")
}

## install from github
remotes::install_github("mkearney/rreddit")

Use

An example of posts collected from the r/dataisbeautiful subreddit

## get up to 100,000 of the most recent posts made to /r/dataisbeautiful
d <- get_r_reddit("dataisbeautiful", n = 100000)

## aggregate by month and plot the time series
rtweet::ts_plot(dplyr::select(d, created_at = created_utc), "months", trim = 1) +
  tfse::theme_mwk(base_size = 12) +
  ggplot2::ylim(0, NA) +
  ggplot2::labs(
    x = NULL,
    y = NULL,
    title = "Activity on `r/dataisbeautiful` subreddit",
    subtitle = "Monthly number of submissions on r/dataisbeautiful"
  )

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].