Re: python xauth

2011-07-11 Thread Ian Kelly
On Sun, Jul 10, 2011 at 11:23 PM, kracekumar ramaraju wrote: > I am looking to use xauth in python?It is for my command line process,I would > like to have few examples and resources. First, by "xauth" do you mean the X11 authorization scheme, or the "extended authentication" (xauth.org) scheme?

Re: python xauth

2011-07-10 Thread Cousin Stanley
kracekumar ramaraju wrote: > I am looking to use xauth in python ? > > It is for my command line process, > I would like to have few examples > and resources. A simple example >>> import subprocess as SP >>> >>> proc = [ 'xauth' , 'list' , ':0' ] >>> >>> pipe = SP.Popen( proc , stdo