1. Python抓取网页中文乱码

    最近在学习Python,练习用Python抓取网页内容并解析,在解析gb2312字符集网页时出现中文乱码: UnicodeEncodeError: 'gbk' codec can't encode character u'\xbb' in position 0: illegal multibyte sequence

    2017/03/01 python

  2. Windows下Python爬虫框架pyspider的安装与使用

    1、安装 pip install pyspider Windows下安装需要注意的问题:Frequently Asked Questions - pyspider

    2017/03/01 python

  3. Python网页抓取正则表达式应用练习爬取基金信息

    仅作练习: 1、Python网页抓取 2、Python正则表达式应用

    2017/03/01 python

  4. Python打印函数用时的两种方法--类的构造析构函数与函数装饰器

    在安卓审计项目里,我们使用python脚本来对APK进行扫描检测,为了统计每一步操作的耗时情况编写了一个简单的类,并通过下面的方式使用: ``` #coding:utf-8

    2017/03/01 python

  5. Python库selenium的安装与使用

    下载:selenium 3.0.2 : Python Package Index

    2017/03/01 python

  6. Python库beautifulsoup的安装与使用

    在Python Extension Packages for Windows 上找到相应的库,解压后把bs4目录复制到Python安装目录下的lib目录下。 参考:Python爬虫利器二之Beautiful Soup的用法觅 ``` #coding:utf-8

    2017/03/01 python

  7. Python一个命令开启http下载服务器

    下载并安装Python

    2017/03/01 python

  8. PySpider HTTP 599 SSL certificate problem错误的解决方法

    错误信息: [E 160329 11:32:22 base_handler:194] HTTP 599: SSL certificate problem: self signed certificate in certificate chain Traceback (most recent call last): File "D:\Python27\lib\site-packages\pyspider\libs\base_handler.py", line 187, in run_task result = self._run_task(task, response) File "D:\Python27\lib\site-packages\pyspider\libs\base_handler.py", line 166, in _run_task response.raise_for_status() File "D:\Python27\lib\site-packages\pyspider\libs\response.py", line 183, in raise_for_status raise http_error HTTPError: HTTP 599: SSL certificate problem: self signed certificate in certificate chain

    2017/03/01 python

  9. 如何快速定位Android APP中的关键函数?

    需求来源 在逆向分析中,肯定是越快地定位到目标函数越好,那么有没有这样的一种工具可以快速地辅助分析人员定位到目标函数呢?

    2017/03/01 android

  10. 基于Xposed和Substrate的通用性SO注入

    需求来源 如果需要注入SO且HOOK一些功能做研究分析,必然需要注入、HOOK,而对于不同的分析目标除了HOOK的函数不同之外,注入部分是相同的,可以把相同部分的代码提出来,做成一个功能,那么以后注入部分就不用再次编写了,分析的时候只需要编写HOOK代码即可。

    2017/03/01 android