Is it possible to use an svg image to create a custom node in Networkx? For example:
Using this svg image: https://upload.wikimedia.org/wikipedia/commons/6/67/Firefox_Logo%2C_2017.svg
And in peudocode:
nx.draw(G, pos=pos, node_shape=svg_string)
And end up with something like this:
How could this be done?