I am fairly new to all of his so would appreciate the help. Does anyone knows how would you "connect" to Azure Analysis Services with Django to use as data source? I am assuming within settings.py you would need to change database. Default is SQL lite:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
}
}
I am looking at Connecting to Microsoft SQL server using Python so would it be the same?