Vincent Emonet
Vincent Emonet
Using `requests` with the most logical config to request a SPARQL endpoint just works, so the problem is on SPARQLWrapper doing weird things internally: ```python import requests from rdflib import...
@JervenBolleman SPARQLWrapper also fails to run SELECT queries to SwissLipids https://beta.sparql.swisslipids.org/ Error `500 Internal Server ErrorThe server was not able to handle your request.`: ```python from SPARQLWrapper import XML, SPARQLWrapper,...
@JervenBolleman I have found out why, it is due to the query params SPARQLWrapper is adding by default: `&format=xml&output=xml&results=xml` in particular `&format=xml` I have checked the tests of SPARQLWrapper and...
@levrik solution works There was issues with testcontainers not capable of finding the docker socket if it was not in the traditional path `/var/run/docker.sock` It was recently fixed here: https://github.com/testcontainers/testcontainers-python/commit/6817582bf67ed36448b69019ab897c50ae80e7e1...
The OG issue about this with longest discussion is here :) https://github.com/RDFLib/rdflib/issues/2136 It's a major issue, nested SERVICE are not uncommon (wikidata uses service for label resolution, so if you...
Thanks for the help @CGNonofr! What do you mean by "removing that part of the code from your node_modules" ? A part related to `viewServiceType`? Is it in a specific...
Yes thanks! Commenting this part in `service.js` fixes it: ```js export const augmentViewsServices = async (services, viewsConfig) => { if (viewsConfig?.viewServiceType === 'ViewsService') { const getViewsServiceOverride = (await import('@codingame/monaco-vscode-views-service-override')).default; mergeServices(services,...
Whatever `viewServiceType` we use it will end up importing some `@codingame/monaco-vscode-*-service-override` and crash when building for prod Same trying to include the package in the vite conf does not do...
Because I was desperate and tried all combinations possible, same problem with or without though. If you look at the code you asked me to comment @CGNonofr : ```ts //...
> What do you mean by no available there 🤔 ? We are getting `Uncaught (in promise) TypeError: e.get(IWorkbenchLayoutService).startup is not a function` error which disappears when we comment out...