You\'d have already found out by my usage of terminology that I\'m a python n00b.
straight forward question:
How can i see a list of methods for a particular obj
Its simple do this for any object you have created
dir(object)
it will return a list of all the attributes of the object.