thirdparty/python-graph/examples/read.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Thu, 27 Nov 2008 17:22:39 +0000
changeset 596 7dd98eeba61b
parent 594 06c2228e39cb
permissions -rw-r--r--
Fix some typo in logic.models.base. Patch by: Pawel Solyga

#!/usr/bin/env python

# Copyright (c) 2007-2008 Pedro Matiello <pmatiello@gmail.com>
# License: MIT (see COPYING file)

import sys
sys.path.append('..')
import graph

gr = graph.graph()

inputfile = file('graph.xml','r')
string = inputfile.read()
inputfile.close()

gr.read(string)
print gr.write()