This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # View in https://dreampuf.github.io/GraphvizOnline | |
| # TODO: Swap colourings? | |
| # - Sky beings: light blue | |
| # - Earth beings: green | |
| # - Sea beings: aquamarine | |
| # - Underworld beings: black | |
| # - Concepts? Monsters? Titans/Olympians/Heroes? | |
| # Credits: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse | |
| from collections import defaultdict | |
| from dataclasses import dataclass | |
| from pathlib import Path | |
| import pathspec | |
| from tabulate import tabulate | |
| parser = argparse.ArgumentParser(description='Summarise repo.') | |
| parser.add_argument('--dir') |