Install
$ [sudo] pip install getobject
Examples
>>> from getobject import getobject
>>> getobject("inspect")
<module 'os' from 'path/to/inspect.py'>
>>> getobject("inspect.isclass")
<function isclass at ...>
>>> getobject("not-existing")
None
getobject(fullname) function - get object by fullname
pip install getobject==0.0.31
$ [sudo] pip install getobject
>>> from getobject import getobject
>>> getobject("inspect")
<module 'os' from 'path/to/inspect.py'>
>>> getobject("inspect.isclass")
<function isclass at ...>
>>> getobject("not-existing")
None