यदि आप अपना स्वयं का रोल नहीं करना चाहते हैं, तो pydoc
मॉड्यूल में एक फ़ंक्शन उपलब्ध है जो बिल्कुल ऐसा करता है:
from pydoc import locate
my_class = locate('my_package.my_module.MyClass')
यहां सूचीबद्ध अन्य लोगों के लिए इस दृष्टिकोण का लाभ यह है कि प्रदान किए गए बिंदीदार पथ पर किसी भी अजगर वस्तु locate
को मिलेगा , न कि सीधे एक मॉड्यूल के भीतर एक वस्तु। उदा ।my_package.my_module.MyClass.attr
यदि आप उत्सुक हैं कि उनका नुस्खा क्या है, तो यहां देखें:
def locate(path, forceload=0):
"""Locate an object by name or dotted path, importing as necessary."""
parts = [part for part in split(path, '.') if part]
module, n = None, 0
while n < len(parts):
nextmodule = safeimport(join(parts[:n+1], '.'), forceload)
if nextmodule: module, n = nextmodule, n + 1
else: break
if module:
object = module
else:
object = __builtin__
for part in parts[n:]:
try:
object = getattr(object, part)
except AttributeError:
return None
return object
यह pydoc.safeimport
फंक्शन पर निर्भर करता है। यहाँ उसके लिए डॉक्स हैं:
"""Import a module; handle errors; return None if the module isn't found.
If the module *is* found but an exception occurs, it's wrapped in an
ErrorDuringImport exception and reraised. Unlike __import__, if a
package path is specified, the module at the end of the path is returned,
not the package at the beginning. If the optional 'forceload' argument
is 1, we reload the module from disk (unless it's a dynamic extension)."""