django小计

from django.http import HttpResponse
import time,os,re
def index(request):
    return HttpResponse("hello KKK")

#def test(request):return HttpResponse("test KKK")

def  test(request):
    d=time.strftime('%Y-%m-%d %H:%M:%S')
    a=os.popen('ipconfig').read()
    aa=re.split("\n",a)[42]
		#bb=re.split(":",aa)[1]
    bb=re.split(":",re.split("\n",a)[42])[1]
    b1=re.split(":",re.split("\n",a)[44])[1]
    #b2=re.split(":",re.split("\n",a)[46])[1]
    b2=re.split("\n",a)[46]
    cmd=os.system('systeminfo > C:/sys.txt')
    time.sleep(1)
    f=open('c:/sys.txt').readlines()
    #f.close()
    f1=f[1];f2=f[2];f3=f[3];f4=f[4];f5=f[5];f6=f[6];f7=f[7];f8=f[8];f9=f[9]
    f10=f[10];f11=f[11];f12=f[12];f13=f[13];f14=f[14];f15=f[15];f16=f[16]
    f17=f[17];f18=f[18];f19=f[19];f20=f[20];f21=f[21];f24=f[24];f25=f[25]
    f26=f[26];f27=f[27];f28=f[28];f29=f[29];f30=f[30];f31=f[31];f32=f[32]
    f276=f[276]
    f277=f[277]
	
    p='''
	<meta http-equiv="refresh" content="30">
	<body bgcolor=white >
	<center>
	<br>
	<h2>&nbsp;&nbsp;北京时间:%s<br></h2>
				 <br>
		IP地址信息:%s&nbsp;%s<br>
			%s<br>
		<h2>系统信息: </h2>
		%s<br> %s<br> %s<br> %s<br> %s<br> %s<br>
		%s<br> %s<br> %s<br> %s<br> %s<br> %s<br>
		%s<br> %s<br> %s<br> %s<br> %s<br> %s<br>
		%s<br> %s<br> %s<br> %s<br> %s<br> %s<br>
	        %s<br> %s<br> %s<br> %s<br> %s<br> %s<br>
		%s<br> %s<br>
	    <br>
	</body>
		'''%(d,bb,b1,b2,f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,
                     f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,
                     f21,f24,f25,f26,f27,f28,f29,f30,f31,f32,f276,f277)
    #a=os.popen('ipconfig').read()
    return HttpResponse(p)


你可能感兴趣的:(django)