摘要:
from django.shortcuts import render,HttpResponse,redirect import os,sys from django.views import View from cmdb import models # Create your views here 阅读全文
摘要:
import os import paramiko from paramiko.ssh_exception import NoValidConnectionsError, AuthenticationException, SSHException class SshRemoteHost(object 阅读全文
摘要:
生成随机验证码: import random checkcode="" for i in range(4): current=random.randrange(0,4) if current == i: tmp=chr(random.randint(65,90))#把数字变成字母 else: tmp 阅读全文