LGLody G Mtuiinlodyne.hashnode.dev·Mar 22, 2022 · 2 min readHow to Consume REST APIs using PythonAPI API stands for Application Programming Interface. API is an interface that acts as a communication layer that makes two application talks to each other. In order to build API, we use REST( there are other ways like GraphQL ) Architecture Style. ...01F
LGLody G Mtuiinlodyne.hashnode.dev·Mar 14, 2022 · 2 min readFirst-Class Function in PythonEverything in Python is an Object (You heard it here first). Just kidding! Of course, at it's core everything in Python is an object. Not all languages have this feature, but Python is one of them, together with JavaScript, Ruby etc. This means, stri...00