How to draw arrows instead of lines between nodes on a Folium map using NetworkX?

How to draw arrows instead of lines between nodes on a Folium map using NetworkX?

I’m working on a Python project where I’m using the folium library to create an interactive map visualizing transactions between different entities. I have a NetworkX DiGraph (G) representing these transactions, where nodes represent senders and receivers, and edges represent the transactions between them
I want to draw arrows instead…