Python 如何获取模块中所以 class 的列表
查询模块
foo
的 class 列表1 | #!/usr/bin/env python |
查询当前模块的 class 列表1
2
3
4
5
6
7
8
9
10#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author: wxnacy(wxnacy@gmail.com)
import inspect
import sys
for name, obj in inspect.getmembers(sys.modules[__name__]):
if inspect.isclass(obj):
print obj
最近热读
扫码关注公众号,或搜索公众号“温欣爸比”
及时获取我的最新文章