Metadata-Version: 2.1
Name: fx-crash-sig
Version: 0.1.4
Summary:  Get crash signature from Firefox crash trace 
Home-page: https://github.com/Ben-Wu/fx-crash-sig
Maintainer: Ben Wu
Maintainer-email: bwub124@gmail.com
License: UNKNOWN
Description: # fx-crash-sig
        
        Get crash signature from Firefox crash trace
        
        Take crash trace and:
        
        1. Use [tecken](https://github.com/mozilla-services/tecken) symbolication to symbolicate crash trace
        
        2. use [socorro-siggen](https://github.com/willkg/socorro-siggen) to get crash signature
        
        
        ## Install
        
        ```sh
        pip install fx-crash-sig
        ```
        
        ## Usage
        
        [Example script](/fx_crash_sig/example.py):
        
        ```py
        from fx_crash_sig import sample_traces
        from fx_crash_sig.crash_processor import CrashProcessor
        
        crash_processor = CrashProcessor()
        
        signature = crash_processor.get_signature(sample_traces.trace1)
            
        ```
        
        Command line (using [sample.json](/sample.json)):
        
        ```sh
        cat sample.json | fx-crash-sig
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Programming Language :: Python :: 2 :: Only
Description-Content-Type: text/markdown
