Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(3) | Derive(0) | Import(0)
Get a list of all available public methods
src/p/e/PEATDB-2.3/PEATDB/plugins/Summary.py PEATDB(Download)
def _doFrame(self): self.mainwin = self.parent.createChildFrame(width=460,title='PEATSA Plugin') methods = self._getmethods() methods = [m for m in methods if m[0] in self.gui_methods.keys()] l=Label(self.mainwin, text='PEATSA Interface')
src/p/e/PEATDB-2.3/PEATDB/plugins/KineticsAnalysis.py PEATDB(Download)
self.mainwin.geometry('800x600+200+100') methods = self._getmethods() methods = [m for m in methods if m[0] in self.gui_methods] l=Label(self.mainwin, text='Kinetics/Temp stab data analysis')
src/p/e/PEATDB-2.3/PEATDB/plugins/PEATSAplugin.py PEATDB(Download)
def _doFrame(self): self.mainwin = self.parent.createChildFrame(width=460,title='PEATSA Plugin') #self.mainwin = self.parent.create methods = self._getmethods() methods = [m for m in methods if m[0] in self.gui_methods.keys()]