Python Forum

Full Version: Azure Function App Configuration Settings
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm fairly novice with Python, but looking for examples of how to retrieve a value in the configuration settings within an Azure Functions App. This python code will be deployed as a function of this functions app and I want to retrieve a connection string from a configuration setting.
I'm not an Azure user, but generally the way these platforms expose settings to your application is via environment variables (see, e.g. this that I found for Azure). The variable environ in the os module (docs here) is basically a dict containing the environment variables and their values that are passed to an application.