上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页
摘要: C:\>netstat -ano|findstr 8000 TCP 0.0.0.0:8000 0.0.0.0:0 LISTENING 8124 //进程号 UDP 0.0.0.0:8000 *:* 8124 C:\>tasklist |findstr 8124 //查进程号为8124的进程 KGSe 阅读全文
posted @ 2018-03-28 10:32 框框A 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 一、使用字符串查找的方法find扒取教师姓名 1 import urllib2 2 response=urllib2.urlopen("http://www.whit.edu.cn/list/650") 3 html=response.read() 4 # print html[:1000] 5 r 阅读全文
posted @ 2018-02-05 22:48 框框A 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 目标:扒取京东的笔记本电脑的信息(商品名和商品价格) 通过浏览器的开发者工具查看源代码: 一、使用urllib2获得页面源代码 运行结果关键截图: 分析: urllib2得到的源代码和通过浏览器查看的源代码不尽相同,尤其是urllib2无法得到商品的价格 二、使用selenium的webdriver 阅读全文
posted @ 2018-02-05 21:44 框框A 阅读(297) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:UTF-8 -*- import os,time from PIL import Image,ImageDraw,ImageFont fontFile="ygyxsziti2.0.ttf" #字体文件 width,height=612,816 # os.chdir('src 阅读全文
posted @ 2017-12-01 10:00 框框A 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 从菜鸟教程中扒取的标题截图: 阅读全文
posted @ 2017-11-29 09:51 框框A 阅读(1475) 评论(0) 推荐(0) 编辑
摘要: win7任务栏所在文件夹: C:\Users\zyz\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar 常用的DOS命令 启动/停止服务 net start <服务名> 如:net start m 阅读全文
posted @ 2017-08-13 07:16 框框A 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 推荐资源URL http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib python库for windows http://pandas.pydata.org/pandas-docs/stable/ pandas参考手册 Anaconda Anac 阅读全文
posted @ 2017-08-11 11:00 框框A 阅读(172) 评论(0) 推荐(0) 编辑
摘要: ZoomIt是一款非常强悍的教学辅助软件,具有屏幕放大、屏幕标注、计时功能,软件占用空间只有0.2M,且无需安装。下面我介绍一下此软件的使用方法。 ZoomIt是一款非常强悍的教学辅助软件,具有屏幕放大、屏幕标注、计时功能,软件占用空间只有0.2M,且无需安装。下面我介绍一下此软件的使用方法。 Zo 阅读全文
posted @ 2017-06-23 11:15 框框A 阅读(6896) 评论(0) 推荐(0) 编辑
摘要: 1、将解压后的“KindEditor”文件夹复制到项目的根目录(此KindEditor文件夹已经经过优化) 下载地址为: http://pan.baidu.com/s/1eS1PRii 2、在<head>标签中引入KindEditor外部样式表文件和必需的外部js文件。如下所示: <!--引入样式表 阅读全文
posted @ 2017-05-25 16:12 框框A 阅读(1257) 评论(6) 推荐(0) 编辑
摘要: 一、新建一个html页面,如注册页面"Register.htm" 二、新建一js文件,如:reg.js 三、处理ajax请求 方法一:手动拼接json字符串 新建一般处理程序,如:Register.ashx 方法二:使用Json.NET工具来将C#对象转换json输出 1、新建信息类“Msg.cs” 阅读全文
posted @ 2017-05-25 15:04 框框A 阅读(11438) 评论(3) 推荐(4) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页