├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── codeql.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── examples ├── list_controllers.py └── reset_controllers.py ├── pyproject.toml └── src └── scapy_usbbluetooth ├── __init__.py └── usbbluetooth_socket.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Python 2 | __pycache__/ 3 | venv/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/README.md -------------------------------------------------------------------------------- /examples/list_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/examples/list_controllers.py -------------------------------------------------------------------------------- /examples/reset_controllers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/examples/reset_controllers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/scapy_usbbluetooth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/src/scapy_usbbluetooth/__init__.py -------------------------------------------------------------------------------- /src/scapy_usbbluetooth/usbbluetooth_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usbbluetooth/scapy-usbbluetooth/HEAD/src/scapy_usbbluetooth/usbbluetooth_socket.py --------------------------------------------------------------------------------