Vincent Emonet

Results 151 comments of Vincent Emonet

@ashleysommer `SPARQLWrapper` currently does not use `requests` unfortunately, it uses `urllib` from python standard lib: https://github.com/RDFLib/sparqlwrapper/blob/master/SPARQLWrapper/Wrapper.py#L838 In our case it is causing issues: it mysteriously fails for some endpoints that...

> We may be able to determine the kind of query by parsing it using this [sparql parser](https://github.com/kurrawong/sparql) Why not just using the RDFLib SPARQL parser? RDFLib is already a...

I would love to see these improvements in sparqlwrapper! But I just checked the last commits and [PRs](https://github.com/RDFLib/sparqlwrapper/pulls), and there have not been any PR merged in more than 2...

Hi @ChildishGiant, note that for fixing those small bugs I am waiting for tauri v2 to be fully released and stable (the beta phase is over, they are now doing...

Thanks for the notice @ChildishGiant , this is because the search is not done on the emoji `:id:` but on the main label and some keywords You can see the...

Here is a minimal code for reproduction, you don't even need to go as far as calling `graph.query()` to get the error, just trying to `parseQuery()` without running `translateQuery()` triggers...

Thanks for letting us know! I have [implemented my errors](https://github.com/vemonet/nanopub-rs/blob/main/lib/src/error.rs) following the official rust by examples docs given at https://doc.rust-lang.org/rust-by-example/error/multiple_error_types/define_error_type.html It seems to be the recommended way to implement custom...

Hi @arenas-guerrero-julian thanks, that is an interesting new format I think that would fit well in `rdflib-endpoint`, we can just automatically use pycottas and a cottas store to load a...

Would very much like this! @jlowin I have tried to run `fastmcp` as a server using the docs from the README ```sh uv run fastmcp run server.py ``` Running the...

Thanks @joein ! Documentation of `cache_dir` would already be a good improvement > We are using `/tmp` cause it is not guaranteed that fastembed will have permission to write to...