From mboxrd@z Thu Jan 1 00:00:00 1970 From: George Shuklin Subject: Our pyxs library is now opensource Date: Fri, 16 Dec 2011 14:59:14 +0400 Message-ID: <4EEB2482.7080005@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel , "xen-users@lists.xensource.com" List-Id: xen-devel@lists.xenproject.org Good day. We (Selectel Ltd) decided to publish our internal library for accessing XenStore from python (pyxs) under LGPL license. Main difference from classic xen.lowlevel.xs is nice support for multiple subscriptions to different keys in xenstore and overall 'pythonic' way do do some staff. F.e. instead x.read('path') you can use just x['path'], instead x.write('','path',value) x['path']=value. But the main cool feature - is Monitor class to allow multiple subscription. It written purely on python without C dependences. Repository: https://github.com/selectel/pyxs Any comments and bugreports appreciated.