libvirt/docs/examples/python
Dan Kenigsberg 813a2f683d Fix python examples to use read-write conn
* docs/examples/python/domstart.py python/tests/create.py:
The two example were broken as they needed full-access connection
but only opened read-only connections
2009-07-06 17:05:41 +02:00
..
.cvsignore unleash the hush puppies 2006-07-05 21:52:52 +00:00
.gitignore generate .gitignore files from .cvsignore ones 2008-10-17 10:03:15 +00:00
dominfo.py Remove all trailing blanks; turn on the rule to detect them. 2008-02-05 19:27:37 +00:00
domrestore.py * configure.in libvirt.spec.in docs/examples/Makefile.am 2006-04-25 16:08:48 +00:00
domsave.py Remove all trailing blanks; turn on the rule to detect them. 2008-02-05 19:27:37 +00:00
domstart.py Fix python examples to use read-write conn 2009-07-06 17:05:41 +02:00
guava.xml * configure.in libvirt.spec.in docs/examples/Makefile.am 2006-04-25 16:08:48 +00:00
Makefile.am * configure.in libvirt.spec.in docs/examples/Makefile.am 2006-04-25 16:08:48 +00:00
papaya.xml * configure.in libvirt.spec.in docs/examples/Makefile.am 2006-04-25 16:08:48 +00:00
README Remove all trailing blanks; turn on the rule to detect them. 2008-02-05 19:27:37 +00:00

Some simple examples on how to use the Python API for libvirt

The examples are:

dominfo.py  - print information about a running domU based on the results of
              virDomainGetInfo and virDomainGetXMLDesc
domstart.py - create a domU from an XML description if the domU isn't
              running yet
domsave.py  - save all running domU's into a directory
domrestore.py - restore domU's from their saved files in a directory

The XML files in this directory are examples of the XML format that libvirt
expects, and will have to be adapted for your setup. They are only needed
for domstart.py