]> git.proxmox.com Git - mirror_lxc.git/commit
Add python-lxc based on the new liblxc API.
authorStéphane Graber <stgraber@ubuntu.com>
Mon, 27 Aug 2012 23:04:43 +0000 (19:04 -0400)
committerStéphane Graber <stgraber@ubuntu.com>
Mon, 12 Nov 2012 18:16:16 +0000 (13:16 -0500)
commitbe2e4e54da3c8054525321422f7f290d45b32a6c
tree81754f0e097bd2e3f827bc81e9cd038d436c04e6
parent7a44c8b447c4cac2b71bf842a61440bae9caf918
Add python-lxc based on the new liblxc API.

This adds a basic python binding done in C and a python overlay to
extend some features and provide a user-friendlier API.

This python API only supports python 3.x and was tested with >= 3.2.

It's disabled by default in configure and can be turned on by using
--enable-python.

A basic example of the API can be found in src/python-lxc/test.py.
More documentation and examples will be added soon.
configure.ac
src/Makefile.am
src/python-lxc/Makefile.am [new file with mode: 0644]
src/python-lxc/lxc.c [new file with mode: 0644]
src/python-lxc/lxc/__init__.py [new file with mode: 0644]
src/python-lxc/setup.py [new file with mode: 0644]
src/python-lxc/test.py [new file with mode: 0644]