Hexrays Python Binding for IDA 6.1 & Hexrays 1.5 python 2.7
# import the module in the interpreter context
import hexrays
# decompile function at 0x402010
c = hexrays.decompile(0x402010)
# print decompiled text
print str(c)
# access local variable names
print [str(v.name) for v in c.lvars]
Pyside for IDA 6.5, Python 2.7, Qt4 (Orginal Qt Library use in IDA 6.5), (x86)
To install : Extract it and overwrite PySide old version in C:\Python27\Lib\site-packages
Notes: This version is only support QtCore4.dll, QtGui4.dll, QtXml4.dll from Orginal IDA 6.5, so if you want to use this in older IDA version, you can copy 3 dll from Orginal IDA 6.5 and replace in your old IDA version