Using Azure AD with django_auth_adfs

django_auth_adfs is a good module to integrate Django with Azure AD authentication in the cloud. Although there is a detailed documentation on the setup, the user interface presented were using the legacy user interface. I am attempting to replicate it using the new interface. Web server URL: https://test.com API exposed in web application: https://test/com/test/testpage IdentifierURL … Read more

How to install MySQLdb module on Django

As many of you would have known, the correct way to install MySQLdb module for use with Django on python 3 is to install mysqlclient using the command below: However, there are times after installation, while starting up Django server, the error below still shows, and it was asking whether the mysqlclient module was installed. … Read more