Hi,
You can use ontology.metadata to access or modify the ontology's metadata.
If you want to create untyped blank node, you can use Thing(0) (the 0 instruct to create it as a blank node).
For example:
from owlready2 import *
onto = get_ontology("
http://test.org/onto.owl")
with onto:
onto.metadata.comment.append("A comment")
creator = Thing(0)
creator.seeAlso = "See xxx"
onto.metadata.comment.append(creator)
Jiba