Automate Boring Tasks — Loop API Calls for Each Record of a Data File Using PostmanThere are cases when you need to execute an API call many times — again and again and again and again. Have seen people spending weeks or…Mar 24, 2023Mar 24, 2023
Python Class Decorator Primer — Class Instance RegistryLet’s assume we have a situation where we need to keep track about eache instance of a class.Oct 21, 2022Oct 21, 2022
Event-Driven Python with pypubsubSimple Event Driven Python Example — ExplainedSep 25, 2022Sep 25, 2022
Take a screenshot in Python, using SeleniumSelenium driver has save_screenshot() method which saves a screenshot of the browser viewable area to an image file. Let’s try taking a…Dec 28, 2021Dec 28, 2021
Passing context across steps with pytest-bddBehave framework uses generic catch-them-all context to maintain state across test steps. Many newcomers to the pytest and pytest-bdd world…Dec 26, 2021Dec 26, 2021
Test HTTP and API interactions with vcrpyImplement fast HTTP and API interaction tests for Python applications with easeNov 30, 2021Nov 30, 2021
How to execute unit tests before commit or push to git?The term “shift left” refers to a practice in software development in which teams focus on quality, work on problem prevention instead of…Nov 29, 2021Nov 29, 2021
How to Migrate a Git RepositorySometimes you need to migrate an existing Git repository into a new repository. The migration needs to guarantee that the full commit…May 15, 2021May 15, 2021
Connect to a SQL Database from Python using access tokenConnecting to a database using username and password is very convenient and easy. There are situations where we have a restriction to use…Apr 23, 20211Apr 23, 20211
Define Environment Variables for Databricks ClusterYou have Databricks instance and you need to be able to configure the environment variables for the Databricks cluster in automated way…Nov 3, 2020Nov 3, 2020
Add OpeanAPI documentation and SwaggerUI to your Django Rest Framework projectHere is step-by-step recipe on how to add auto generated documentation for your REST API in OpenAPI format and enable SwaggerUI. The…Oct 12, 2020Oct 12, 2020
Use decorators to convert any Python class to a SingletonIn Python there are many ways to implement the Singleton Pattern. For example:Sep 2, 20201Sep 2, 20201
Decode and Validate Azure Active Directory Token using PythonAzure Active Directory uses JWT tokens for authentication and authorization. You need to decode and validate JWT Token issued by Azure…Aug 31, 2020Aug 31, 2020
Streaming Response from Python Django ApplicationThere are many situations where you might need to stream your content. For example you might need to return big files which are…Aug 25, 2020Aug 25, 2020
Minimal HTML TemplateWhen I want to do a quick conceptual test, I need a simple, short HTML template to start with.Oct 7, 2019Oct 7, 2019
Logging in Python [Recipe]Very often we need to give our application or Python script logging capabilities. We could use print, but quickly goes out of control…Sep 27, 2019Sep 27, 2019
Generate Short URL From String in PythonThis recipe, originally published on DataGems (Generate Shourt URL From String in Python), shows how to generate short string in Python…Sep 25, 20191Sep 25, 20191
Create DataFrame From Python Objects in pysparkHow to create pyspark DataFrame from Python objects directly in a variety of situations.Sep 13, 2019Sep 13, 2019