"venue" is always None

#2
by PaulLerner - opened

Hi,

The "venue" field seem to be missing in some way... it is always None (in the .json files)

root = Path("ACL-OCL/Base_JSON")
for path in root.glob("*/json/*/*.json"):
    with open(path,'rt') as file:
        paper = json.load(file)
    assert paper["venue"] is None

Sign up or log in to comment