Jason Motley
04/06/2022, 11:12 PMmain section of a standard python script?Kevin Kho
Jason Motley
04/06/2022, 11:20 PMfor x in my dict:
id= dict[x]
response1= function1(id)
file= function2(id, response1)
result= functino3(id, file)Kevin Kho
Jason Motley
04/06/2022, 11:23 PMKevin Kho
Jason Motley
04/06/2022, 11:24 PMJason Motley
04/06/2022, 11:25 PMKevin Kho
with Flow() as flow:
ids = get_keys(dict)
response1 = function1.map(ids)
files = function2.map(ids, response1)
result = function3.map(ids, files)Kevin Kho
response1 , files, result being ListsJason Motley
04/06/2022, 11:26 PMKevin Kho