this post was submitted on 28 Jun 2023
0 points (NaN% liked)
Technology
37708 readers
338 users here now
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.
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I'm getting back into Python for unrelated reasons, and last I was using it, JSON wasn't on my radar yet.
I'm curious about the
.json()
method here, which seems to be exposingposts
et al. for further manipulation without parsing. Is this really as simple as it appears?Yes, it totally is that easy. At first I used an API wrapper library, but then I checked out the source and there is really no need for it since requests already handles basically everything.
.json()
takes the response body of the request and runs it throughjson.decode()
and thus spits out a nice Python dict/list structure.