Others

Assign a user rights to create application in Azure active directory.

Sometime back I wrote a blog on how to resolve the error “You don’t have required permissions to create Azure Active Directory applications” while configuring Power Apps portal. In that blog I explained that to get rid of the error, you need to make sure that the account used to configure a portal is having …

Assign a user rights to create application in Azure active directory. Read More »

Integrate Python to connect to Dynamics 365/ CDS Web API using Client credentials

Well this is my third post on Python and I am loving the language and it’s simple syntax of doing things. So I decided to explore on how to connect to Dynamics 365 WebAPI using Python. And I came across this wonderful post – https://alexanderdevelopment.net/post/2016/11/27/dynamics-365-and-python-integration-using-the-web-api/. Highly recommended you go through this one. While implementing the …

Integrate Python to connect to Dynamics 365/ CDS Web API using Client credentials Read More »

How to print special characters like Beta, alpha, Phi while using CSV writer in Python

This is my second blog post and gosh, I am loving it here. So here it goes. I had a requirement where I had to print the special greek characters like Alpha, beta, omega, Phi etc in excel using CSV module. Since I am pretty new to the platform, I searched around in the wonderful …

How to print special characters like Beta, alpha, Phi while using CSV writer in Python Read More »

Blank row getting inserted between each row of excel while using CSV writer in Python

I have recently started working on phyton and I just love it. And now I wonder why I didn’t get an opportunity to start earlier. So here it is. I was trying to write a CSV file. Below is the sample code for the same. import csv with open(’emissions.csv’, ‘w’, encoding=”utf-32″) as csvfile:     filewriter = …

Blank row getting inserted between each row of excel while using CSV writer in Python Read More »