Metadata-Version: 2.1
Name: snaketrace
Version: 0.2.0
Summary: An strace-like tool for Python audit events
Home-page: https://github.com/dcoles/snaketrace
License: UNKNOWN
Description: # SnakeTrace &#x1F40D;
        
        An `strace`-like tool for [Python audit events](https://docs.python.org/3/library/audit_events.html#audit-events).
        
        ## Requirements
        
        - Python 3.8 or later
        
        ## Installation
        
        ```bash
        python3 setup.py install [--user]
        ```
        
        ## Usage
        
        ```
        usage: snaketrace [-h] [--tsv] [--color {never,always,auto}] [-t | -tt | --timefmt TIMEFMT] [-e FILTER] [-o OUTPUT] filename [args [args ...]]
        
        Trace Python audit events
        
        positional arguments:
          filename              Python script
          args                  Python script arguments
        
        optional arguments:
          -h, --help            show this help message and exit
          --tsv                 output as tab separated values
          --color {never,always,auto}
                                colorize output
          -t                    print absolute timestamp
          -tt                   print absolute timestamp with usec
          --timefmt TIMEFMT     print absolute timestamp with custom format
          -e FILTER, --filter FILTER
                                filter audit events matching glob pattern (may be specified multiple times)
          -o OUTPUT, --output OUTPUT
                                write output to file with given name
        ``` 
        
        # License
        
        Licensed under the [MIT License](/LICENSE).
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
