แยกวิเคราะห์ไฟล์กำหนดค่าสภาพแวดล้อมและอาร์กิวเมนต์บรรทัดคำสั่งเพื่อรับชุดตัวเลือกเดียว


111

ไลบรารีมาตรฐานของ Python มีโมดูลสำหรับการแยกวิเคราะห์ไฟล์คอนฟิกูเรชัน ( configparser ) การอ่านตัวแปรสภาพแวดล้อม ( os.environ ) และการแยกวิเคราะห์อาร์กิวเมนต์บรรทัดคำสั่ง ( argparse ) ฉันต้องการเขียนโปรแกรมที่ทำสิ่งเหล่านั้นทั้งหมดและ:

  • มีค่าตัวเลือกเรียงซ้อน :

    • ค่าตัวเลือกเริ่มต้นถูกแทนที่โดย
    • ตัวเลือกไฟล์ config ถูกแทนที่โดย
    • ตัวแปรสภาพแวดล้อมถูกแทนที่โดย
    • ตัวเลือกบรรทัดคำสั่ง
  • อนุญาตให้ใช้ตำแหน่งไฟล์คอนฟิกูเรชันตั้งแต่หนึ่งไฟล์ขึ้นไปที่ระบุในบรรทัดคำสั่งด้วยเช่น--config-file foo.confและอ่านว่า (แทนหรือเพิ่มเติมจากไฟล์คอนฟิกูเรชันปกติ) สิ่งนี้ยังคงต้องเป็นไปตามน้ำตกด้านบน

  • อนุญาตให้นิยามตัวเลือกในที่เดียวเพื่อกำหนดลักษณะการแยกวิเคราะห์สำหรับไฟล์คอนฟิกูเรชันและบรรทัดคำสั่ง

  • รวมตัวเลือกที่แยกวิเคราะห์เป็นคอลเลกชันเดียวของค่าตัวเลือกสำหรับส่วนที่เหลือของโปรแกรมเพื่อเข้าถึงโดยไม่สนใจว่ามาจากที่ใด

เห็นได้ชัดว่าทุกสิ่งที่ฉันต้องการอยู่ในไลบรารีมาตรฐานของ Python แต่มันทำงานร่วมกันได้ไม่ราบรื่น

ฉันจะบรรลุสิ่งนี้โดยมีค่าเบี่ยงเบนขั้นต่ำจากไลบรารีมาตรฐาน Python ได้อย่างไร


6
ฉันชอบคำถามนี้มาก ฉันคิดจะทำอะไรแบบนี้มานานแล้ว ... ฉันดีใจที่jterraceได้รับรางวัลที่นี่เพื่อผลักดันฉันให้
ก้าวข้ามขีด จำกัด

4
คำถามยอดเยี่ยม ! มันวิเศษมากที่ไม่ได้รับการแก้ไขโดยแพ็คเกจยอดนิยม (หรือโดยไลบรารีมาตรฐานเอง) เมื่อนานมาแล้ว
Zearin

คำตอบ:


33

โมดูล argparse ทำให้สิ่งนี้ไม่น่าเบื่อตราบใดที่คุณพอใจกับไฟล์ config ที่ดูเหมือนบรรทัดคำสั่ง (ฉันคิดว่านี่เป็นข้อดีเพราะผู้ใช้จะต้องเรียนรู้ไวยากรณ์เดียวเท่านั้น) ตัวอย่างเช่นการตั้งค่าfromfile_prefix_charsเป็น@ทำให้เป็นเช่นนั้น

my_prog --foo=bar

เทียบเท่ากับ

my_prog @baz.conf

ถ้า@baz.confเป็น

--foo
bar

คุณยังสามารถค้นหารหัสของคุณfoo.confโดยอัตโนมัติได้ด้วยการแก้ไขargv

if os.path.exists('foo.conf'):
    argv = ['@foo.conf'] + argv
args = argparser.parse_args(argv)

รูปแบบของไฟล์คอนฟิกูเรชันเหล่านี้สามารถแก้ไขได้โดยสร้างคลาสย่อยของ ArgumentParser และเพิ่มเมธอดconvert_arg_line_to_args


จนกว่าจะมีคนเสนอทางเลือกที่ดีกว่านี่คือคำตอบที่ถูกต้อง ฉันใช้ argparse และไม่ได้ดูคุณสมบัตินี้ด้วยซ้ำ ดี!
ลีเมอร์

แต่ไม่มีคำตอบสำหรับตัวแปรสภาพแวดล้อม?
jterrace

1
@jterrace: คำตอบนี้อาจใช้ได้กับคุณ: stackoverflow.com/a/10551190/400793
Alex Szatmary

27

UPDATE: ในที่สุดฉันก็สามารถวางสิ่งนี้ลงบน pypi ได้ ติดตั้งเวอร์ชันล่าสุดผ่าน:

   pip install configargparser

ช่วยเต็มรูปแบบและคำแนะนำอยู่ที่นี่

โพสต์ต้นฉบับ

นี่คือสิ่งเล็ก ๆ น้อย ๆ ที่ฉันแฮ็คด้วยกัน อย่าลังเลที่จะแนะนำการปรับปรุง / รายงานข้อบกพร่องในความคิดเห็น:

import argparse
import ConfigParser
import os

def _identity(x):
    return x

_SENTINEL = object()


class AddConfigFile(argparse.Action):
    def __call__(self,parser,namespace,values,option_string=None):
        # I can never remember if `values` is a list all the time or if it
        # can be a scalar string; this takes care of both.
        if isinstance(values,basestring):
            parser.config_files.append(values)
        else:
            parser.config_files.extend(values)


class ArgumentConfigEnvParser(argparse.ArgumentParser):
    def __init__(self,*args,**kwargs):
        """
        Added 2 new keyword arguments to the ArgumentParser constructor:

           config --> List of filenames to parse for config goodness
           default_section --> name of the default section in the config file
        """
        self.config_files = kwargs.pop('config',[])  #Must be a list
        self.default_section = kwargs.pop('default_section','MAIN')
        self._action_defaults = {}
        argparse.ArgumentParser.__init__(self,*args,**kwargs)


    def add_argument(self,*args,**kwargs):
        """
        Works like `ArgumentParser.add_argument`, except that we've added an action:

           config: add a config file to the parser

        This also adds the ability to specify which section of the config file to pull the 
        data from, via the `section` keyword.  This relies on the (undocumented) fact that
        `ArgumentParser.add_argument` actually returns the `Action` object that it creates.
        We need this to reliably get `dest` (although we could probably write a simple
        function to do this for us).
        """

        if 'action' in kwargs and kwargs['action'] == 'config':
            kwargs['action'] = AddConfigFile
            kwargs['default'] = argparse.SUPPRESS

        # argparse won't know what to do with the section, so 
        # we'll pop it out and add it back in later.
        #
        # We also have to prevent argparse from doing any type conversion,
        # which is done explicitly in parse_known_args.  
        #
        # This way, we can reliably check whether argparse has replaced the default.
        #
        section = kwargs.pop('section', self.default_section)
        type = kwargs.pop('type', _identity)
        default = kwargs.pop('default', _SENTINEL)

        if default is not argparse.SUPPRESS:
            kwargs.update(default=_SENTINEL)
        else:  
            kwargs.update(default=argparse.SUPPRESS)

        action = argparse.ArgumentParser.add_argument(self,*args,**kwargs)
        kwargs.update(section=section, type=type, default=default)
        self._action_defaults[action.dest] = (args,kwargs)
        return action

    def parse_known_args(self,args=None, namespace=None):
        # `parse_args` calls `parse_known_args`, so we should be okay with this...
        ns, argv = argparse.ArgumentParser.parse_known_args(self, args=args, namespace=namespace)
        config_parser = ConfigParser.SafeConfigParser()
        config_files = [os.path.expanduser(os.path.expandvars(x)) for x in self.config_files]
        config_parser.read(config_files)

        for dest,(args,init_dict) in self._action_defaults.items():
            type_converter = init_dict['type']
            default = init_dict['default']
            obj = default

            if getattr(ns,dest,_SENTINEL) is not _SENTINEL: # found on command line
                obj = getattr(ns,dest)
            else: # not found on commandline
                try:  # get from config file
                    obj = config_parser.get(init_dict['section'],dest)
                except (ConfigParser.NoSectionError, ConfigParser.NoOptionError): # Nope, not in config file
                    try: # get from environment
                        obj = os.environ[dest.upper()]
                    except KeyError:
                        pass

            if obj is _SENTINEL:
                setattr(ns,dest,None)
            elif obj is argparse.SUPPRESS:
                pass
            else:
                setattr(ns,dest,type_converter(obj))

        return ns, argv


if __name__ == '__main__':
    fake_config = """
[MAIN]
foo:bar
bar:1
"""
    with open('_config.file','w') as fout:
        fout.write(fake_config)

    parser = ArgumentConfigEnvParser()
    parser.add_argument('--config-file', action='config', help="location of config file")
    parser.add_argument('--foo', type=str, action='store', default="grape", help="don't know what foo does ...")
    parser.add_argument('--bar', type=int, default=7, action='store', help="This is an integer (I hope)")
    parser.add_argument('--baz', type=float, action='store', help="This is an float(I hope)")
    parser.add_argument('--qux', type=int, default='6', action='store', help="this is another int")
    ns = parser.parse_args([])

    parser_defaults = {'foo':"grape",'bar':7,'baz':None,'qux':6}
    config_defaults = {'foo':'bar','bar':1}
    env_defaults = {"baz":3.14159}

    # This should be the defaults we gave the parser
    print ns
    assert ns.__dict__ == parser_defaults

    # This should be the defaults we gave the parser + config defaults
    d = parser_defaults.copy()
    d.update(config_defaults)
    ns = parser.parse_args(['--config-file','_config.file'])
    print ns
    assert ns.__dict__ == d

    os.environ['BAZ'] = "3.14159"

    # This should be the parser defaults + config defaults + env_defaults
    d = parser_defaults.copy()
    d.update(config_defaults)
    d.update(env_defaults)
    ns = parser.parse_args(['--config-file','_config.file'])
    print ns
    assert ns.__dict__ == d

    # This should be the parser defaults + config defaults + env_defaults + commandline
    commandline = {'foo':'3','qux':4} 
    d = parser_defaults.copy()
    d.update(config_defaults)
    d.update(env_defaults)
    d.update(commandline)
    ns = parser.parse_args(['--config-file','_config.file','--foo=3','--qux=4'])
    print ns
    assert ns.__dict__ == d

    os.remove('_config.file')

ทำ

การใช้งานนี้ยังไม่สมบูรณ์ นี่คือรายการสิ่งที่ต้องทำบางส่วน:

สอดคล้องกับพฤติกรรมที่บันทึกไว้

  • (ง่าย) เขียนฟังก์ชั่นที่คิดออกdestจากargsในadd_argumentแทนที่จะอาศัยActionวัตถุ
  • (เล็กน้อย) เขียนฟังก์ชั่นที่ใช้parse_args parse_known_args(เช่นคัดลอกparse_argsจากcpythonการนำไปใช้เพื่อรับประกันว่าจะเรียกparse_known_args)

เรื่องง่ายน้อย ...

ฉันยังไม่ได้ลองสิ่งนี้ มันไม่น่าเป็นไปได้ - แต่ก็ยังทำได้! - มันจะได้ผล ...


คุณคิดว่าจะโยนสิ่งนี้ลงใน repo github เพื่อให้ทุกคนสามารถปรับปรุงสิ่งนี้ได้หรือไม่?
brent.payne

1
@ brent.payne - github.com/mgilson/configargparser - ถ้าฉันจะปล่อยสิ่งนี้เป็นรหัสจริงฉันตัดสินใจที่จะใช้เวลาสักเล็กน้อยในคืนนี้เพื่อทำความสะอาดเล็กน้อย :-)
mgilson

3
FWIW ในที่สุดฉันก็สามารถวางสิ่งนี้ลงบน pypi ได้ - คุณควรจะสามารถติดตั้งได้ผ่านทางpip install configargparser
mgilson

@mgilson - ฉันอัปเดตโพสต์ของคุณ แพ็คเกจนี้ควรค่าแก่การใช้งานมากขึ้น!
ErichBSchulz

12

มีห้องสมุดที่ไม่ตรงนี้เรียกว่าเป็นconfigglue

configglue เป็นไลบรารีที่รวม optparse ของ python.OptionParser และ ConfigParser.ConfigParser เพื่อที่คุณจะได้ไม่ต้องทำซ้ำเมื่อคุณต้องการส่งออกอ็อพชันเดียวกันไปยังไฟล์คอนฟิกูเรชันและอินเทอร์เฟซบรรทัดคำสั่ง

นอกจากนี้ยังสนับสนุนตัวแปรสภาพแวดล้อม

นอกจากนี้ยังมีไลบรารีอื่นที่เรียกว่าConfigArgParseซึ่งก็คือ

การแทนที่แบบดร็อปอินสำหรับ argparse ที่อนุญาตให้ตั้งค่าตัวเลือกผ่านไฟล์ config และ / หรือตัวแปรสภาพแวดล้อม

คุณอาจสนใจ PyCon พูดคุยเกี่ยวกับการกำหนดค่าโดยŁukasz Langa - ให้พวกเขากำหนดค่า!


ฉันถามว่ามีแผนรองรับโมดูล argparse หรือไม่
Piotr Dobrogost

10

แม้ว่าฉันจะยังไม่ได้ลองด้วยตัวเอง แต่ก็มีไลบรารีConfigArgParseซึ่งระบุว่ามันทำสิ่งต่างๆที่คุณต้องการได้มากที่สุด:

การแทนที่แบบดร็อปอินสำหรับ argparse ที่อนุญาตให้ตั้งค่าตัวเลือกผ่านไฟล์ config และ / หรือตัวแปรสภาพแวดล้อม


1
ฉันลองแล้ว ConfigArgParse สะดวกมากและเป็นการแทนที่แบบดรอปอิน
maxschlepzig

7

ดูเหมือนว่าห้องสมุดมาตรฐานไม่ได้อยู่ที่นี้ออกจากแต่ละโปรแกรมเมอร์ก้อนหินconfigparserและargparseและos.environรวมกันทั้งหมดในรูปแบบที่อุ้ยอ้าย


5

ไลบรารีมาตรฐาน Python ไม่มีสิ่งนี้เท่าที่ฉันรู้ ฉันแก้ไขสิ่งนี้ด้วยตัวเองโดยการเขียนโค้ดเพื่อใช้optparseและConfigParserแยกวิเคราะห์บรรทัดคำสั่งและไฟล์ config และจัดเตรียมเลเยอร์นามธรรมไว้ด้านบน อย่างไรก็ตามคุณจะต้องใช้สิ่งนี้เป็นการพึ่งพาแยกต่างหากซึ่งจากความคิดเห็นก่อนหน้านี้ของคุณดูเหมือนจะไม่อร่อย

หากคุณต้องการที่จะดูรหัสที่ผมเขียนมันเป็นที่http://liw.fi/cliapp/ มันรวมอยู่ในไลบรารี "command line application framework" ของฉันเนื่องจากเป็นส่วนสำคัญของสิ่งที่เฟรมเวิร์กต้องทำ


4

เมื่อเร็ว ๆ นี้ฉันได้ลองใช้ "optparse"

ฉันตั้งค่าเป็นคลาสย่อยของ OptonParser โดยใช้คำสั่ง '--Store' และ '--Check'

โค้ดด้านล่างนี้น่าจะครอบคลุมถึงคุณ คุณต้องกำหนดวิธีการ 'โหลด' และ 'จัดเก็บ' ของคุณเองซึ่งยอมรับ / คืนพจนานุกรมและคุณก็ตกเป็นเหยื่อมาก


class SmartParse(optparse.OptionParser):
    def __init__(self,defaults,*args,**kwargs):
        self.smartDefaults=defaults
        optparse.OptionParser.__init__(self,*args,**kwargs)
        fileGroup = optparse.OptionGroup(self,'handle stored defaults')
        fileGroup.add_option(
            '-S','--Store',
            dest='Action',
            action='store_const',const='Store',
            help='store command line settings'
        )
        fileGroup.add_option(
            '-C','--Check',
            dest='Action',
            action='store_const',const='Check',
            help ='check stored settings'
        )
        self.add_option_group(fileGroup)
    def parse_args(self,*args,**kwargs):
        (options,arguments) = optparse.OptionParser.parse_args(self,*args,**kwargs)
        action = options.__dict__.pop('Action')
        if action == 'Check':
            assert all(
                value is None 
                for (key,value) in options.__dict__.iteritems() 
            )
            print 'defaults:',self.smartDefaults
            print 'config:',self.load()
            sys.exit()
        elif action == 'Store':
            self.store(options.__dict__)
            sys.exit()
        else:
            config=self.load()
            commandline=dict(
                [key,val] 
                for (key,val) in options.__dict__.iteritems() 
                if val is not None
            )
            result = {}
            result.update(self.defaults)
            result.update(config)
            result.update(commandline)
            return result,arguments
    def load(self):
        return {}
    def store(self,optionDict):
        print 'Storing:',optionDict


แต่ยังคงมีประโยชน์หากคุณต้องการให้เข้ากันได้กับ Python เวอร์ชันเก่า
MarioVilas

3

เพื่อให้เป็นไปตามข้อกำหนดเหล่านั้นทั้งหมดฉันขอแนะนำให้เขียนไลบรารีของคุณเองซึ่งใช้ทั้งการแยกวิเคราะห์ [opt | arg] และ configparser สำหรับฟังก์ชันพื้นฐาน

เมื่อพิจารณาถึงข้อกำหนดสองข้อแรกและข้อสุดท้ายฉันจะบอกว่าคุณต้องการ:

ขั้นตอนที่หนึ่ง: ใช้ตัวแยกวิเคราะห์บรรทัดคำสั่งที่มองหาตัวเลือก --config-file เท่านั้น

ขั้นตอนที่สอง: แยกวิเคราะห์ไฟล์ config

ขั้นตอนที่สาม: ตั้งค่าตัวแยกวิเคราะห์บรรทัดคำสั่งที่สองโดยใช้เอาต์พุตของไฟล์ config เป็นค่าเริ่มต้น

ข้อกำหนดประการที่สามอาจหมายความว่าคุณต้องออกแบบระบบนิยามตัวเลือกของคุณเองเพื่อแสดงฟังก์ชันการทำงานทั้งหมดของ optparse และ configparser ที่คุณสนใจและเขียนท่อประปาเพื่อทำการแปลงระหว่างกัน


นี่ค่อนข้างห่างไกลจาก "ค่าเบี่ยงเบนขั้นต่ำจากไลบรารีมาตรฐาน Python" มากกว่าที่ฉันหวังไว้
bignose

2

นี่คือโมดูลที่ฉันแฮ็กเข้าด้วยกันซึ่งอ่านอาร์กิวเมนต์บรรทัดคำสั่งการตั้งค่าสภาพแวดล้อมไฟล์ ini และค่าคีย์ริงเช่นกัน นอกจากนี้ยังมีอยู่ในส่วนสำคัญ

"""
Configuration Parser

Configurable parser that will parse config files, environment variables,
keyring, and command-line arguments.



Example test.ini file:

    [defaults]
    gini=10

    [app]
    xini = 50

Example test.arg file:

    --xfarg=30

Example test.py file:

    import os
    import sys

    import config


    def main(argv):
        '''Test.'''
        options = [
            config.Option("xpos",
                          help="positional argument",
                          nargs='?',
                          default="all",
                          env="APP_XPOS"),
            config.Option("--xarg",
                          help="optional argument",
                          default=1,
                          type=int,
                          env="APP_XARG"),
            config.Option("--xenv",
                          help="environment argument",
                          default=1,
                          type=int,
                          env="APP_XENV"),
            config.Option("--xfarg",
                          help="@file argument",
                          default=1,
                          type=int,
                          env="APP_XFARG"),
            config.Option("--xini",
                          help="ini argument",
                          default=1,
                          type=int,
                          ini_section="app",
                          env="APP_XINI"),
            config.Option("--gini",
                          help="global ini argument",
                          default=1,
                          type=int,
                          env="APP_GINI"),
            config.Option("--karg",
                          help="secret keyring arg",
                          default=-1,
                          type=int),
        ]
        ini_file_paths = [
            '/etc/default/app.ini',
            os.path.join(os.path.dirname(os.path.abspath(__file__)),
                         'test.ini')
        ]

        # default usage
        conf = config.Config(prog='app', options=options,
                             ini_paths=ini_file_paths)
        conf.parse()
        print conf

        # advanced usage
        cli_args = conf.parse_cli(argv=argv)
        env = conf.parse_env()
        secrets = conf.parse_keyring(namespace="app")
        ini = conf.parse_ini(ini_file_paths)
        sources = {}
        if ini:
            for key, value in ini.iteritems():
                conf[key] = value
                sources[key] = "ini-file"
        if secrets:
            for key, value in secrets.iteritems():
                conf[key] = value
                sources[key] = "keyring"
        if env:
            for key, value in env.iteritems():
                conf[key] = value
                sources[key] = "environment"
        if cli_args:
            for key, value in cli_args.iteritems():
                conf[key] = value
                sources[key] = "command-line"
        print '\n'.join(['%s:\t%s' % (k, v) for k, v in sources.items()])


    if __name__ == "__main__":
        if config.keyring:
            config.keyring.set_password("app", "karg", "13")
        main(sys.argv)

Example results:

    $APP_XENV=10 python test.py api --xarg=2 @test.arg
    <Config xpos=api, gini=1, xenv=10, xini=50, karg=13, xarg=2, xfarg=30>
    xpos:   command-line
    xenv:   environment
    xini:   ini-file
    karg:   keyring
    xarg:   command-line
    xfarg:  command-line


"""
import argparse
import ConfigParser
import copy
import os
import sys

try:
    import keyring
except ImportError:
    keyring = None


class Option(object):
    """Holds a configuration option and the names and locations for it.

    Instantiate options using the same arguments as you would for an
    add_arguments call in argparse. However, you have two additional kwargs
    available:

        env: the name of the environment variable to use for this option
        ini_section: the ini file section to look this value up from
    """

    def __init__(self, *args, **kwargs):
        self.args = args or []
        self.kwargs = kwargs or {}

    def add_argument(self, parser, **override_kwargs):
        """Add an option to a an argparse parser."""
        kwargs = {}
        if self.kwargs:
            kwargs = copy.copy(self.kwargs)
            try:
                del kwargs['env']
            except KeyError:
                pass
            try:
                del kwargs['ini_section']
            except KeyError:
                pass
        kwargs.update(override_kwargs)
        parser.add_argument(*self.args, **kwargs)

    @property
    def type(self):
        """The type of the option.

        Should be a callable to parse options.
        """
        return self.kwargs.get("type", str)

    @property
    def name(self):
        """The name of the option as determined from the args."""
        for arg in self.args:
            if arg.startswith("--"):
                return arg[2:].replace("-", "_")
            elif arg.startswith("-"):
                continue
            else:
                return arg.replace("-", "_")

    @property
    def default(self):
        """The default for the option."""
        return self.kwargs.get("default")


class Config(object):
    """Parses configuration sources."""

    def __init__(self, options=None, ini_paths=None, **parser_kwargs):
        """Initialize with list of options.

        :param ini_paths: optional paths to ini files to look up values from
        :param parser_kwargs: kwargs used to init argparse parsers.
        """
        self._parser_kwargs = parser_kwargs or {}
        self._ini_paths = ini_paths or []
        self._options = copy.copy(options) or []
        self._values = {option.name: option.default
                        for option in self._options}
        self._parser = argparse.ArgumentParser(**parser_kwargs)
        self.pass_thru_args = []

    @property
    def prog(self):
        """Program name."""
        return self._parser.prog

    def __getitem__(self, key):
        return self._values[key]

    def __setitem__(self, key, value):
        self._values[key] = value

    def __delitem__(self, key):
        del self._values[key]

    def __contains__(self, key):
        return key in self._values

    def __iter__(self):
        return iter(self._values)

    def __len__(self):
        return len(self._values)

    def get(self, key, *args):
        """
        Return the value for key if it exists otherwise the default.
        """
        return self._values.get(key, *args)

    def __getattr__(self, attr):
        if attr in self._values:
            return self._values[attr]
        else:
            raise AttributeError("'config' object has no attribute '%s'"
                                 % attr)

    def build_parser(self, options, **override_kwargs):
        """."""
        kwargs = copy.copy(self._parser_kwargs)
        kwargs.update(override_kwargs)
        if 'fromfile_prefix_chars' not in kwargs:
            kwargs['fromfile_prefix_chars'] = '@'
        parser = argparse.ArgumentParser(**kwargs)
        if options:
            for option in options:
                option.add_argument(parser)
        return parser

    def parse_cli(self, argv=None):
        """Parse command-line arguments into values."""
        if not argv:
            argv = sys.argv
        options = []
        for option in self._options:
            temp = Option(*option.args, **option.kwargs)
            temp.kwargs['default'] = argparse.SUPPRESS
            options.append(temp)
        parser = self.build_parser(options=options)
        parsed, extras = parser.parse_known_args(argv[1:])
        if extras:
            valid, pass_thru = self.parse_passthru_args(argv[1:])
            parsed, extras = parser.parse_known_args(valid)
            if extras:
                raise AttributeError("Unrecognized arguments: %s" %
                                     ' ,'.join(extras))
            self.pass_thru_args = pass_thru + extras
        return vars(parsed)

    def parse_env(self):
        results = {}
        for option in self._options:
            env_var = option.kwargs.get('env')
            if env_var and env_var in os.environ:
                value = os.environ[env_var]
                results[option.name] = option.type(value)
        return results

    def get_defaults(self):
        """Use argparse to determine and return dict of defaults."""
        parser = self.build_parser(options=self._options)
        parsed, _ = parser.parse_known_args([])
        return vars(parsed)

    def parse_ini(self, paths=None):
        """Parse config files and return configuration options.

        Expects array of files that are in ini format.
        :param paths: list of paths to files to parse (uses ConfigParse logic).
                      If not supplied, uses the ini_paths value supplied on
                      initialization.
        """
        results = {}
        config = ConfigParser.SafeConfigParser()
        config.read(paths or self._ini_paths)
        for option in self._options:
            ini_section = option.kwargs.get('ini_section')
            if ini_section:
                try:
                    value = config.get(ini_section, option.name)
                    results[option.name] = option.type(value)
                except ConfigParser.NoSectionError:
                    pass
        return results

    def parse_keyring(self, namespace=None):
        """."""
        results = {}
        if not keyring:
            return results
        if not namespace:
            namespace = self.prog
        for option in self._options:
            secret = keyring.get_password(namespace, option.name)
            if secret:
                results[option.name] = option.type(secret)
        return results

    def parse(self, argv=None):
        """."""
        defaults = self.get_defaults()
        args = self.parse_cli(argv=argv)
        env = self.parse_env()
        secrets = self.parse_keyring()
        ini = self.parse_ini()

        results = defaults
        results.update(ini)
        results.update(secrets)
        results.update(env)
        results.update(args)

        self._values = results
        return self

    @staticmethod
    def parse_passthru_args(argv):
        """Handles arguments to be passed thru to a subprocess using '--'.

        :returns: tuple of two lists; args and pass-thru-args
        """
        if '--' in argv:
            dashdash = argv.index("--")
            if dashdash == 0:
                return argv[1:], []
            elif dashdash > 0:
                return argv[0:dashdash], argv[dashdash + 1:]
        return argv, []

    def __repr__(self):
        return "<Config %s>" % ', '.join([
            '%s=%s' % (k, v) for k, v in self._values.iteritems()])


def comma_separated_strings(value):
    """Handles comma-separated arguments passed in command-line."""
    return map(str, value.split(","))


def comma_separated_pairs(value):
    """Handles comma-separated key/values passed in command-line."""
    pairs = value.split(",")
    results = {}
    for pair in pairs:
        key, pair_value = pair.split('=')
        results[key] = pair_value
    return results

0

คุณสามารถใช้ ChainMap สำหรับสิ่งนี้ ดูตัวอย่างของฉันที่ฉันให้ไว้ใน "ข้อใดเป็นวิธีที่ดีที่สุดในการอนุญาตให้แทนที่ตัวเลือกการกำหนดค่าที่บรรทัดคำสั่งใน Python" คำถามดังนั้น


-1

ห้องสมุดConfect ที่ฉันสร้างขึ้นนั้นตรงกับความต้องการของคุณมากที่สุด

  • สามารถโหลดไฟล์คอนฟิกูเรชันได้หลายครั้งผ่านเส้นทางไฟล์หรือชื่อโมดูลที่กำหนด
  • โหลดการกำหนดค่าจากตัวแปรสภาพแวดล้อมพร้อมคำนำหน้าที่กำหนด
  • สามารถแนบตัวเลือกบรรทัดคำสั่งกับคำสั่งคลิกบางคำสั่ง

    (ขออภัยไม่ใช่อาร์กิวเมนต์ แต่การคลิกดีกว่าและขั้นสูงกว่ามากconfectอาจรองรับ argparse ในรุ่นอนาคต)

  • ที่สำคัญที่สุดคือconfectโหลดไฟล์การกำหนดค่า Python ที่ไม่ใช่ JSON / YMAL / TOML / INI เช่นเดียวกับไฟล์โปรไฟล์ IPython หรือไฟล์การตั้งค่า DJANGO ไฟล์กำหนดค่า Python มีความยืดหยุ่นและดูแลรักษาง่ายกว่า

สำหรับข้อมูลเพิ่มเติมโปรดตรวจสอบ README.rst ในพื้นที่เก็บข้อมูลโครงการ โปรดทราบว่ามันรองรับเฉพาะ Python3.6 up

ตัวอย่าง

การแนบตัวเลือกบรรทัดคำสั่ง

import click
from proj_X.core import conf

@click.command()
@conf.click_options
def cli():
    click.echo(f'cache_expire = {conf.api.cache_expire}')

if __name__ == '__main__':
    cli()

โดยจะสร้างข้อความช่วยเหลือที่ครอบคลุมโดยอัตโนมัติพร้อมประกาศคุณสมบัติและค่าเริ่มต้นทั้งหมด

$ python -m proj_X.cli --help
Usage: cli.py [OPTIONS]

Options:
  --api-cache_expire INTEGER  [default: 86400]
  --api-cache_prefix TEXT     [default: proj_X_cache]
  --api-url_base_path TEXT    [default: api/v2/]
  --db-db_name TEXT           [default: proj_x]
  --db-username TEXT          [default: proj_x_admin]
  --db-password TEXT          [default: your_password]
  --db-host TEXT              [default: 127.0.0.1]
  --help                      Show this message and exit.

กำลังโหลดตัวแปรสภาพแวดล้อม

ต้องการเพียงหนึ่งบรรทัดในการโหลดตัวแปรสภาพแวดล้อม

conf.load_envvars('proj_X')

> ขออภัยไม่ใช่ข้อโต้แย้ง แต่การคลิกดีกว่าและขั้นสูงกว่ามาก […] โดยไม่คำนึงถึงประโยชน์ของไลบรารีของบุคคลที่สามนั่นทำให้นี่ไม่ใช่คำตอบสำหรับคำถาม
bignose
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.