When too lazy to look at documentation for a third party library, inspect allows the methods available on an object to be retrieved quickly:
>>> import inspect >>> inspect.getmembers("", predicate=inspect.ismethod)
source