top of page


Pythons Project for beginners - Post 27: Simple URL Shortener
Let's build a Simple URL Shortener. This is a very practical, real-world project that builds on the concept of using APIs. It shows how Python can connect to web services to perform useful tasks.
Anubhav Somani
Sep 62 min read


Pythons Project for beginners - Post 26: Simple Weather App
Let's build a Simple Weather App. This project is a fantastic next step because it introduces you to working with external APIs (Application Programming Interfaces) and handling data in the common JSON format.
Anubhav Somani
Sep 62 min read


Python Practice Set (Part 14): Working with APIs and JSON
An API is like a menu that a web service provides for us to request data. The data is usually returned in a format called JSON(JavaScript Object Notation), which looks very similar to Python dictionaries and lists.
In this set, you'll learn how to parse JSON and make live API calls to fetch data from the internet, a crucial skill for any developer.
Anubhav Somani
Sep 32 min read
bottom of page