TIP: Convert Word Document to HTML

Converting Word documents to HTML can be an essential task, especially for web developers and content creators who need to maintain the formatting and structure of their documents online. One powerful tool for this purpose is Mammoth, a library designed to convert .docx files to clean and simple HTML. How do you do conversion from…

TIP – Python Key Error on Traversing SharePoint List

SharePoint, with its powerful collaboration and document management capabilities, is widely used in various organizations. Python, being a versatile programming language, is often employed to interact with SharePoint data using APIs. However, traversing SharePoint lists can sometimes lead to a common stumbling block – the elusive Python KeyError. This error can be solved easily by…

Python – Reading SharePoint List Delegated Application Permissions

SharePoint is a powerful platform for collaboration and document management, extensively used in organizations to streamline workflows and improve productivity. To interact with SharePoint resources programmatically, developers often use access tokens. In this blog, we will explore how to read SharePoint lists using delegated access tokens, which allows applications to access resources on behalf of…

GIT – How to Clone Multiple Projects

There can be scenario where you need to download or clone multiple projects at the same time. This can be daunting task if done one by one, so I thought of writing a PowerShell or Python script. But as you all know why to reinvent the wheel if something is existing, so I researched the…