Uses RDF-specific programming methods to iterate over components of RDF data.
Making Sense of Linked Data with Python
This blog post goes over three basic tasks for consuming RDF with Python: Fetching the data; Parsing the data returned into a graph; Traversing the [...]
RDF Homework Exercises
This document contains several "written" and "electronic" homework questions originally from the course "Semantic Web Topics" at LeHigh University. They include: Translating an RDF Graph [...]
Inspecting An Ontology With RDFLib
In this blog post, the author details some simple exercises in using the Python RDFLib library to parse and extract information from RDF data. Then, [...]
Using Ordnance Survey Linked Data: A Python RDFLib Example
The author describes how he created a mashup of data.gov.uk and Ordnance Survey Linked Data using just the Python RDFLib library - no triple store [...]
How to Build an SQL Storage Adapter for RDF Data with Ruby
In this blog post, the author discusses his experience getting RDF.rb working with a PostgreSQL storage backend in order to work with RDF data in [...]
Navigating Graphs
Documentation explaining that an RDF Graph is a set of RDF triples, which RDFLib mirrors with a graph emulating a container type. Also contains a [...]
Creating RDF Triples
This documentation explains that RDF is a graph where the nodes are URI references, Blank Nodes or Literals. In RDFLib, nodes are represented by the [...]
Querying with SPARQL
This documentation covers how to use the Python programming languages's RDFLib implementation of the SPARQL 1.1 Query and SPARQL 1.1 Update languages.URL: http://rdflib.readthedocs.org/en/latest/intro_to_sparql.htmlKeywords: Python, SPARQLLanguage: [...]
SPARQL Endpoint Interface to Python (1.6.4)
This is a wrapper around a SPARQL service. It helps in creating the query URI and, possibly, converting the result into a more manageable format. [...]
Apache Jena TDB CRUD operations
This text-based tutorial explains Apache Jena TDB CRUD operations using simple examples. CRUD operations are implemented with the Jena programming API instead of SPARQL. This [...]