mirror of
https://github.com/clearlinux/python-lkvm.git
synced 2026-06-15 18:15:48 +00:00
86a89d42e0fa47eae53a3d69fee9d0c3109732c1
Remove wheel requirement and ask for psutil>=1.2.1 as it seems to works nicely.
Summary
===========
**python-lkvm** is a python wrapper for lkvm command line which exposes its
methods through a simple API. This allows other python applications to manage
instances.
Getting started
---------------
As most of python modules, *python-lkvm* can be installed via setuptools: ::
$ python setup.py install
Once this module is installed, it can be used their method creating a client
instance, for example, for listing existing instances: ::
import lkvm
client = lkvm.Client()
for ins in client.list_instances():
print ins.name, ins.state
Description
Languages
Python
100%