mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
17 lines
500 B
Python
17 lines
500 B
Python
from etl.non_intrusive_surveys.upload.UploadNonIntrusives import UploadNonIntrusives
|
|
|
|
|
|
def app():
|
|
"""
|
|
This script handles the creation of the portfolio for the non-intrusive surveys
|
|
:return:
|
|
"""
|
|
|
|
non_intrusive_s3_filename = (
|
|
"customers/Vander Elliot/Non-intrusive survey template V2 - Amazon Management Services.xlsx"
|
|
)
|
|
|
|
non_intrusive = UploadNonIntrusives(
|
|
s3_template_location=non_intrusive_s3_filename,
|
|
s3_bucket="retrofit-datalake-dev",
|
|
)
|