Uncompyle2 worked for me with Python 2.7.
https://github.com/wibiti/uncompyle2
Quick how to use uncompyle2 , Install it and then
>>>import uncompyle2
>>> with open("decompiled.py","wb") as f:
... uncompyle2.uncompyle_file("compiled.pyc",f)
It will generate source code back in decompile.py