Michal Mucha
12/11/2020, 12:21 PMemre
12/11/2020, 1:34 PMMichal Mucha
12/11/2020, 3:33 PMflow1
and flow2
but they are in two separate files:VERSION = '1'
with Flow('RunScreen', schedule=schedule) as flow1:
saved_screen_path = t_download_screen()
final = t_upload_screen_to_onedrive(saved_screen_path)
if __name__ == "__main__":
flow1.register(project_name="anonymous-automation", version_group_id=VERSION)
VERSION = '1'
with Flow('EmailReports', schedule=schedule) as flow2:
for l in labels:
attachments_paths = t_download_attachments(l)
t_upload_report_to_onedrive(l, attachments_paths)
if __name__ == "__main__":
flow2.register(project_name="anonymous-automation", version_group_id=VERSION)
Zanie
version_group_id
is the unique id for a single ‘group’ of flows (that would generally be expected to be of the same name)Michal Mucha
12/11/2020, 3:51 PMZanie