303
Will Reddit Kill RSS Feeds
(beehaw.org)
A nice place to discuss rumors, happenings, innovations, and challenges in the technology sphere. We also welcome discussions on the intersections of technology and society. If it’s technological news or discussion of technology, it probably belongs here.
Remember the overriding ethos on Beehaw: Be(e) Nice. Each user you encounter here is a person, and should be treated with kindness (even if they’re wrong, or use a Linux distro you don’t like). Personal attacks will not be tolerated.
Subcommunities on Beehaw:
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
How do you add a subreddit as an rss feed?
put .rss on the end of the subreddit url and add to a reader. I made a multireddit containing all of my subs, and access it like this (the multireddit has to be marked public: https://www.reddit.com/user/username/m/multiredditname/.rss
https://reddit.0qz.fun/r/news.json
There are a lot of options but this site will turn the JSON into XML for RSS. If you want it in JSON format you can just use Reddit
https://reddit.com/r/news.json
Edit: Reddit also does RSS but it is kinda gross
https://reddit.com/r/news/.rss
Any links to things you can do with that JSON file? I don't really know Java but it'd be cool to mess around with it in Python some. Searching "reddit python JSON" is obviously not very helpful.
Oh you can just use something like this:
import requests import json
json_string = requests.get('https://reddit.com/r/news.json')
json_dict = json.loads(json_string)