摘要:
class UserType(models.Model): caption = models.CharField(max_length=32) class User(models.Model): name = models.CharField(max_length=32) age = models. 阅读全文
摘要:
#!/usr/bin/env python import psutil, time from threading import Timer def getProcessInfo(p): global mem_percent,Path,Cmd try: cpu = int(p.cpu_percent( 阅读全文