Skip to content

Instantly share code, notes, and snippets.

View cept0n's full-sized avatar

arson cept0n

View GitHub Profile
@cept0n
cept0n / redditDataParser.py
Created December 4, 2020 14:58 — forked from bchauSW/redditDataParser.py
This script uses the PRAW library to extract title data from https://www.reddit.com/r/r4r30Plus and format the data into a CSV file.
import praw
import re
from collections import Counter
reddit = praw.Reddit(client_id='clientid',
client_secret='clientsecret',
password='password',
user_agent='Script by me',
username='username')