getobject(fullname) function - get object by fullname


Keywords
object inspect, python
License
BSD-3-Clause
Install
pip install getobject==1.0.3

Documentation

Travis

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

Sources