Форум сайта python.su
class pc(models.Model): name = models.CharField(max_length=30, unique=True) user = models.CharField(max_length=30) location = models.CharField(max_length=30) monitor = models.CharField(max_length=255) ups = models.CharField(max_length=255) cpu = models.CharField(max_length=255) om = models.CharField(max_length=255) hdd = models.CharField(max_length=255) date_create = models.DateField()
<VirtualHost *:80>
WSGIScriptAlias / c:/server/www/pylons.wsgi
</VirtualHost>
from socket import *
s = socket(AF_INET6, SOCK_STREAM)
s.connect(('fe80::20c:29ff:fe1e:eb7e%4', 7777))
#!/usr/bin/env python
#coding:utf-8
import MySQLdb
db = MySQLdb.connect(host="localhost", db="dbname", user="stat", passwd="11112222")
c = db.cursor()
c.execute=('SELECT count(*) FROM ipacct LIMIT 1;')
db.commit()
result = c.fetchone()
c.close()
db.close()