diff --git a/scripts/load_all_vocabs.py b/scripts/load_all_vocabs.py index d3e519f..b67105a 100644 --- a/scripts/load_all_vocabs.py +++ b/scripts/load_all_vocabs.py @@ -6,12 +6,13 @@ BASE_DB_URI = os.environ.get("BASE_DB_URI", None) ENDPOINT = f"{BASE_DB_URI}/statements" +print(ENDPOINT) DB_USERNAME = os.environ.get("DB_USERNAME", None) DB_PASSWORD = os.environ.get("DB_PASSWORD", None) # get a list of pathname strings of all the turtle files in the vocabularies folder voc_strings = glob.glob(str(Path(__file__).parent.parent / "vocabularies") + "/*.ttl") -print(voc_strings) +# print(voc_strings) # build a list of Path objects using the pathname strings voc_paths = []