thilp / transformer

Fork to enable fast iteration on the GitHub setup without Zalando’s compliance checks.

Home Page:https://transformer.readthedocs.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Transformer logo


travis-ci status badge pypi version badge code quality badge test coverage badge Code style: Black

Transformer

A command-line tool and Python library to convert web browser sessions (HAR files) into Locust load test scenarios ("locustfiles").

Use it to replay HAR files (storing recordings of interactions with your website) in load tests with Locust.

Install from PyPI:

pip install har-transformer

Install Locust to run your locustfiles:

pip install locust

Example HAR files are included in the examples/ directory, try them out.

transformer my_har_files_directory/ >locustfile.py
import transformer

with open("locustfile.py", "w") as f:
    transformer.dump(f, ["my_har_files_directory/"])

Take a look at our documentation for more details, including how to generate HAR files, customize your scenarios, use or write plugins, etc.

See also the list of contributors to this project.

This project is licensed under the MIT license — see the LICENSE.md file for details.

About

Fork to enable fast iteration on the GitHub setup without Zalando’s compliance checks.

https://transformer.readthedocs.io/

License:MIT License


Languages

Language:Python 99.1%Language:Makefile 0.9%