发布时间:2013-12-25 17:19:18
apache 配置================================================================<VirtualHost *:80> ServerName 203.com ServerAlias www.203.com ServerAdmin squire@ducklington.org DocumentRoot /var/www/html/blog_zzx/ WSGIScriptAlias .........【阅读全文】
发布时间:2013-12-19 15:39:54
#-*-coding:utf-8-*-#Filename:back_file.py#yunbao:zhangzhengxing#2013.12.18#导入模块import osimport time#源路径(window的路径可以用/ 或者 \\ )source = 'E:\\shopnc'#目标路径zip_dir='D:\\test\\'#获取时间作为文件夹名称today=zip_dir+time.strftime('%Y%m%d')#获取新的时间now.........【阅读全文】
发布时间:2013-12-05 17:56:18
django install安装django之前一定要先安装python 版本相差不要太高 python setup.sh install #django安装 >>python import django #把django导入进去django-admin.py startproject web #创建一个叫web的项目#在项目中有产生这三个文件__init__.py .........【阅读全文】
发布时间:2013-12-04 15:30:41
#!/usr/bin/pythonimport reimport urllibdef getHtml(url): page=urllib.urlopen(url) html=page.read() return htmldef getImg(html): reg=r'src="(.*?\.jpg)"width' imgre=re.compile(reg)  .........【阅读全文】