https://github.com/fdrennan/redditsuite
A package to pull Reddit data and store it in PostgreSQL.
https://github.com/fdrennan/redditsuite
Last synced: 5 months ago
JSON representation
A package to pull Reddit data and store it in PostgreSQL.
- Host: GitHub
- URL: https://github.com/fdrennan/redditsuite
- Owner: fdrennan
- License: other
- Created: 2021-01-27T04:21:41.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-18T21:50:09.000Z (about 4 years ago)
- Last Synced: 2024-08-13T07:13:52.891Z (8 months ago)
- Language: R
- Size: 1.48 MB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - fdrennan/redditsuite - A package to pull Reddit data and store it in PostgreSQL. (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# redditsuite
Git location per episode
## Episode 5
[Github Link](https://github.com/fdrennan/redditsuite/tree/episode-5)
Commands used in Episode 5
```
wget https://raw.githubusercontent.com/fdrennan/redditsuite/dev-freeze-1/R/connection_postgres.R
```
## Episode 6Tips for installing Reticulate
```
install.packages('reticulate')
library(reticulate)
install_miniconda()
# restart session
py_config()
py_install(c('praw', 'boto3'))
# maybe restart
import('praw')
import('boto3')
```