We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 974d779 commit 80347e4Copy full SHA for 80347e4
nc2rdf/nc2rdf.py
@@ -50,7 +50,7 @@ def baldgraph2schemaorg(graph):
50
currField = getBasename(str(row[0])).strip()
51
#print(getBasename(str(row[0])) + ' (type: ' + str(type(row[0])) + ")" + " :: " + row[1] + ' (type: ' + str(type(row[1])) + ")")
52
if(currField in mapping_idx.keys()):
53
- print('schemaorg:' + mapping_idx[currField], "\t", row[1])
+ #print('schemaorg:' + mapping_idx[currField], "\t", row[1])
54
predUri = URIRef("http://schema.org/" + mapping_idx[currField])
55
lit = Literal(row[1])
56
schema_g.add( (container, predUri, lit) )
0 commit comments