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
2 days ago2 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:
5 days ago4 min read


API - 101
API - Application Programming Interface (that's the acronym). A very broad term which encapsulates a lot of domains / use-cases / applications in the fields of Information Technology. Our focus is on the following: REST API How it differs from SOAP GraphQL gRPC It is not going to be theoretical We will learn by doing it ourselves. Then later we will progress to advanced topics. T This article will be updated as we progress with links to specific blog posts.
5 days ago1 min read
bottom of page



