Source code for werewolf.__init__

__title__ = 'werewolf.__init__'
__version__ = '0.4'
__build__ = 0x000004
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__all__ = ('autodiscover',)

import imp

[docs]def autodiscover(): """ Autodiscovers the werewolf triggers in project apps. Each trigger file which should be found by werewolf, should be named "werewolf_triggers.py". """ from django.conf import settings WEREWOLF_TRIGGERS_MODULE_NAME = 'werewolf_triggers' for app in settings.INSTALLED_APPS: try: app_path = __import__(app, {}, {}, [app.split('.')[-1]]).__path__ except AttributeError: continue try: imp.find_module(WEREWOLF_TRIGGERS_MODULE_NAME, app_path) except ImportError: continue __import__('%s.%s' % (app, WEREWOLF_TRIGGERS_MODULE_NAME))
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.