Metadata-Version: 1.1
Name: python-jtl
Version: 0.1.1
Summary: Python module for parsing JMeter test results
Home-page: https://github.com/vklepikovskiy/python-jtl
Author: Victor Klepikovskiy
Author-email: vklepikovskiy@gmail.com
License: GPLv3
Description: python-jtl
        ==========
        
        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).
        
Keywords: jmeter jtl testing performance
Platform: UNKNOWN
Classifier: Topic :: Internet :: Log Analysis
Classifier: Topic :: Software Development :: Testing
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
