Skip to content

Instantly share code, notes, and snippets.

@Holovin
Created July 16, 2017 21:07
Show Gist options
  • Save Holovin/35c40ebf0f7000e599911786980f061a to your computer and use it in GitHub Desktop.
Save Holovin/35c40ebf0f7000e599911786980f061a to your computer and use it in GitHub Desktop.
Get all methods of object
print([method for method in dir(OBJECT) if callable(getattr(OBJECT, method))])
@Holovin
Copy link
Author

Holovin commented Jul 16, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment