1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2024-10-26 07:55:06 +03:00
Python language binding for libvirt native C API
Go to file
Eric Blake ac532c69ea maint: set up preferred emacs settings
Copy the relevant settings from libvirt.git, so that emacs users
maintain the style previously used before the two repos split.

* .dir-locals.el: New file.

Signed-off-by: Eric Blake <eblake@redhat.com>
2014-03-24 11:04:15 -06:00
examples examples: demonstrate network events 2014-02-11 17:58:48 -07:00
tests Add test for setting scheduler parameters 2014-03-19 15:16:15 +00:00
.dir-locals.el maint: set up preferred emacs settings 2014-03-24 11:04:15 -06:00
.gitignore maint: ignore .pyc files 2014-03-21 12:51:33 -06:00
AUTHORS.in Setup distutils build system 2013-11-22 15:58:06 +00:00
autobuild.sh Add python3 to the automated build and RPM 2013-12-12 11:26:11 +00:00
COPYING Setup distutils build system 2013-11-22 15:58:06 +00:00
COPYING.LESSER Setup distutils build system 2013-11-22 15:58:06 +00:00
generator.py generator: Skip exporting only sentinels 2014-02-20 17:12:45 +01:00
HACKING Update README file contents and add HACKING file 2013-11-26 11:44:19 +00:00
libvirt-lxc-override-api.xml Introduce an LXC specific public API & library 2013-01-14 13:58:34 +00:00
libvirt-lxc-override.c override: Replace Py{Int,Long}_FromLong with helpers 2013-12-11 16:12:54 +00:00
libvirt-override-api.xml Add missing binding of security model/label APIs 2013-11-27 11:11:23 +00:00
libvirt-override-virConnect.py Added python binding for the new network events API 2013-12-11 15:39:09 +00:00
libvirt-override-virDomain.py Introduce new domain create APIs to pass pre-opened FDs to LXC 2013-07-18 11:01:14 +01:00
libvirt-override-virDomainSnapshot.py python: treat flags as default argument with value 0 2013-03-22 11:50:09 +08:00
libvirt-override-virStoragePool.py python: treat flags as default argument with value 0 2013-03-22 11:50:09 +08:00
libvirt-override-virStream.py Fix stream related spelling mistakes 2014-02-13 11:17:29 +01:00
libvirt-override.c override: Return NULL on python failure in getCPUModelNames 2014-03-20 13:57:24 -04:00
libvirt-override.py override: Fix exception handling syntax 2013-12-09 08:49:56 -06:00
libvirt-python.spec.in Add python3 to the automated build and RPM 2013-12-12 11:26:11 +00:00
libvirt-qemu-override-api.xml agent: add python module support 2012-08-23 19:07:53 +08:00
libvirt-qemu-override.c override: Replace PyString_FromString with libvirt_constcharPtrWrap 2013-12-11 16:12:54 +00:00
libvirt-utils.c Import some virTypedParams* APIs from libvirt 2013-11-22 15:58:06 +00:00
libvirt-utils.h Add space after comma for consistency with code style 2014-01-02 09:52:13 -06:00
MANIFEST.in Setup distutils build system 2013-11-22 15:58:06 +00:00
NEWS Setup distutils build system 2013-11-22 15:58:06 +00:00
README Update README file contents and add HACKING file 2013-11-26 11:44:19 +00:00
sanitytest.py Skip network event callbacks in sanity test 2013-12-11 16:39:13 +00:00
setup.py Add support for running unit tests with nose 2014-03-19 15:16:15 +00:00
typewrappers.c Rewrite libvirt_charPtrUnwrap to work with Python 3.0->3.2 2013-12-12 18:15:05 +00:00
typewrappers.h override: Switch virStreamSend wrapper to use libvirt_charPtrSizeUnwrap 2013-12-11 16:14:46 +00:00

     Libvirt Python Binding README
     =============================

This package provides a python binding to the libvirt.so,
libvirt-qemu.so and libvirt-lxc.so library APIs.

It is written to build against any version of libvirt that
is 0.9.11 or newer.

This code is distributed under the terms of the LGPL version
2 or later.

The module can be built by following the normal python module
build process

  python setup.py build
  sudo python setup.py install

or to install as non-root

  python setup.py build
  python setup.py install --user


Patches for this code should be sent to the main libvirt
development mailing list

  http://libvirt.org/contact.html#email

To send patches, it is strongly recommended to use the
'git send-email' command.

Make sure the mails mention that the patch is for the python
binding. This can be done by setting a config parameter in the
local git checkout

  git config format.subjectprefix "PATCH python"