GithubHelp home page GithubHelp logo

jochman / click_config_file Goto Github PK

View Code? Open in Web Editor NEW

This project forked from phha/click_config_file

0.0 1.0 0.0 97 KB

Configuration file support for Click applications

License: MIT License

Python 98.48% Makefile 1.52%

click_config_file's Introduction

Click config file

Easily add configuration file support to your Click applications by adding a single no-arguments decorator.

https://img.shields.io/pypi/v/click-config-file.svg?style=flat-square https://img.shields.io/conda/vn/conda-forge/click-config-file.svg?style=flat-square https://img.shields.io/travis/phha/click_config_file/master.svg?style=flat-square https://img.shields.io/codacy/grade/a5f6262609314683bf2b2bc546bdaffe/master.svg?style=flat-square

Basic usage

click-config-file is designed to be a usable by simply adding the appropriate decorator to your command without having to supply any mandatory arguments. It comes with a set of sensible defaults that should just work for most cases.

Given this application:

@click.command()
@click.option('--name', default='World', help='Who to greet.')
@click_config_file.configuration_option()
def hello(name):
    click.echo('Hello {}!'.format(name))

Running hello --help will give you this:

Usage: hello [OPTIONS]

Options:
  --name TEXT    Who to greet.
  --config PATH  Read configuration from PATH.
  --help         Show this message and exit.

If the configuration file does not exist, running hello will do what you expect:

Hello World!

With this configuration file:

name="Universe"

Calling hello will also do what you expect:

Hello Universe!

Calling hello --name Multiverse will override the configuration file setting, as it should:

Hello Multiverse!

The default name for the configuration file option is --config.

Command line and environment options will override the configuration file options. Configuration file options override default options. So the resolution order for a given option is: CLI > Environment > Configuration file > Default.

Options

Although configuration_option is designed to work without any mandatory arguments, some optional parameters are supported:

implicit

Default: True

By default configuration_option will look for a configuration file even if no value for the configuration option was provided either via a CLI argument or an environment variable. In this case the value will be set implicitly from cmd_name and config_file_name as described below.

If set to False the configuration file settings will only be applied when a configuration file argument is provided.

cmd_name

Default: ctx.cmd_info

The name of the decorated command. When implicitly creating a configuration file argument, the application directory containing the configuration file is resolved by calling click.get_app_dir(cmd_name).

This defaults to the name of the command as determined by click.

config_file_name

Default: config

When implicit is set to True, this argument provides the name of the configuration file inside the application directory.

In addition to the arguments above, all arguments for click.option() and click.File() are supported.

Supported file formats

By default click-config-file supports files formatted according to Configobj's unrepr mode.

You can add support for additional configuration providers by setting the provider keyword argument. This argument expects a callable that will take the configuration file path and command name as arguments and returns a dictionary with the provided configuration options.

The command name is passed in order to allow for a shared configuration file divided by sections for each command.

For example, this will read the configuration options from a shared JSON file:

def myprovider(file_path, cmd_name):
    with open(file_path) as config_data:
        return json.load(config_data)[cmd_name]

@click.command()
@click.option('--name', default='World')
@click_config_file.configuration_option(provider=myprovider)
def hello(name):
    click.echo('Hello {}!'.format(name))

Installation

pip install click-config-file

Why?

There are several existing implementations of config file support for Click, however they seem to lack one or more of the following features:

  • Sensible defaults
  • Proper handling of resolution order
  • Support for multi value options, multiple options or a combination of both

In contrast this module may lack some more sophisticated features of the other implementations. This is a deliberate choice as this module is intended to be a simple option that Just Works with sensible defaults.

click_config_file's People

Contributors

dependabot[bot] avatar ltalirz avatar phha avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.