[python] 파이썬에서 객체의 정규화 된 클래스 이름을 얻습니다.

로깅 목적으로 Python 객체의 정규화 된 클래스 이름을 검색하려고합니다. (정규화 된 패키지 및 모듈 이름을 포함한 클래스 이름을 의미합니다.)

에 대해 알고 x.__class__.__name__있지만 패키지와 모듈을 얻는 간단한 방법이 있습니까?



답변

다음 프로그램으로

#! /usr/bin/env python

import foo

def fullname(o):
  # o.__module__ + "." + o.__class__.__qualname__ is an example in
  # this context of H.L. Mencken's "neat, plausible, and wrong."
  # Python makes no guarantees as to whether the __module__ special
  # attribute is defined, so we take a more circumspect approach.
  # Alas, the module name is explicitly excluded from __qualname__
  # in Python 3.

  module = o.__class__.__module__
  if module is None or module == str.__class__.__module__:
    return o.__class__.__name__  # Avoid reporting __builtin__
  else:
    return module + '.' + o.__class__.__name__

bar = foo.Bar()
print fullname(bar)

Bar정의

class Bar(object):
  def __init__(self, v=42):
    self.val = v

출력은

$ ./prog.py
foo.Bar


답변

제공된 답변은 중첩 클래스를 처리하지 않습니다. Python 3.3 ( PEP 3155 ) 까지는 사용할 수 없지만 실제로 __qualname__클래스 를 사용하고 싶습니다 . 결국 (3.4? PEP 395 ) __qualname__는 모듈의 이름이 변경되는 경우 (즉, 이름이으로 변경되는 경우)를 처리하기 위해 모듈에도 존재합니다 __main__.


답변

찾고있는 inspect기능과 같은 기능을 가진 모듈을 사용하는 getmodule것이 좋습니다.

>>>import inspect
>>>import xml.etree.ElementTree
>>>et = xml.etree.ElementTree.ElementTree()
>>>inspect.getmodule(et)
<module 'xml.etree.ElementTree' from
        'D:\tools\python2.5.2\lib\xml\etree\ElementTree.pyc'>


답변

다음은 Greg Bacon의 훌륭한 답변을 기반으로하지만 몇 가지 추가 검사가 있습니다.

__module__할 수 있습니다 None(워드 프로세서)에 따라, 또한 같은 유형 str이 될 수있다 __builtin__(당신이 로그에 나타나는 원하는 또는 무엇이든하지 않을 수 있습니다). 다음은 두 가지 가능성을 모두 확인합니다.

def fullname(o):
    module = o.__class__.__module__
    if module is None or module == str.__class__.__module__:
        return o.__class__.__name__
    return module + '.' + o.__class__.__name__

(를 확인하는 더 좋은 방법이있을 수 있습니다 __builtin__. 위의 내용은 str을 항상 사용할 수 있으며 모듈은 항상 가능하다는 사실에 의존합니다 __builtin__)


답변

python3.7의 경우 다음을 사용합니다.

".".join([obj.__module__, obj.__name__])

점점 :

package.subpackage.ClassName


답변

__module__ 트릭을 할 것입니다.

시험:

>>> import re
>>> print re.compile.__module__
re

이 사이트__package__Python 3.0에서 작동 할 수 있다고 제안합니다 . 그러나 주어진 예제는 Python 2.5.2 콘솔에서 작동하지 않습니다.


답변

이것은 해킹이지만 2.6을 지원하고 있으며 간단한 것이 필요합니다.

>>> from logging.handlers import MemoryHandler as MH
>>> str(MH).split("'")[1]

'logging.handlers.MemoryHandler'