From a78da73b53f2cea9d67f44ab045375d90e633f34 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Tue, 19 Nov 2019 12:23:32 +0100 Subject: [PATCH] changed default endpoint --- biokb/biokb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biokb/biokb.py b/biokb/biokb.py index 214e4c1..31a7429 100644 --- a/biokb/biokb.py +++ b/biokb/biokb.py @@ -20,7 +20,7 @@ class MalformedQueryException(BioKBClientException): class BioKBservice(TextMiningService): - def __init__(self, sparql_url="https://biokb.lcsb.uni.lu/sparql"): + def __init__(self, sparql_url="http://10.240.6.71:8890/sparql"): self.sparql = SPARQLWrapper(sparql_url) self.sparql.setRequestMethod(POSTDIRECTLY) super().__init__('BioKB', -- GitLab