An open API service indexing awesome lists of open source software.

https://github.com/epomatti/azure-functions-fileupload

An Azure Functions example to upload files using multipart form data
https://github.com/epomatti/azure-functions-fileupload

azure azure-functions python serverless

Last synced: 9 months ago
JSON representation

An Azure Functions example to upload files using multipart form data

Awesome Lists containing this project

README

          

# File Upload with Azure Functions

![python](https://github.com/epomatti/azure-functions-fileupload/actions/workflows/python-app.yml/badge.svg)

File upload implementation with an Azure Functions app.

### Running it

```sh
# install the dependencies
python3 -m venv env
. env/bin/activate
pip install -r requirements.txt

# start the function
func start

# upload a file
curl -v -F filename='arnold.jpg' -F upload='@arnold.jpg' 'http://localhost:7071/api/upload'
```