awswrangler.neptune.execute_sparql¶
- awswrangler.neptune.execute_sparql(client: NeptuneClient, query: str) DataFrame ¶
Return results of a SPARQL query as pandas DataFrame.
- Parameters:
client (
NeptuneClient
) – instance of the neptune client to usequery (
str
) – The SPARQL traversal to execute
- Return type:
DataFrame
- Returns:
Results as Pandas DataFrame
Examples
Run a SPARQL query
>>> import awswrangler as wr >>> client = wr.neptune.connect(neptune_endpoint, neptune_port, iam_enabled=False) >>> df = wr.neptune.execute_sparql(client, "PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?name WHERE { ?person foaf:name ?name .