├── .github ├── CODEOWNERS └── workflows │ ├── checks.yml │ └── tests.yml ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── codecov.yml ├── hid_parser ├── __init__.py └── data.py ├── noxfile.py ├── pyproject.toml └── tests ├── linux-hidpp-print.txt ├── simple-mouse-print.txt ├── test_data.py ├── test_items.py ├── test_parse.py ├── test_print.py ├── test_repr.py ├── test_usage.py └── test_util.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @FFY00 2 | -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /hid_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/hid_parser/__init__.py -------------------------------------------------------------------------------- /hid_parser/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/hid_parser/data.py -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/linux-hidpp-print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/linux-hidpp-print.txt -------------------------------------------------------------------------------- /tests/simple-mouse-print.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/simple-mouse-print.txt -------------------------------------------------------------------------------- /tests/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_data.py -------------------------------------------------------------------------------- /tests/test_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_items.py -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_parse.py -------------------------------------------------------------------------------- /tests/test_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_print.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_usage.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usb-tools/python-hid-parser/HEAD/tests/test_util.py --------------------------------------------------------------------------------