Learn How to Use JSON as a Small Database for Your Py Projects by Building a Hotel Accounting System
Handling JSON files with ease in Python
Working with JSON in Python
Simple tutorials for using reddit api in Python?
Using an API just comes down to making a request to the right end-point (e.g. /api/v1/me), which then returns data. Most of the time this data is in either JSON or XML format.
Now in order to view that end-point (/api/v1/me) you need to be authenticated via OAuth, which is a whole separate process. (But also including making requests by sending the right data back and forth.)
Now to make it easy, you can just use PRAW. Which has a small tutorial on their website. :)
More on reddit.comVideos
This is the first free tutorial designed to help beginners learn how to use JSON to create a simple database for their projects.
It also prepares developers for the next two tutorials in our "Learn by Build" series, where we'll cover how to use the requests library, build asynchronous code, and work with threads.
and by time we will add extra more depth projects to enhance your pythonic skills
find tutorial in github https://github.com/rankap/learn_by_build/tree/main/tut_1_learn_json
I have finished writing the third article in the Data Engineering with Python series. This is about working with JSON data in Python. I have tried to cover every necessary use case. If you have any other suggestions, let me know.
Working with JSON in Python
Data Engineering with Python series