Skip to main content

Just a code I use in a few Bottle/Flask-based and a few other projects.

from just_another_settings import EnvSelector, EnvField

class BaseSettings(object):
    DEBUG = True
    # EnvField looks for the variable and fetches it, otherwise use value from default parameter
    MONGOLAB_URL = EnvField('MONGO_URL')
    HOST = EnvField('HOST', default='localhost')


class ProdSettings(BaseSettings):
    DEBUG = False
    HOST = 'example.com'


class DevSettings(BaseSettings):
    pass


# env selector - selects settings base on env values
env_selector = EnvSelector('APP_MODE', 'dev', dev=DevSettings(), prod=ProdSettings())

# value selector - selects settings base on passed(to the `choose` method) value
by_value_selector = ValueSelector(dev=DevSettings(), prod=ProdSettings())

# somewhere in main file:
# env
application.config.from_object(env_selector.choose())
# by value
application.config.from_object(by_value_selector.choose('dev'))

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

just-another-settings-1.0.tar.gz (2.2 kB view details)

Uploaded Source

File details

Details for the file just-another-settings-1.0.tar.gz.

File metadata

File hashes

Hashes for just-another-settings-1.0.tar.gz
Algorithm Hash digest
SHA256 f60572f43f2130a53e93e1eda4da03f5fd528407502ac77ef4e352c6bf4d4af2
MD5 4ef879653ce0a446367f3216f2f43cec
BLAKE2b-256 59cce6ac48a5612de702c65b60b03e447d689f1fa729b75e0ad0c22eb78a38a4

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page