Skip to main content

Manage project configuration on multiple environments with ease.

Project description

Figa can read from multiple config sources including several file formats, environment variables, and even the Internet, allowing you to configure your project however you want.

Figa supports many sources, including:

  • Environment variables

  • Dict objects

  • JSON (.json)

  • HOCON (.hocon, .conf)

  • INI, CFG (.ini, .cfg)

  • YAML (.yaml, .yml)

  • TOML (.toml)

  • .properties (.properties)

  • Internet resources

$ pip install figa
import figa


class MyConfig(figa.Config):
    development = "~/config.yml"  # use YAML file for config when developing
    production = "env", "cfg_"  # use environment variables with cfg_ prefix in production

    def get_env(self):
        if "PRODUCTION" in figa.env:  # use environment variable we set as signal for prod. environment
            return "production"
        else:
            return "development"


config = MyConfig()

# config can be accessed using dots or indexing
print(config.key == config["key"])  # True

# configurations can be accessed explicitly
dev_cfg = MyConfig("development")
prod_cfg = MyConfig("production")

Data types can be set explicitly or guessed from the file extension.

class MyConfig(figa.Config):
    explicit_ex = "ini", "./config.conf"
    # .conf would be detected as HOCON, but we set to INI

This project is published under the MIT License. See LICENSE.md.

Project details


Download files

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

Source Distribution

figa-0.1a2.tar.gz (6.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page