We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine a query like
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> prefix owl: <http://www.w3.org/2002/07/owl#> SELECT distinct ?s ?label WHERE { GRAPH <http://purl.obolibrary.org/obo/merged/CHEMINF> { ?s rdf:type owl:Class . ?s rdfs:label ?label FILTER strstarts(str(?s), "http://semanticscience.org/resource/CHEMINF_") } }
With code like:
def _run_query(query, base: str): logger.debug("running query: %s", query) res = requests.get(base, params={"query": query, "format": "csv"}) return pd.read_csv(StringIO(res.text), sep=",")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Combine a query like
With code like:
The text was updated successfully, but these errors were encountered: