This is such a common case that I think it would be nice to simplify it. For example, I propose:
from rdflib import Graph, BNode, SDO
graph = Graph()
entity = BNode()
graph.add_many([
(entity, SDO.name, Literal("The Entity")),
(entity, SDO.description, Literal("Description of the entity"))
])