├── .gitignore ├── LICENSE ├── README.md ├── foohid.c ├── setup.py ├── test_joypad.py ├── test_keyboard.py ├── test_list.py └── test_mouse.py /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/README.md -------------------------------------------------------------------------------- /foohid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/foohid.c -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/setup.py -------------------------------------------------------------------------------- /test_joypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/test_joypad.py -------------------------------------------------------------------------------- /test_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/test_keyboard.py -------------------------------------------------------------------------------- /test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/test_list.py -------------------------------------------------------------------------------- /test_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/unbit/foohid-py/HEAD/test_mouse.py --------------------------------------------------------------------------------