Python module for parsing JMeter test results
Project description
python-jtl provides a module called jtl which can be useful for parsing JMeter results (so called JTL files). JTL files can be either of XML or CSV (with or without the fieldnames) file format. jtl module supports both XML and CSV (with and without the fieldnames) file formats.
The typical usage in general looks like this:
from jtl import create_parser parser = create_parser('test_results.xml') for sample in parser.itersamples(): ...
Features
Parses JMeter results (JTL) into the iterator of the results samples;
Supports both XML and CSV (with and without fieldnames) file formats;
Supports custom delimiter character (CSV only);
Stores results samples in named tuples;
Uses iterative XML parsing for better performance;
Automatically detects the file format (XML or CSV).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file python-jtl-0.1.1.tar.gz
.
File metadata
- Download URL: python-jtl-0.1.1.tar.gz
- Upload date:
- Size: 71.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f84c2277e4f90a488a0bc874a9d25f8fa55cd36fd8014846fd57d8c2bb526a0d |
|
MD5 | a319fe03f1f18913df42c21e033fced3 |
|
BLAKE2b-256 | 75b2b6043728d1e7855c6ef43cafc0df34984b7be146fcd247f67d943447c757 |