I have a folder full of python snippets and want to search it in a more intelligent way than grep. Is there already a script which parses python snippets to AST and lets you search it, like http://nullege.com?
For example, if you have the following code:
class InspectionFrame(wx.Frame):
def SaveSettings(self, config):
w, h = self.GetSize()
you should be able to search for wx.Frame.GetSize.