Proof of concept using Python with Azure Function and Azure Storage for uploading multiple PDF and Excel files.
- Python v3.8, v.3.9, v3.10 or v3.11
- Azure Functions Core Tools v4
- Microsoft Azure account is required to create an Azure Storage and Azure Function resource
git clone https://github.com/itsronalds/file-uploader
# First, Let's get to the root of the project
cd file-uploader
# Create virtual environment in Windows
py -3 -m venv .venv
# Activate
.venv\Scripts\Activate
# Deactivate (use it when leaving the project)
.venv\Scripts\Deactivate
pip install -r requirements.txt
func start