Results 6 comments of Ted Lawless

Is anyone actively working on this? I would be interested in implementing it in a library application.

I'll look into the target vs. next issue. Target works for us. This probably needs to be configurable. For your second question, the default auth shouldn't be a problem. I...

Hello, Try passing `post=True`. E.g.: `sparql_dataframe.get(endpoint_url, query, post=True)` You can see in the unit tests that queries against Wikidata should work fine with `post=True`: https://github.com/lawlesst/sparql-dataframe/blob/master/tests/test_sparql_dataframe.py#L65

I think that's an error returned by the actual Wikidata SPARQL endpoint. It aggressively rate limits.

If your queries are saved in a text file, then you would just read them in like any other text file in Python and save them to a `query` variable...

What SPARQL endpoint are you hitting? If it is Wikidata, then you must pass `post=True`, e.g. `sparql_dataframe.get(endpoint_url, query, post=True)`.