Rank 5: Hypervisor
I tried to list all the available functions by calling this
list_functions = functions.list()
This 64440ec6e53a950b0858 function id is included in list_functions, now this is my main code:
for index, row in df.iterrows():
audio_file_id = row['$id']
file_name = row['name']
data={"audio_id":audio_file_id, "name":file_name}
json_encode = json.dumps(data)
create_copy = functions.create_execution("64440ec6e53a950b0858", data= json_encode)
create_copy
# print("result ", index, ": ",data)
break
But it gives me this:
Error: 500 Server Error: Internal Server Error for url
Return:
{"message":"Function with the requested ID could not be found.","code":404,"type":"function_not_found","version":"1.3.1"}