This tutorial shows the way how to create python based azure function with v2 and this is the updated version of below YouTube tutorial
Azure Function Python Setup and Custom Packages Installation
• Azure Function Python Setup and Custom Pac...
Commands: ============= nuget.exe install -Source https://www.siteextensions.net/api/v2/ -OutputDirectory D:\home\site\tools python361x64 mv /d/home/site/tools/python3*/content/python*/* /d/home/site/tools Azure Function ===============
import sys, os.path
sys.path.append('D:/home/site/tools/Lib/site-packages')
import pandas
make sure you are importing custom added package after "sys.path.append" line otherwise you will get error.
By Afroz Hussain
#algotics #azurefunctions #azurecloud #azurepython