文章分类 -  python

摘要:import MySQLdbclass MySql(): conn = '' cursor = '' def __init__(self, host, user, passwd, db, charset): self.host = host self.user = user self.passwd = passwd self.db = db self.charset = charset self.connect() def connect(self): self.conn ... 阅读全文
posted @ 2012-09-17 17:09 tywei 阅读(195) 评论(0) 推荐(0)
摘要:ptyhon2.7.3wget http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2wget http://download.sourceforge.net/sourceforge/mysql-python/MySQL-python-1.2.3.tar.gzwget http://pypi.python.org/packages/2.7/s/setuptools/setuptools-0.6c11-py2.7.egg#md5=fe1f997bc722265116870bc7919059ea安装python2.7.3tar -jx 阅读全文
posted @ 2012-09-11 19:57 tywei 阅读(93) 评论(0) 推荐(0)