I am trying to upload a file from a Flask (Flask-restplus) application directly to azure data lake store (gen1).
The flask application is running on azure web app. Is that even possible, or would I need to upload it to the azure web app server first, before moving it to ADLS?
The python library for ADLS (https://github.com/Azure/azure-data-lake-store-python) doesn't seem to have any function for that. For example, ADLUploader
expects a local file as source.
Thanks!