sven-h

Results 4 comments of sven-h

Hi, I have encountered the same issue. I traced it down to an SSL error for all pages which uses Let's Encrypt. Please see also [the issue I created on...

Hi @AlasdairGray , do you have a minimal examples which shows this error?

For me the following snippet works fine: ```python from SPARQLWrapper import SPARQLWrapper, JSON sparql = SPARQLWrapper("https://swel.macs.hw.ac.uk/data/repositories/bioschemas") sparql.setQuery(""" SELECT * WHERE { ?s a ?o. } LIMIT 10 """) sparql.setReturnFormat(JSON) ret...

Hi, your script works fine for me: ``` conda create -n testenv python=3.8 conda activate testenv pip install sparqlwrapper ``` Can you check the folder of openssl with `openssl version...