Saveddit 4 Reddit - A website that allows you to filter / search through you Saved Reddit posts and comments.
Demo.mp4
- See all (within Reddit API limit ~900) your saved Reddit posts and comments
- Search through your posts and only view posts that contains that word in title/body
- View subreddit details of saved posts
- Filter posts by subreddit
- Unsave any saved Reddit post
- All data processing done on Client side. No user data saved on our server
- Export saved posts data as CSV file having the following fields
- Author: Username of the author
- Comments: Comments on the post
- Created: UTC string of created date
- Id: Id for the post from reddit
- Image: Preview image url
- Score: Score on the post
- Subreddit: Name of the subreddit posted in
- Text: Post text
- Title: Post title
- URL: Hyperlink to the post
- Flask
- React
- Redux
- TailwindCSS
- Create a new app on your Reddit account and set the redirect url to
http://localhost:3000
- Copy this application's ID and secret into a new file called
config.txt
. AddClient ID
in the first line andClient Secret
in the second line - Create a Python virtual env in root directory and activate it
- Install required pip packages by
pip install -r requirements.txt
- Go to
saveddit
directory, install yarn packages usingyarn install
- Run the command
bash dev.sh
This will start the Flask backend at localhost port 5000 and React frontend at localhost port 3000 - Navigate to localhost:3000 in your browser