Wednesday, December 28, 2011

Introduction to RDFLib


>>> import rdflib
>>> from rdflib import ConjunctiveGraph
>>> graph = ConjunctiveGraph()
>>> graph.parse("http://semantictweet.com/ecolix")
)>
>>> for triple in graph:
...    print triple

Tuesday, December 6, 2011

Git is your friend !

> make dir myproject
> cd myproject
> git clone git@github.com:myproject.git .
> git branch --track abranch origin/abranch


Some tutorials: