码迷,mamicode.com
首页 > 编程语言 > 详细

Python使用inspect查看代码参数

时间:2015-03-21 15:26:50      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:

使用import inspect查看python 类的参数和模块、函数代码

 文件就是最小的模块,文件夹是比较大的模块。

文件里面可以包含类,函数。

函数可以执行一个操作,多个函数组合在一起可以写为一个模块,根据不同事物写成一个类,这个类包含几个行为写成几个类内的函数,也可以将这些作为一个文件。

主要步骤是将文件路径设置到系统,再将文件作为模块引入,再开始查看文件里面的内容。

 

首先,写了一个函数

def h():
    print "hello"

def hm(m,k):
    print m, k


class w(object):
    def __init__(a, self):
        name =a
    def g(self):
        print name,"hello world!"

保存在路径C:\下,起个名字叫hello.py

打开python shell 窗口,将这个路径加入到系统路径里。命令如下

import sys

sys.path.append(‘C:/‘)

将文件当做一个模块引入。

import hello

import inspect

 

查看整个模块hello的源代码: inspect.getsource(hello)  整个样子不好看,需要print inspect.getsource(hello)

查看模块hello里面wo这个类的全部代码  print inspect.getsource(hello.w)

查看模块内某个函数的代码: print inspect.getsource(hello.h)

查看模块内某个类中函数的代码 print inspect.getsource(hello.w.g)

 

查看模块中某个函数的参数的代码:inspect.getargspec(hello.hm)

查看模块中类的参数代码 inspect.getargspec(hello.w.__init__)   #这里还是查看类的初始定义函数。

查看类中函数参数代码 inspect.getargspec(hello.w.g)

查看模块路径 inspect.getabsfile(hello)  

查看文件夹模块中某个类的路径 inspect.getabsfile(。。。)#结果是显示类的初始定义函数__init__.py的位置。

 

>>> inspect.getabsfile(django.db) ‘c:\\python27\\lib\\site-packages\\django-1.7.1-py2.7.egg\\django\\db\\__init__.py‘

 

 

这些应该够学习用了。以后有什么再补充。

Python使用inspect查看代码参数

标签:

原文地址:http://www.cnblogs.com/gjwork/p/4253925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!