나는 결과를 사용하려면 argparse.ArgumentParser()
인 Namespace
기대하는 방법으로, 객체 사전 또는 개체 (참조 매핑 같은 collections.Mapping을 ), 그것을 할 올바른 방법은 무엇입니까?
C:\>python
Python 2.7.3 (default, Apr 10 2012, 23:31:26) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> import argparse
>>> args = argparse.Namespace()
>>> args.foo = 1
>>> args.bar = [1,2,3]
>>> args.baz = 'yippee'
>>> args['baz']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'Namespace' object has no attribute '__getitem__'
>>> dir(args)
['__class__', '__contains__', '__delattr__', '__dict__', '__doc__', '__eq__', '_
_format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__',
'__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__
', '__str__', '__subclasshook__', '__weakref__', '_get_args', '_get_kwargs', 'ba
r', 'baz', 'foo']
객체에 "닿아" __dict__
속성을 사용하는 것이 적절 합니까?
나는 대답은 전혀 생각하지 않을 것이다 : __dict__
인터페이스, 방법에 대한 구현을위한 규칙 냄새,하지만 __getattribute__
나 __setattr__
또는 __contains__
것으로 보인다.
vars()
locals()
globals()