Skip to content

Azure Function (Python) that creates a Markdown table from a CSV file.

Notifications You must be signed in to change notification settings

wmelvin/azfunc-md-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

azfunc-md-csv

Notice: This repository contains exploratory work and is intended to be reference material rather than a maintained project or finished product. It is not open for contributions and may be deleted at some point.

Explore using the Azure Functions Core Tools (and other tools, such as VS Code extensions) to build a Python Azure Functions application.

Azure Functions Core Tools

Followed the installation instructions for Linux (Ubuntu): Work with Azure Functions Core Tools

Caution: The commands below worked at the time of installation for this project. Refer to source documents from Microsoft when doing a new installation.

Get the key used to verify the package source from Microsoft and create a sources list entry.

curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg

sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list'

Check the results (focal is supported).

cat /etc/apt/sources.list.d/dotnetdev.list

deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-focal-prod focal main

Continue with installation.

sudo apt-get update

sudo apt-get install azure-functions-core-tools-4

Azurite

Install the Azurite extension in VS Code

See: Use Azurite emulator for local Azure Storage development

Configure the project to use Azurite

In local.settings.json change "AzureWebJobsStorage": "" to "AzureWebJobsStorage": "UseDevelopmentStorage=true".


To be continued...

About

Azure Function (Python) that creates a Markdown table from a CSV file.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published