Hi! Thanks for help in advance.
In my Jupyter Notebook there is function returning two images.
Lets say suppose my function is “boomer” which returns two images as ‘a’ and ‘b’
m,n=anvil.server.call('boomer')
I expect that ‘a’ will be stored in m and ‘b’ in n.
This gave me error " TypeError: ‘BlobMedia’ object is not itterable."
For solving this error I used
m,n=anvil.server.call('boomer') .get_bytes()
This gave me error " ValueError: too many values to unpack"
I also tried
m,n=Image(source=anvil.server.call('boomer'))
This gave me error “TypeError: ‘Image’ object is not iterable”.
Kindly let me know a code to receive multiple images from function called in anvil and to display the received images on interface.