我正在使用RDFAlchemy和rdflib图作为数据源,即rdfalchemy.rdfSubject.db.
如果我有uri,如何进行rdfalchemy映射对象?使用uri调用构造函数会创建一个对象,但不会从图中检索其他属性的值.使用get_by(resUri =’http:// …’)会产生AttributeError
class Book(rdfAlchemy.rdfSubject):
rdf_type = BIBO.Book
isbn = rdfalchemy.rdfSingle(BIBO.isbn10)
Book.get_by(resUri='') # AttributeError
b = Book(uri) #a book identified with uri exists in the data
b.title #empty string
解决方法:
我猜应该是这样的:
b = Book(URIRef(uri))