I have more than 700 graphs saved in textfiles in graphml format, I want to import those graphs to my julia code get the edge list from each graph and run a specific code for each graph and save the output for each graph in excel sheet there is any documentation about that, the file looks like this
<?xml version="1.0"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd"> ">
<graph id="G" edgedefault="undirected">
<node id="0" />
<node id="1" />
<edge id="0" source="1" target="0" />
</graph>
</graphml>