From dae120a0eab2fc49f5011fee4f31d8d9ba439fa3 Mon Sep 17 00:00:00 2001 From: Varun Ratnakar Date: Wed, 8 May 2024 21:08:37 +0530 Subject: [PATCH] Update GraphDB url --- pylipd/tests/test_LiPD.py | 2 +- pylipd/usage.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pylipd/tests/test_LiPD.py b/pylipd/tests/test_LiPD.py index c774644..48acca6 100644 --- a/pylipd/tests/test_LiPD.py +++ b/pylipd/tests/test_LiPD.py @@ -35,7 +35,7 @@ def test_load_t1(self,multipleLipds): def test_load_t2(self): lipd_remote = LiPD() - lipd_remote.set_endpoint("http://localhost:7200/repositories/LiPDVerse-dynamic") #https://linkedearth.graphdb.mint.isi.edu/repositories/LiPDVerse2") + lipd_remote.set_endpoint("https://linkedearth.graphdb.mint.isi.edu/repositories/LiPDVerse-dynamic") try: lipd_remote.load_remote_datasets(["Ocn-MadangLagoonPapuaNewGuinea.Kuhnert.2001", "MD98_2181.Stott.2007", "Ant-WAIS-Divide.Severinghaus.2012"]) except(urllib.error.HTTPError): diff --git a/pylipd/usage.py b/pylipd/usage.py index 68197b9..e080a85 100644 --- a/pylipd/usage.py +++ b/pylipd/usage.py @@ -10,8 +10,8 @@ local_lipd_dir = "/Users/varun/git/LiPD/PyLiPD/data/lpd.latest" -#remote_lipd_endpoint = "https://linkedearth.graphdb.mint.isi.edu/repositories/LiPDVerse-dynamic" -remote_lipd_endpoint = "https://localhost:7200/repositories/LiPDVerse-dynamic" +remote_lipd_endpoint = "https://linkedearth.graphdb.mint.isi.edu/repositories/LiPDVerse-dynamic" +#remote_lipd_endpoint = "https://localhost:7200/repositories/LiPDVerse-dynamic" ''' lipd = LiPD()