phantomas

Python module for easy integration with phantomas


Keywords
high, performance, web, sites, metrics, monitoring, phantomas, phantomjs, development, webperf
License
MIT
Install
pip install phantomas==0.2.3

Documentation

Python module for easy integration with phantomas - PhantomJS-based modular web performance metrics collector

Latest Version Latest Version Supported Python versions https://travis-ci.org/macbre/phantomas-python.svg?branch=master

Install

In order to use this module you need phantomas "binary" installed in your system.

sudo make install

This will run npm install -g phantomas.

Module's API

import json
from phantomas import Phantomas

results = Phantomas(
    url="http://example.com",
    exec_path="/my/path/to/phantomas",     # optional
    modules=['headers', 'requestsStats']
).run()

print('Generator: ' + results.get_generator())   # phantomas v1.9.0
print('\nMetrics: ' + json.dumps(results.get_metrics(), indent=True, sort_keys=True))
print('\nDomains: ' + json.dumps(results.get_offenders('domains'), indent=True))

# assertions
assert results.get_metric('notFound') == 0
assert results.get_metric('requests') < 5

More docs coming soon! Meanwhile please refer to example/example.py script.