[Solved] Is it possible to make a wordcloud in dash?

I have a bag of words generated with nltk. Is it possible to make a wordcloud of this words with dash?

Wordclouds aren’t built in to plotly.js or the dash_core_components.Graph component, but you could presumably use a third-party python word cloud generator like https://github.com/amueller/word_cloud, export that word-cloud to an image, and embed that image into a Dash app using the dash_html_components.Img component!

I have a function which creates a wordcloud image and save as temp.png but I don’t know how to run it on the graph, I mean it donlt need callbacks so to run it?
Thanks