Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.21 KB

README.md

File metadata and controls

37 lines (27 loc) · 1.21 KB

License: Apache 2.0 Code style: black

usbmon tools

This repository contains a Python module and some command line tools to work with Linux usbmon, as well as Windows usbpcap captures.

Tools

In addition to the usbmon module, containing the data structures to access USB captures, this package contains a few scripts in the tools/ directory, which can be used to manipulate usbmon captures.

Development

You can see <CONTRIBUTING.md> for the details on contributing to this project.

To set up a development environment, you can use the following commands:

$ git clone https://github.com/Flameeyes/usbmon-tools
$ cd usbmon-tools
$ python3 -m venv venv
$ . venv/bin/activate
$ pip install -e .[dev]  # editable installation
$ pre-commit install