Skip to content

Instantly share code, notes, and snippets.

@edsu
Created December 29, 2009 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edsu/265325 to your computer and use it in GitHub Desktop.
Save edsu/265325 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from rdflib.graph import ConjunctiveGraph
g = ConjunctiveGraph()
g.parse("http://inkdroid.org/journal/network", format='rdfa', lax=True)
g.parse("http://danbri.org/words/network", format='rdfa', lax=True)
for q in g.quads((None, None, None)):
print q
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment