haruna

Results 68 issues of haruna

SPARQLWrapper's way to judge given query's type is to match clauses with regex patterns. So I'm trying to use [`from rdflib.plugins.sparql.parser import parseQuery, parseUpdate`](https://github.com/RDFLib/rdflib/blob/1fdf40cd957d68753348d1430cbb37e80dbce999/rdflib/plugins/sparql/parser.py#L1537-L1555) for judging. But I found few...

bug
SPARQL

https://github.com/eggplants/sparqlwrapper/runs/4798682454 ```shellsession $ python -m unittest test/test_wrapper.py -v ... Ran 35 tests in 0.468s OK (skipped=1) $ python -m unittest -v ... ====================================================================== FAIL: testConvert (test.test_wrapper.QueryResult_Test) ---------------------------------------------------------------------- Traceback (most recent...

There are many stale or already resolved PRs/Issues in this repo. So I would like to ask the maintainers to organize them in spare time. --- - resolve conflicting PRs...

I would like to add linters into dev dependencies and CI: - isort - black - flake8 This could help #195.

https://github.com/RDFLib/sparqlwrapper/pull/184#discussion_r780823349 I think what is needed: - format with black - lint with flake8 - sort import statements with isort - (lint with mypy after #193) - ...

We have to drop supports for urllib2 + keepalive due to bumping required Python version (325dd1c323635b42565f9adea140848cc9c1d7d3). As we know urllib2 has been already replaced to urllib.request. But some docstrings are...

When downloading: ```shellsession $ ia download violent.-cop.-1989./Violent.Cop.1989..ia.mp4 violent.-cop.-1989.: downloading Violent.Cop.1989..ia.mp4: 4%|█▏ | 84.0M/1.96G [03:59

enhancement

See: https://gist.github.com/eggplants/d590f1cb5d2d0ca19aa87e6ed83089f7 This log is the result of trying to run below code on GitHub Actions: ```bash cargo install --git https://github.com/llvmenv/llvmenv -q llvmenv init llvmenv build-entry 12.0.0 ``` But it...

When I try to run llvmenv on alpine linux on Docker for #115, I encountered segfault. ```Dockerfile FROM rust:alpine3.14 RUN apk update \ && apk add \ gcc g++ automake...