def load_gcn()

in src/scripts/gcn_crawler.py [0:0]


def load_gcn(idx: str) -> str:
    link = resolve_link(idx)
    r = requests.get(link)
    if r.status_code == 200:
        return r.text