网站导航

http抓包html

httpwatch,HttpWatch? is an HTTP sniffer for IE, Firefox, iPhone & iPad that provides new insights into how your website loads and performs.http://www.httpwatch.com/有免费和收费版本java

HttpFox? Firefox 的一个HTTP分析器扩展。https://addons.mozilla.org/zh-cn/firefox/addon/httpfox/python

视频下载: Chrome的插件 Video Downloader professionalandroid

git 相关教程: Git五分钟教程  Git - Tutorial git

python外部模块

命令行操做

pexpect : doc soure pypi github

Plumbum: shell combinators library。 doc soureweb

sh (previously pbs) is a full-fledged subprocess interface for Python that allows you to call any program as if it were a function。 doc souredocker

shutit: doc soure pypi shell

fexpect: doc soure pypi 缓存

pytest-docker-pexpect: doc soure pypi

python-streamexpect: doc soure pypi

android-sdk-updater: soure pypi

bladerunner: doc soure pypi

bash_kernel: A simple IPython kernel for bash soure pypi 

blessed: A thin, practical wrapper around terminal styling, screen positioning, and keyboard input. doc soure pypi 

condoor: his is a python module providing access to Cisco devices over Telnet and SSH. soure pypi 

zio: unified io lib for pwning development written in python.soure pypi 

Hitch: Bootstrapper for hitchtest - the loosely coupled integration testing framework. doc soure pypi

scp: scp module for paramiko  soure pypi

Fabric: Fabric is a simple, Pythonic tool for remote execution and deployment.  doc soure pypi

参考资料:https://wiki.python.org/moin/CommandlineTools

 

队列缓存

Pika: Python AMQP Client Library doc soure pypi

kombu:Messaging library for Python  AMQ protocol。 doc soure pypi

stompest STOMP library for Python including a synchronous client.stompest is a full-featured implementation of the STOMP protocol (versions 1.0, 1.1, and 1.2) for Python 2.6 (and higher).  doc soure pypi

stomp.py Python STOMP client, supporting versions 1.0, 1.1 and 1.2 of the protocol  soure pypi

实例

#!/usr/bin/python
# -*- coding: utf-8 -*-
import time
import sys
import stomp

class MyListener(object):
    def on_error(self, headers, message):
        print('received an error %s' % message)
    def on_message(self, headers, message):
        print('received a message %s' % message)

#官方示例的链接代码也落后了,如今分协议版本
conn = stomp.Connection10([('172.30.249.18',61613)])
conn.set_listener('', MyListener())
conn.start()
conn.connect()

conn.subscribe(destination='/queue/test', id=1, ack='auto')
#注意,官方示例这样发送消息是有问题的
#conn.send(body='hello,garfield! this is '.join(sys.argv[1:]), destination='/queue/test')
conn.send(body='hello,garfield!', destination='/queue/test')

time.sleep(2)
conn.disconnect()

 

监控

psutil:  a cross-platform library for retrieving information onrunning processes and system utilization (CPU, memory, disks, network)in Python.  doc soure pypi

使用psutil的库:

        https://github.com/nicolargo/glances
        https://github.com/google/grr
        https://github.com/Jahaja/psdash

glances: A cross-platform curses-based monitoring tool。 doc soure pypi

依赖库

    psutil >= 2.0.0(必选)
    bottle (for Web server mode)
    py3sensors (for hardware monitoring support) [Linux-only]
    hddtemp (for HDD temperature monitoring support) [Linux-only]
    batinfo (for battery monitoring support) [Linux-only]
    pymdstat (for RAID support) [Linux-only]
    pysnmp (for SNMP support)
    zeroconf (for the autodiscover mode)
    netifaces (for the IP plugin)
    influxdb (for the InfluxDB export module)
    statsd (for the StatsD export module)
    pystache (for the action script feature)
    docker-py (for the Docker monitoring support) [Linux-only]
    matplotlib (for graphical/chart support)
    pika (for the RabbitMQ/ActiveMQ export module)
    bernhard (for the Riemann export module)
    py-cpuinfo (for the Quicklook CPU info module)
    scandir (for the Folders plugin) [Only for Python < 3.5]

格式转换

xmltodict Python module that makes working with XML feel like you are working with JSON。 soure

文档汇总

python外部库

python命令外部模块介绍sh:Python的subprocess接口 - shell命令直接使用

自动化测试框架pytest中文文档

python代码风格指南:pep8 中文翻译

 

vmstat 等Linux性能命令中文参考

 

性能测试艺术

 

 

java静态分析:

Infer http://fbinfer.com/docs/getting-started.html

 

bitbucket wiki语法:https://bitbucket.org/tutorials/markdowndemo/src

相关文章
相关标签/搜索