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
- Host: GitHub
- URL: https://github.com/epomatti/azure-functions-fileupload
- Owner: epomatti
- License: mit
- Created: 2020-06-07T13:05:25.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T17:32:16.000Z (about 4 years ago)
- Last Synced: 2025-03-11T02:51:16.862Z (about 1 year ago)
- Topics: azure, azure-functions, python, serverless
- Language: Python
- Homepage:
- Size: 138 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File Upload with Azure Functions

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'
```