Hi Michael,<div> </div><div>Thanks for your help.<br><br><div class="gmail_quote">On Wed, Jan 23, 2013 at 6:15 PM, Michael Pasternak <span dir="ltr">&lt;<a href="mailto:mpastern@redhat.com" target="_blank">mpastern@redhat.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br><div class="im"><br>
</div>in python, you can see object&#39;s attributes by accessing __dict__/__getattr__/dir(object)/etc.,<br>
vm.__dict__ will do the job for you, however i&#39;d suggest you using some IDE (i&#39;m using Eclipse + PyDev plugin),<br>
this way you&#39;ll be able accessing object attributes simply by Ctrl+SPACE auto-completion.<br>
<br></blockquote><div>  Do i have import something for Ctrl+SPACE to work ? It doesn&#39;t work for me atleast for list attributes.</div><div><br></div><div><div>for vm in vmlist:</div><div>    print <a href="http://vm.name">vm.name</a>,vm.memory,<a href="http://vm.id">vm.id</a>,vm.os.kernel,<a href="http://vm.cluster.id">vm.cluster.id</a>,vm.start_time</div>
<div>    #print help(vm.statistics.list())</div><div>    vmslist = vm.statistics.list()</div><div>    for i in vmslist:</div><div>       print i.get_name()</div></div><div><br></div><div>prints</div><div><br></div><div><div>
memory.installed</div><div>memory.used</div><div>cpu.current.guest</div><div>cpu.current.hypervisor</div><div>cpu.current.total</div></div><div><br></div><div>but i need the values of memory.installed and memory.used .</div>
<div><br></div><div>Also where do i get the Java SDK and jars ? I looked at maven but it was 1.0 version of SDK.</div><div><br></div><div><br></div><div>Regards,</div><div>Navin </div></div></div>