django-rest-auth/rest_auth/utils.py
2014-11-06 09:15:54 +01:00

13 lines
375 B
Python

from six import string_types
from django.utils.importlib import import_module
def import_callable(path_or_callable):
if hasattr(path_or_callable, '__call__'):
return path_or_callable
else:
assert isinstance(path_or_callable, string_types)
package, attr = path_or_callable.rsplit('.', 1)
return getattr(import_module(package), attr)