4
I made a script to calculate an user's karma
(feddit.de)
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.
I've not used
requests
, but yes their docs make it look like it really is that easy: https://requests.readthedocs.io/en/latest/user/quickstart/Looks like the
.json()
call just returns a dictionary (or maybe a list of dictionaries), which means you can use all of python's normal dictionary methods to find the data you're looking for!Thanks for the link! This looks like an absurdly powerful library for HTTP needs and output manipulation from the perspective of a scraping neophyte.