Skip to main content

Python module for easy integration with phantomas

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

phantomas-0.2.3.tar.gz (5.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page