Azure Functions¶
Prerequisites¶
Follow Git Repository Setup or simply clone the xlwings Server Repo if you just want to deploy xlwings Server for a quick test.
Install the following software:
Before you begin, you’ll need to login to Azure:
az login
Note
If you deploy to Azure Functions using a different method, you should be able to adapt the instructions accordingly.
Files¶
The following files are part of Azure functions setup and may need to be tweaked:
host.jsonlocal.settings.jsonfunction_app.py.funcignore
Deployment¶
In the commands below, we’re going to use the following parameters that you should adjust to match your preferences:
The function app:
xlwings-serverThe resource group:
xlwings-server-rgThe storage account:
xlwingsserversaRegion:
westeurope
Important
You need to replace xlwings-server with your own app name in all of the the following commands as the name needs to be globally unique.
You may also want to skip some of the steps, e.g., if you already have an existing resource group or storage account to deploy to.
Create a resource group:
az group create --name xlwings-server-rg --location westeurope
Create storage account:
az storage account create --name xlwingsserversa --location westeurope --resource-group xlwings-server-rg --sku Standard_LRS
Create the function app (if possible, use the same Python version locally as the one specified in this command):
az functionapp create --resource-group xlwings-server-rg --consumption-plan-location westeurope --runtime python --runtime-version 3.11 --functions-version 4 --name xlwings-server --os-type linux --storage-account xlwingsserversa
Set the required environment variables. Make sure to provide your own license key at the end of this command (you can get a free trial key here). You’ll also need to adjust the
XLWINGS_ENVIRONMENTif this is not theprodenvironment:az functionapp config appsettings set --name xlwings-server --resource-group xlwings-server-rg --settings XLWINGS_ENVIRONMENT=prod XLWINGS_ENABLE_SOCKETIO=false XLWINGS_LICENSE_KEY=<YOUR_LICENSE_KEY>
Run the following to enable the worker process to index the functions:
az functionapp config appsettings set --name xlwings-server --resource-group xlwings-server-rg --settings AzureWebJobsFeatureFlags=EnableWorkerIndexing
Deploy the function app (this is also the command to deploy an update):
Important
This command must be run from the root of your xlwings-server repo.
func azure functionapp publish xlwings-server
It should terminate with the following message:
Remote build succeeded! [...] Syncing triggers... Functions in xlwings-server: http_app_func - [httpTrigger] Invoke url: https://xlwings-server.azurewebsites.net//{*route}If you don’t have access to the
funcCLI, e.g., in the Azure cloud shell, use the following commands instead:Important
This command must be run from the root of your xlwings-server repo.
zip -r function.zip . az functionapp deployment source config-zip \ --resource-group xlwings-server-rg \ --name xlwings-server \ --src function.zip \ --build-remote true
If there’s nothing printed after Functions in ..., have a look at Logging to find out the reason, otherwise go to the URL without the //{*route} part (in the example, that would be https://xlwings-server.azurewebsites.net) and you should see {"status": "ok"}.
Logging¶
If your app correctly deploys including syncing triggers, you can look at the runtime logs in Azure portal like so:
Function App>My Function App. Then, underhttp_app_func, click onInvocations and more.If your Azure functions doesn’t manage to sync triggers, i.e., it doesn’t print a URL after running
func azure functionapp publish, you need to go to the Azure portal:Function App>My Function App. In the left-hand menu, selectDiagnose and solve problems>Availability and Performanceand finally click onFunctions that are not triggeredon the left-hand side.For a live tail of your functions, go to
Monitoring>Log streamand wait until it saysConnected!. Now run an xlwings function or script and you should see the logging turning up. Note that this is only for live tailing, you won’t see log messages from the past here. You may want to try out bothApp Insights LogsandFilesystem Logs.
Cleanup¶
After running this tutorial you can get rid of all the resources again by running:
az group delete --name xlwings-server-rg
GitHub Actions¶
You can use the following template:
Azure DevOps Pipelines¶
Here’s a sample azure-pipelines.yml file:
trigger:
- main
variables:
# To set up the service connection:
# 1. Go to your Azure DevOps project
# 2. Navigate to Project Settings → Service connections
# 3. Create a new Azure Resource Manager service connection
# 4. Give it a name
# 5. Use that name here under variables
azureServiceConnection: 'TODO'
functionAppName: 'TODO'
resourceGroupName: 'TODO'
pool:
vmImage: 'ubuntu-latest'
steps:
- bash: |
zip -r function.zip .
displayName: 'Create deployment package'
- task: AzureCLI@2
displayName: 'Deploy to Azure Functions'
inputs:
azureSubscription: $(azureServiceConnection)
scriptType: 'bash'
scriptLocation: 'inlineScript'
inlineScript: |
# Deploy with remote build
az functionapp deployment source config-zip \
--resource-group $(resourceGroupName) \
--name $(functionAppName) \
--src function.zip \
--build-remote true
Limitations¶
Azure functions don’t support WebSockets directly, i.e., streaming functions won’t work. However, you should be able to use the Azure service “Web PubSub for Socket.IO” instead.
The function is always called
http_app_func, see https://github.com/Azure-Samples/fastapi-on-azure-functions/issues/31