①graphviz,pythonでdot言語のソースを入力する方法を教えて下さい。
AttributeErrorがでました。
②Sourceクラスの検索方法を教えて下さい。
google,grep,pychram内で検索できますか。
よろしくお願いします。

from graphviz import *
temp = """
digraph dot12{
1->2    
}
"""
s = Source(temp, filename="test.gv", format="png")
print(s.source)
s.view()
print('-------------------------------------------------')
p = Graph(name='parent')
p.source=temp
print(p.source)
#    p.source=temp
#AttributeError: can't set attribute