Created
January 10, 2018 23:02
-
-
Save ruthenium/d60652624cb73393c83fe37f1eb3227e to your computer and use it in GitHub Desktop.
import_string from django
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
# this is from django.utils.module_loading | |
from importlib import import_module | |
def import_string(dotted_path): | |
""" | |
Import a dotted module path and return the attribute/class designated by the | |
last name in the path. Raise ImportError if the import failed. | |
""" | |
try: | |
module_path, class_name = dotted_path.rsplit('.', 1) | |
except ValueError as err: | |
raise ImportError("%s doesn't look like a module path" % dotted_path) from err | |
module = import_module(module_path) | |
try: | |
return getattr(module, class_name) | |
except AttributeError as err: | |
raise ImportError('Module "%s" does not define a "%s" attribute/class' % ( | |
module_path, class_name) | |
) from err |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment