紧张小蚂蚁

文章
4
资源
1
加入时间
2年10月17天

Unix环境高级编程——第一章-UNIX基础知识

1.2 UNIX体系结构1、体系结构: (1)内核 (2)系统调用 (3)Shell、公共函数库 (4)应用程序1.4 文件和目录1、例:ls(l)命令的简要实现#include "apue.h"#include <dirent.h>int main(int argc,char * argv[]){ ...

爬虫处理gzip压缩格式网站的方法

#coding:utf-8import urllib2import reimport zliburl_address = 'http://www.sina.com.cn'f = urllib2.urlopen(url_address)buf = f.read()buf = zlib.decompress(buf, 16+zlib.MAX_WBITS);#buf = buf.replace("\n","")print buf