摘要: 一、Web框架: Tornado,访问:http://www.tornadoweb.org/en/stable/ Flask,访问:http://flask.pocoo.org/ Web.py,访问:http://webpy.org/ django:https://www.djangoproject 阅读全文
posted @ 2017-11-16 10:55 枫海坡 阅读(16296) 评论(0) 推荐(0) 编辑
摘要: PEP8 Python 编码规范一 代码编排1 缩进。4个空格的缩进(编辑器都可以完成此功能),不使用Tap,更不能混合使用Tap和空格。2 每行最大长度79,换行可以使用反斜杠,最好使用圆括号。换行点要在操作符的后边敲回车。 if __name__ == '__main__':#第一种:三个单引号 阅读全文
posted @ 2017-11-23 10:23 枫海坡 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1、字符串合并和连接 加号合并 join方法合并 2、相乘和切片 line='*'*30 print(line) >>****************************** 切片: consequence[start_index:end_index:step] 表示第一个元素,正索引位置默认为 阅读全文
posted @ 2017-11-22 21:03 枫海坡 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 一、内网资料 https://github.com/l3m0n/pentest_study 二、安全脑图 https://github.com/phith0n/Mind-Map 三、sql注入学习 https://github.com/Audi-1/sqli-labs 四、各类扫描器 子域名扫描 h 阅读全文
posted @ 2017-11-20 09:37 枫海坡 阅读(431) 评论(0) 推荐(0) 编辑