Pure rust parser for graph6, digraph6 formats.
```rust use g6::Graph6; use std::str::FromStr;
fn importgraph6() { let graph = Graph6::fromstr("E?Bw").unwrap(); asserteq!(graph.nodes(), 5); asserteq!(graph.edges(), 6); } ```
```rust use g6::DiGraph6; use std::str::FromStr;
fn importdigraph6() { let digraph = DiGraph6::fromstr("&B|o").unwrap(); asserteq!(digraph.nodes(), 3); asserteq!(digraph.edges(), 7); } ```
to text format
to wolfram mathematica
http://users.cecs.anu.edu.au/~bdm/data