上一页 1 ··· 5 6 7 8 9 10 下一页
摘要: 1 <h1> </h> 标题 2 <p> </p> 段落 3 <br /> 换行 4 <!-- ...--> 注释 5 <p style="..."> </p> 样式属性 6 <head><link rel = "stylesheet" type="text/css" href="mystyle.c 阅读全文
posted @ 2016-12-06 14:36 fuzzier 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 持续更新中,直到找到最好的方法 1 在stackoverflows摘抄 If the import module in the same dir, use e.g: from . import core If the import module in the top dir, use e.g: fr 阅读全文
posted @ 2016-11-30 10:07 fuzzier 阅读(2220) 评论(0) 推荐(0) 编辑
摘要: 1 下载virtualenv pip install virtualenv 2 穿件一个python项目 virtualenv venv 指定解释器:virtualenv -p path:/python3.exe venv 3 启动virtualenv中的venv项目 cd venv\Scripts 阅读全文
posted @ 2016-11-24 12:52 fuzzier 阅读(1862) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-11-18 14:20 fuzzier 阅读(376) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-11-14 23:18 fuzzier 阅读(328) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-11-06 18:23 fuzzier 阅读(349) 评论(1) 推荐(0) 编辑
摘要: 我们这里使用的是baidumap的高精度IP定位API的接口,具体说明可以参考baidu提供的文档 使用前需要申请一个AK密钥类似于Kgcx......................xxl8w的样式 http://api.map.baidu.com/highacciploc/v1?qcip=220 阅读全文
posted @ 2016-10-27 13:30 fuzzier 阅读(3034) 评论(2) 推荐(0) 编辑
摘要: 由于好奇一直想试试模拟登陆,然后就把目标定在某所大学的登录网站上 大至样式就是这样的 通过界面我们大致可以了解到请求可能会后username,password,验证码,记住用户 接着使用burp进行抓包得: 可以通过post请求知道dlm就是uesrname,hexMd5是加密后的password( 阅读全文
posted @ 2016-10-26 15:24 fuzzier 阅读(5046) 评论(3) 推荐(1) 编辑
摘要: server coding: client coding 原理图: 运行结果: 阅读全文
posted @ 2016-10-23 16:17 fuzzier 阅读(547) 评论(0) 推荐(0) 编辑
摘要: Queue.qsize() 返回队列的大小 Queue.empty() 如果队列为空,返回True,反之False Queue.full() 如果队列满了,返回True,反之FalseQueue.full 与 maxsize 大小对应 Queue.get([block[, timeout]])获取队 阅读全文
posted @ 2016-10-19 17:16 fuzzier 阅读(15352) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 下一页