top of page
A Technophile, Writer and Consultant.
Blog


Python - 102
Modules - those are Python's superpowers. In the previous article in the Python series we saw the 'datetime' module. In this article we will learn all about modules. And as always in a practical way. Firstly, how do devs know which module to use or to say how would a beginner know where to look-up for these modules? Navigate to --> https://docs.python.org/3/py-modindex.html#cap-d The above link is the official documentation for native Python modules. I would strongly recommen
Nov 21, 20252 min read


REST API - Lesson 1
Objective: We learn by doing. So, we will create an API end-point which will read a flat-file located in my machine. There are 3 components here to start with: Data Source Server API endpoints Most often learners switch to #3 as it is easy to start with. But, we will start from the basics. What are we trying to achieve: Create a REST API endpoint for a dataset. Data Source: let us go with a simple .csv file. A simple .csv file from GitHub . You can use your own data. Server:
Nov 18, 20254 min read
bottom of page



