├── .github └── workflows │ ├── tox.yml │ └── wheels.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── LICENSE-bsd.txt ├── LICENSE-gpl3.txt ├── LICENSE-orig.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── chid.pxd ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── api.rst ├── conf.py ├── examples.rst ├── index.rst ├── make.bat └── requirements.txt ├── hid.pyx ├── hid.pyxdep ├── hidraw.pyx ├── pyproject.toml ├── requirements.txt ├── setup.py ├── tests.py ├── tox.ini └── try.py /.github/workflows/tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/.github/workflows/tox.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/LICENSE-bsd.txt -------------------------------------------------------------------------------- /LICENSE-gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/LICENSE-gpl3.txt -------------------------------------------------------------------------------- /LICENSE-orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/LICENSE-orig.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/README.rst -------------------------------------------------------------------------------- /chid.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/chid.pxd -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /hid.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/hid.pyx -------------------------------------------------------------------------------- /hid.pyxdep: -------------------------------------------------------------------------------- 1 | chid.pxd 2 | -------------------------------------------------------------------------------- /hidraw.pyx: -------------------------------------------------------------------------------- 1 | hid.pyx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Cython>=0.24 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/tox.ini -------------------------------------------------------------------------------- /try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trezor/cython-hidapi/HEAD/try.py --------------------------------------------------------------------------------