Source code for dash.contrib.plugins.weather.conf

__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = 'Copyright (c) 2013 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('get_setting',)

from django.conf import settings

from dash.contrib.plugins.weather import defaults

[docs]def get_setting(setting, override=None): """ Get a setting from ``dash.contrib.plugins.weather`` conf module, falling back to the default. If override is not None, it will be used instead of the setting. :param setting: String with setting name :param override: Value to use when no setting is available. Defaults to None. :return: Setting value. """ if override is not None: return override if hasattr(settings, 'DASH_PLUGIN_WEATHER_{0}'.format(setting)): return getattr(settings, 'DASH_PLUGIN_WEATHER_{0}'.format(setting)) else: return getattr(defaults, setting)
Read the Docs v: 0.3.2
Versions
latest
0.3.2
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.